body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.navbar-brand img {
    position: relative;
    left: 42px;
    width: 127px;
    height: 42px;
    margin-right: 45px;
    border-radius: 10px;

}

.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;
}

/* new add */
.navbar-nav .nav-link,
.navbar-nav .dropdown-item {
    color: white !important;
}

/* Submenu Dropdown Styling */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: 0;
}

/* Hide dropdowns initially */
.automotive-dropdown,
.consumer-dropdown,
.home-automation-dropdown {
    display: none;
}

/* Show dropdown when toggled */
.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: 40px;
        margin-right: 0px;
        border-radius: 10px; */

        height: 34px;
        width: 77px;
        margin-right: 0px;
        left: 0px;
        border-radius: 10px;


    }

    .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");
} */