body {
    /* font-family: Arial, sans-serif; */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
}

.navbar-brand img {
    position: relative;
    left: 42px;
    /* width: 127px; */
    height: 40px;
    margin-right: 45px;
    /* border-radius: 10px; */
    border-radius: 0px;

}

/* .navbar-nav .nav-link {
    color: white !important;
}

.navbar-nav .dropdown-menu {
    background-color: #293960;
    border-radius: 0;
}

.navbar-nav .dropdown-item {
    color: white;
}

.navbar-nav .dropdown-item:hover {
    background-color: #333;
} */

/* Sticky navbar */
/* .sticky-top {
    background-color: #293960;
}

#Company_name {
    font-size: 30px;
}

.navbar-nav .nav-link,
.navbar-nav .dropdown-item {
    color: white !important;
}

.dropdown-menu {
    min-width: 200px;
}

.dropdown-menu a {
    color: #333;
    padding: 10px 15px;
}

.dropdown-menu a:hover {
    background-color: #f8f9fa;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-submenu > .dropdown-menu {
    display: none;
    visibility: hidden;
}
.dropdown-submenu:hover > .dropdown-menu {
    display: block;
    visibility: visible;
    opacity: 1;
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: 0;
}

.automotive-dropdown,
.consumer-dropdown,
.home-automation-dropdown {
    display: none;
}

.automotive-dropdown.show,
.consumer-dropdown.show,
.home-automation-dropdown.show {
    display: block;
} */

/* new add  end */




@media (max-width: 426px) {
    #Company_name {
        font-size: 15px;
    }

    .main-content {
        left: 5px;
        /* margin: 0px 40px 0px 0px; */
        align-items: center;
    }
}

/* Styling for the circle animation */
.circle-container {
    position: relative;
    /* left: 35px; */
    /* left: 110px; */
    width: 500px;
    height: 500px;
    margin: 0px 0px 0px 18px;
}

.center-image {
    position: absolute;
    /* top: 29%;
    left: 45%; */
    top: 36%;
    left: 56%;
    width: 120px;
    height: 120px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    /* background-color: white; */
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    font-weight: bold;
    font-size: 16px;
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

.circle-image {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    /* background-color: white; */
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    font-weight: bold;
    font-size: 12px;
    opacity: 0;
    animation: showImage 1s ease forwards;
}

/* Positioning and delays for surrounding circles */
.circle-image:nth-child(1) {
    top: 0%;
    left: 54%;
    transform: translate(-50%, 0);
    animation-delay: 1s;
}

.circle-image:nth-child(2) {
    top: 0%;
    left: 59%;
    transform: translate(-50%, 0);
    animation-delay: 1s;
}

.circle-image:nth-child(3) {
    top: 25%;
    left: 86%;
    transform: translate(-50%, -50%);
    animation-delay: 2s;
}

.circle-image:nth-child(4) {
    top: 60%;
    left: 70%;
    transform: translate(-50%, -50%);
    animation-delay: 3s;
}

.circle-image:nth-child(5) {
    top: 60%;
    left: 31%;
    transform: translate(-50%, -50%);
    animation-delay: 4s;
}

.circle-image:nth-child(6) {
    top: 32%;
    left: 8%;
    transform: translate(-50%, -50%);
    animation-delay: 5s;
}

.circle-image:nth-child(7) {
    top: 4%;
    left: 19%;
    transform: translate(-50%, -50%);
    animation-delay: 6s;
}

/* Animations */
@keyframes showImage {
    0% {
        opacity: 0;
        transform: scale(0);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* Additional styles for the text and button */
/* .main-content {
    position: relative;
    width: 750px;
    left: -70px;
    text-align: center;
    color: #f68026;
    animation: slideIn 1s ease forwards;
    opacity: 0;
    transform: translateX(-30px);
    animation-delay: 0.5s;
   
} */
.main-content {
    text-align: center;
    margin: 0px 40px 235px 0px;
    color: #f68026;
    opacity: 0;
    animation: slideIn 1s ease forwards;
    animation-delay: 0.5s;
}



/* Animation for main content */
@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.main-content h1 {
    font-size: 1.9rem;
    margin-bottom: 20px;
    color: white;
}

.main-content p {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: white;
}

.main-content :nth-child(3) {
    font-size: 1.1rem;
    margin-bottom: 20px;
    /* color: #f68026; */
}

.main-content button {
    background-color: #f68026;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.main-content button:hover {
    background-color: #d56e1a;
    /* Darker shade on hover */
    transform: scale(1.05);
    /* Scale up on hover */
}

.first_page {
    height: auto;
    background: radial-gradient(circle, rgba(3, 37, 76, 1) 0%, rgba(14, 46, 100, 1) 100%);
    padding: 60px 0;
    /* Added padding for top/bottom spacing */
}



/* Responsive styles */


.fade-in {
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.img_animation {
    height: 80px;
    width: 80px;


}



.img_animation_text {
    position: relative;
    top: 65px;
    right: 73px;
    color: white;
    font-size: medium;
}


@media (max-width: 1024) {

    .main-content {
        left: 5px;
        align-items: center;
    }

    .main-content h1 {
        font-size: 1.8rem;
        /* Smaller h1 for mobile */
    }

    .main-content p {
        font-size: 1.2rem;
        /* Smaller paragraph for mobile */
    }

    .circle-container {
        width: 300px;
        /* Adjust circle container size */
        height: 300px;
        /* top: 25px; */
        /* left: -10px; */
        margin-top: 50px;
        /* Center alignment */
    }

    .center-image {
        width: 80px;
        top: 28%;
        left: 32%;
        /* Smaller central image */
        height: 80px;
        font-size: 14px;
        /* Smaller text */
    }

    .circle-image {
        width: 60px;
        /* Smaller surrounding circles */
        height: 60px;
        font-size: 10px;
        /* Smaller text */
    }

    #responsive1 {
        position: relative;
        top: -45px;
        right: 36px;
        color: white;
        font-size: small;
    }

    .img_animation_text {
        font-size: small;
    }

    .center-image b {
        display: none;
    }
}

@media (max-width: 768px) {



    .navbar-brand img {
        height: 34px;
        width: 77px;
        margin-right: 0px;
        left: 0px;
        /* border-radius: 10px; */
        border-radius: 0px;
    }

    .main-content {
        position: relative;
        margin: 0px 0px 0px 0px;
        align-items: center;
    }

    .main-content h1 {
        font-size: 1.8rem;
        /* Smaller h1 for mobile */
    }

    .main-content p {
        font-size: 1.2rem;
        /* Smaller paragraph for mobile */
    }

    .circle-container {
        width: 300px;
        /* Adjust circle container size */
        height: 300px;
        /* top: 25px; */
        /* left: -10px; */
        margin-top: 50px;
        /* Center alignment */
    }

    .center-image {
        width: 80px;
        /* top: 28%;
        left: 32%; */

        top: 38%;
        left: 45%;
        /* Smaller central image */
        height: 80px;
        font-size: 14px;
        /* Smaller text */
    }

    .circle-image {
        width: 60px;
        /* Smaller surrounding circles */
        height: 60px;
        font-size: 10px;
        /* Smaller text */
    }

    #responsive1 {
        position: relative;
        top: -45px;
        right: 36px;
        color: white;
        font-size: small;
    }

    .img_animation_text {
        font-size: small;
    }

    .center-image b {
        display: none;
    }
}

/* .navbar-toggler .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
} */

/* .navbar-toggler .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
} */



/* Updated css 10-06-2025 For rebulding website  */

/* Button /Styling  get started on page*/
.btn-get-started {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #000;
    background-color: #ffea00;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease-in-out, transform 0.2s ease;
    overflow: hidden;
}

.btn-get-started .arrow {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.btn-get-started:hover .arrow {
    transform: translateX(5px);
}

.btn-get-started:focus {
    outline: none;
}

/* Transparent Effect After Click */
.btn-get-started.clicked {
    background-color: rgba(0, 0, 0, 0.1);
    /* color: rgba(0, 0, 0, 0.7); */
    color: white;
    transform: scale(0.98);
}

/* Button Styling for donwload catlog*/
#downloadBtn {
    background-color: #4CAF50;
    margin-right: 8px;
    /* Green background */
    color: white;
    /* White text */
    border: none;
    font-size: 17px;
    border-radius: 8px;
    cursor: pointer;
    /* Pointer on hover */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    /* Space between icon and text */
}

/* Hover Effect */
#downloadBtn:hover {
    background-color: #45a049;
    /* Darker green on hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    /* Stronger shadow */
    transform: translateY(-3px);
    /* Lift on hover */
}

/* Active (Click) Effect */
#downloadBtn:active {
    background-color: #3e8e41;
    transform: translateY(2px);
    /* Slight downward push */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Icon Styling */
#downloadBtn i {
    font-size: 25px;
    /* Icon size */
}



/* navbar username  */
.navbar {
    /* background-color: #343a40; */
    /* background-color: #293960; */


    background: radial-gradient(circle at top left, rgba(92, 52, 10, 0.9), rgba(92, 52, 10, 0.9));
    /* backdrop-filter: blur(4px); */
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3); */

    background-color: transparent;
}

.navbar .nav-link,
.navbar .dropdown-toggle {
    color: white !important;
}




/* Hidden row for details */
.order-details {
    display: none;
    background-color: #f9f9f9;
}

.detailsbuttonClass td {
    padding-left: 0px;
}

/* Get started Navbar Button  */
.animated-button {
    position: relative;
    display: inline-block;
    padding: 10px 25px;
    font-size: 18px;
    color: #fff;
    /* background: linear-gradient(135deg, #00c6ff, #0072ff); */
    background: linear-gradient(135deg, #0035e1, #fb0086);
    border-radius: 50px;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
}

/* Hover Effect */
.animated-button:hover {
    color: #fff;
    transform: scale(1.05);
    cursor: pointer;
}

/* Circle Animation */
.animated-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    transition: all 0.6s ease;
    border-radius: 50%;
    z-index: -1;
}

/* On Hover Circle Spread */
.animated-button:hover::before {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

/* Continuous Line Moving Border */
.animated-button::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    animation: rotateBorder 4s linear infinite;
    z-index: -2;
}

@keyframes rotateBorder {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


/* Payment sussesfully step 4 multi form style  */
.success-icon {
    margin: 20px auto;
    width: 100px;
    height: 100px;
}

.checkmark {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: block;
    stroke-width: 6;
    stroke: #4CAF50;
    stroke-miterlimit: 10;
    box-shadow: inset 0px 0px 0px #4CAF50;
    animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
    padding: 20px;
}

.checkmark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: #4CAF50;
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark__check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.6s forwards;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes scale {

    0%,
    100% {
        transform: none;
    }

    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}

@keyframes fill {
    100% {
        box-shadow: inset 0px 0px 0px 30px #4CAF50;
    }
}

.payment-details {
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
    font-size: 16px;
    color: #333;
}

.navbar-nav .nav-link,
.navbar-nav .dropdown-item {
    color: white !important;
}

.navbar-nav .dropdown-menu {
    background-color: #293960;
    border-radius: 0;
}

.navbar-nav .dropdown-item:hover {
    background-color: #333;
    color: white !important;
}

/* .sticky-top {
            background-color: #293960;
        } */

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
    display: none;
    min-width: 200px;
}

.dropdown-submenu .dropdown-menu.show {
    display: block;
}

.dropdown-submenu:hover>.dropdown-menu {
    display: block;
}



.navbar .nav-link,
.navbar .dropdown-toggle {
    color: white !important;
}

.navbar-brand img {
    position: relative;
    left: 42px;
    height: 40px;
    margin-right: 45px;
    border-radius: 0px;
}

.navbar-toggler .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

#Company_name {
    font-size: 30px;
}

/* 🛠️ Fix for submenu in mobile - display full width and avoid overflow */
@media (max-width: 991px) {
    .dropdown-submenu .dropdown-menu {
        position: relative;
        left: 0;
        top: 0;
        margin-left: 10px;
        width: 100%;
    }

    .dropdown-submenu>a::after {
        float: right;
        margin-top: 5px;
        content: "\f0da";
        /* FontAwesome angle-right */
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
    }
}

#Build-Your-Home-button {
    z-index: 5;
}