* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
body {
	font-family: Arial, Helvetica, sans-serif;
}
.container1 {
	display: flex;
	align-items: center;
	/* min-height: 50vh;
	background-color: #1b1b1b; */
	/* padding: 0 50px; */
}
.content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: 100%;
}
.box {
	/* width: calc(25% - 30px); */
	/* background-color: #333; */
	border-radius: 5px;
	padding: 30px;
    margin:10px;
	display: flex;
	align-items: center;
	justify-content: space-evenly;
	flex-direction: column;
	color: #ffffff;
}
.box .icon {
	font-size: 40px;
	color: #dda0dd;
}
.box .text {
    font-size: 20px;
    font-weight: 300;
}
.box .num {
	font-size: 40px;
    font-weight: 700;
}
.papa {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%; /* Ensure the container takes up space */
	max-height: 100%;
    width: auto;
    object-fit: contain;
}

.grid-1 {
    display: flex;
    justify-content: center;
    align-items: center;
}
/* Ensure full height of the section */
.hero {
    position: relative;
    padding: 50px 0;
}

/* Match image height to the first column */
.slider-img1 {
    max-width: 80%; /* Adjust this value to control the size */
    height: auto; /* Maintain aspect ratio */
    margin: 0 auto; /* Center the image */
    display: block; /* Prevent extra spacing */
  }
  

/* Full Section Navigation Buttons */
.custom-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.carousel-control-prev {
    left: -80px; /* Align to the very left of the section */
}

.carousel-control-next {
    right: -80px; /* Align to the very right of the section */
}

/* Smooth fade effect for slides */
.carousel-item {
    transition: opacity 1s ease-in-out;
    opacity: 0;
}

.carousel-item.active {
    opacity: 1;
}

/* Hide Slider on Mobile */
@media (max-width: 768px) {
    #carouselExampleIndicators {
        display: none;
    }

    /* Also hide navigation buttons on mobile */
    .custom-nav {
        display: none;
    }

}
.product-section1 {
    background: linear-gradient(180deg, #101934, #281E38);
    border-radius: 20px;
    /* padding: 50px 20px; */
    /* margin: 40px 0; */
    color: white;
}

/* Make sure content & image align properly */
.image-container1 {
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Responsive image inside container */
.image-container1 img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .product-section {
        text-align: center;
    }
}


.container2 {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    min-height: 100vh;
    position: relative;
    flex-direction: column;
    box-sizing: border-box; 
    overflow-x: hidden;/* Include padding/border in width */
}

/* Header Text */
.header-text {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    /* padding:; */
    width: 100%;
    position: relative;
    z-index: 2;
    box-sizing: border-box;
    
}

.header-text span {
    color: #d67318;
}

/* Radial Menu Styles */
.radial-menu-section {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 40px 0;
    box-sizing: border-box;
    overflow: hidden; /* Contain radial menu elements */
}

navs {
    width: 350px;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    max-width: 100%; /* Prevent overflow on small screens */
}

navs .navs-content {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 100%;
}

.circle-graphic {
    width: 200px;
    height: 200px;
    background:linear-gradient(to top, #151b5f, #1c1e36);
    border-radius: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    z-index: 1;
}

.circle-graphic h2 {
    font-size: 2rem;
    font-weight: 700;
    z-index: 2;
}

.circle-graphic p {
    font-size: 0.9rem;
    font-weight: 400;
    color: #B0B0B0;
    z-index: 2;
}

.circle-graphic::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border: 2px dashed #f0dfdf28;
    border-radius: 50%;
    z-index: -1;
    clip-path: polygon(50% 0%, 100% 0%, 100% 100%, 50% 100%);
}

.navs-content span {
    position: absolute;
    transition: all 0.6s ease;
}

.navs-content span a {
    width: 50px;
    height: 50px;
    background:linear-gradient(to top, #151b5f, #1c1e36);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 1000;
}

.navs-content span.active a {
    background: #d67318;
    transform: scale(1.2);
    animation: blink 1.5s infinite;
    
}

.navs-content span a i {
    font-size: 24px;
    color: #FFFFFF;
}

/* Blink animation for active button */
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Slider Styles */
.slider-section {
    width: 100%;
    position: relative;
    overflow: hidden;
    flex-grow: 1;
    box-sizing: border-box;
}

.slider-container2 {
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.slider-wrapper .slider-item {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.slider-item.swiper-slide-active {
    opacity: 1;
}

.slider-item .slide-inner {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    box-sizing: border-box;
}

.slide-content-wrapper {
    width: 50%;
    padding: 40px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

.slide-image-wrapper {
    width: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 10px;
}

.slide-image-wrapper img {
    width: 100%;
    max-width: 500px;
    height: auto;
    transform: scale(1);
}

/* Bouncy effect for active slide image */
.slider-item.swiper-slide-active .slide-image-wrapper img {
    animation: bounce 0.8s ease-out;
}

@keyframes bounce {
    0% { transform: scale(0.9); }
    50% { transform: scale(1.1); }
    75% { transform: scale(0.95); }
    100% { transform: scale(1); }
}

.slider-wrapper .slider-item .slide-content {
    position: relative;
    z-index: 10;
    color: #FFFFFF;
    padding: 0 20px;
    box-sizing: border-box;
}

.slider-item .slide-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.slider-item .slide-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #B0B0B0;
}

.slider-item .slide-content a {
    color: #d67318;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.slider-item .slide-content a i {
    margin-left: 5px;
}

/* Responsive Design */
@media (min-width: 1025px) {
    .container2 {
        flex-direction: row;
    }

    .header-text {
        position: absolute;
        width: 60%;
        top: 20px;
        left: 50%;
        transform: translateX(-50%);
    }

    .radial-menu-section {
        width: 33.33%;
        padding: 0;
    }

    .slider-section {
        width: 66.67%;
    }
}

@media (max-width: 1024px) {
    .container2 {
        flex-direction: column;
        min-height: 100vh;
    }

    .header-text {
        font-size: 1.5rem;
        padding: 15px;
        position: relative;
        top: 0;
        left: 0;
        transform: none;
    }

    .radial-menu-section {
        width: 100%;
        height: auto;
        padding: 40px 0;
    }

    .slider-section {
        width: 100%;
        height: auto;
        min-height: 50vh;
    }

    .slider-wrapper .slider-item {
        height: 100%;
    }

    .slide-inner {
        flex-direction: column;
    }

    .slide-content-wrapper,
    .slide-image-wrapper {
        width: 100%;
        height: auto;
        padding: 20px;
    }

    .slide-content-wrapper {
        text-align: center;
    }

    .slide-image-wrapper img {
        max-width: 300px;
    }
}

@media (max-width: 600px) {
    .header-text {
        font-size: 1.2rem;
        padding: 10px;
    }

    navs {
        width: 300px;
        height: 300px;
    }

    .circle-graphic {
        width: 200px;
        height: 200px;
    }

    .circle-graphic::before {
        width: 250px;
        height: 250px;
    }

    .navs-content span a {
        width: 40px;
        height: 40px;
    }

    .navs-content span a i {
        font-size: 20px;
    }
}