:root {
    --primary: rgba(50, 168, 82, 0.95);
    --secondary: #f65005;
    --light: #f7f8fc;
    --dark: #111111;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    padding: 6px 23px !important;
    z-index: 99;
}

.my-6 {
    margin-top: 6rem;
    margin-bottom: 6rem;
}

.py-4 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}
.bg-icon {
    position: relative;
    overflow: hidden;
}

.bg-icon::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url(../img/home-banner3.png) center center no-repeat;
    background-size: contain;
    opacity: 0.2; /* Adjust opacity */
    filter: blur(8px); /* Adjust blur level */
    z-index: 0;
}

.bg-icon > * {
    position: relative;
    z-index: 1; /* Ensure content is above the blurred background */
}

/* Spinner */
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity 0.5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/* Button */
.btn {
    font-weight: 500;
    transition: 0.5s;
}

.btn.btn-primary,
.btn.btn-secondary,
.btn.btn-outline-primary:hover,
.btn.btn-outline-secondary:hover {
    color: #ffffff;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/* Navbar */
.fixed-top {
    transition: 0.5s;
}

.top-bar {
    height: 45px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    padding: 25px 15px;
    color: #555555;
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: rgba(50, 168, 82, 0.95);
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav {
        margin-top: 10px;
        border-top: 1px solid rgba(0, 0, 0, 0.07);
        background: #ffffff;
    }

    .navbar .navbar-nav .nav-link {
        padding: 10px 0;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: 0.5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: 0.5s;
        opacity: 1;
    }
}

/* Header */
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: start;
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary);
    border: 10px solid var(--primary);
    border-radius: 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }

    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    padding-top: 12rem;
    padding-bottom: 6rem;
    background: url(../img/banner3a.jpg) center center no-repeat;
    background-size: cover;
    color: #fff;
    position: relative;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #999999;
}

/* Section Header */
.section-header {
    position: relative;
    padding-top: 25px;
}

/* .section-header::before {
    position: absolute;
    content: "";
    width: 60px;
    height: 2px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
}

.section-header::after {
    position: absolute;
    content: "";
    width: 90px;
    height: 2px;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
} */

.section-header.text-start::before,
.section-header.text-start::after {
    left: 0;
    transform: translateX(0);
}

/* About */
.about-img img {
    position: relative;
    z-index: 2;
}

.about-img::before {
    position: absolute;
    content: "";
    top: 0;
    left: -50%;
    width: 100%;
    height: 100%;
    background-image: -webkit-repeating-radial-gradient(
        #ffffff,
        #eeeeee 5px,
        transparent 5px,
        transparent 10px
    );
    background-image: -moz-repeating-radial-gradient(
        #ffffff,
        #eeeeee 5px,
        transparent 5px,
        transparent 10px
    );
    background-image: -ms-repeating-radial-gradient(
        #ffffff,
        #eeeeee 5px,
        transparent 5px,
        transparent 10px
    );
    background-image: -o-repeating-radial-gradient(
        #ffffff,
        #eeeeee 5px,
        transparent 5px,
        transparent 10px
    );
    background-image: repeating-radial-gradient(
        #ffffff,
        #eeeeee 5px,
        transparent 5px,
        transparent 10px
    );
    background-size: 20px 20px;
    transform: skew(20deg);
    z-index: 1;
}

/* Product */
.nav-pills .nav-item .btn {
    color: var(--dark);
}

.nav-pills .nav-item .btn:hover,
.nav-pills .nav-item .btn.active {
    color: #ffffff;
}

.product-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.07);
}

.product-item img {
    transition: 0.5s;
}

.product-item:hover img {
    transform: scale(1.1);
}

.product-item small a:hover {
    color: var(--primary) !important;
}

/* Testimonial */
.testimonial-carousel .owl-item .testimonial-item img {
    width: 60px;
    height: 60px;
}

.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item .testimonial-item * {
    transition: 0.5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: #ffffff !important;
}

.testimonial-carousel .owl-item.center .testimonial-item i {
    color: var(--secondary) !important;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    border: 2px solid var(--primary);
    border-radius: 50px;
    font-size: 18px;
    transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #ffffff;
    background: var(--primary);
}

/* Footer */
.footer {
    color: #999999;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #999999;
    font-weight: normal;
    text-transform: capitalize;
    transition: 0.3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #999999;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, 0.1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}

/* Header Carousel */
#header-carousel {
    height: 100vh;
    min-height: 350px;
    position: relative;
    overflow: hidden;
}

.carousel-item {
    height: 100vh;
    min-height: 350px;
    background: no-repeat center center scroll;
    background-size: cover;
}

.carousel-item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

/* .gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(50, 168, 82, 0.3), rgba(0, 0, 0, 0.5)), rgba(0, 0, 0, 0.5);
    z-index: 1;
    animation: pulse 8s ease-in-out infinite;
} */
.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
            circle at 50% 50%,
            rgba(50, 168, 82, 0.25),
            rgba(0, 0, 0, 0.6)
        ),
        rgba(0, 0, 0, 0.6);
    z-index: 1;
    animation: pulse 8s ease-in-out infinite;
}

.carousel-caption {
    top: 10%;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px;
    padding-bottom: 20px;
    z-index: 2;
}

.carousel-caption h1 {
    font-family: "Exo 2", sans-serif;
    font-size: clamp(1.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #ece6e6;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    opacity: 0;
    transform: translateX(-30px);
    animation: slideIn 0.8s ease-out 0.4s forwards;
}

.carousel-caption p {
    font-family: "Inter", sans-serif;
    font-size: clamp(0.8rem, 2.2vw, 1.2rem);
    color: #f5f5f5;
    line-height: 1.5;
    max-width: 90%;
    margin: 15px auto;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.6);
    opacity: 0;
    transform: translateX(-30px);
    animation: slideIn 0.8s ease-out 0.8s forwards;
}

.btn-product,
.btn-services {
    font-family: "Inter", sans-serif;
    font-size: clamp(0.75rem, 1.8vw, 0.95rem);
    padding: 10px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-weight: 600;
    margin: 8px;
    background: rgba(50, 168, 82, 0.95);
    color: #ffffff;
    border: none;
    overflow: hidden;
    display: inline-block;
}

.btn-product::before,
.btn-services::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-product:hover::before,
.btn-services:hover::before {
    width: 200px;
    height: 200px;
}

.btn-product:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 0 10px rgba(50, 168, 82, 0.8);
    color: rgba(50, 168, 82, 0.95);
    border-color: rgba(50, 168, 82, 0.95);
}

.btn-services:hover {
    background: rgba(224, 172, 0, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 0 10px rgba(255, 193, 7, 0.8);
}

.carousel-indicators {
    bottom: 15px;
    z-index: 3;
}

.carousel-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.7);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.carousel-indicators .active {
    opacity: 1;
    background-color: #32a852;
    width: 10px;
    height: 10px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .carousel-caption {
        top: 8%;
        padding: 8px;
        padding-bottom: 15px;
    }

    .carousel-caption h1 {
        font-size: clamp(1.4rem, 4.5vw, 3rem);
    }

    .carousel-caption p {
        font-size: clamp(0.75rem, 2vw, 1.1rem);
        max-width: 95%;
    }

    .btn-product,
    .btn-services {
        padding: 8px 25px;
        font-size: clamp(0.7rem, 1.6vw, 0.9rem);
    }
}

@media (max-width: 768px) {
    #header-carousel {
        min-height: 300px;
    }

    .carousel-item {
        min-height: 300px;
    }

    .carousel-caption {
        top: 6%;
        padding: 8px;
        padding-bottom: 15px;
    }

    .carousel-caption h1 {
        font-size: clamp(1.2rem, 4vw, 2.5rem);
    }

    .carousel-caption p {
        font-size: clamp(0.7rem, 1.8vw, 1rem);
    }

    .btn-product,
    .btn-services {
        padding: 8px 20px;
        font-size: clamp(0.65rem, 1.5vw, 0.85rem);
        display: block;
        width: 80%;
        margin: 8px auto;
    }
}

@media (max-width: 576px) {
    #header-carousel {
        min-height: 250px;
    }

    .carousel-item {
        min-height: 250px;
    }

    .carousel-caption {
        top: 5%;
        padding: 6px;
        padding-bottom: 12px;
    }

    .carousel-caption h1 {
        font-size: 28px;
        line-height: 1.3;
    }

    .carousel-caption p {
        font-size: 17px;
        max-width: 100%;
        margin: 10px auto;
    }

    .btn-product {
        padding: 4px 14px;
        font-size: clamp(0.55rem, 1.3vw, 0.75rem);
        width: auto;
        margin: 6px 4px;
        display: inline-block;
        vertical-align: middle;
    }

    .btn-services {
        padding: 10px 22px;
        font-size: 14px;
        width: 110px;
        margin: 6px 4px;
        display: inline-block;
        vertical-align: middle;
    }

    .carousel-indicators {
        bottom: 10px;
    }

    .carousel-indicators [data-bs-target] {
        width: 6px;
        height: 6px;
    }

    .carousel-indicators .active {
        width: 8px;
        height: 8px;
    }
}

/* Animations */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }

    50% {
        transform: scale(1.03);
        opacity: 0.6;
    }

    100% {
        transform: scale(1);
        opacity: 0.4;
    }
}

.about-section {
    padding: 60px 20px;
    background-color: #fff;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.section-title {
    font-weight: bold;
    color: #c00;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 5px;
    letter-spacing: 1.5px;
    animation: slideUp 0.5s ease-out;
}

.company-name {
    font-size: 28px;
    font-weight: 800;
    color: #111;
    margin-bottom: 20px;
    animation: slideUp 0.6s ease-out;
}

.about-section p {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
    animation: slideUp 0.7s ease-out;
}

.highlight-icon {
    color: #c00;
    font-size: 24px;
    transition: transform 0.3s ease;
}

.highlight-icon:hover {
    transform: scale(1.2);
}

.highlight-title {
    font-weight: bold;
    font-size: 16px;
    color: #111;
    margin-bottom: 5px;
    animation: slideUp 0.8s ease-out;
}

.highlight-text {
    font-size: 15px;
    color: #555;
    line-height: 1.5;
    animation: slideUp 0.9s ease-out;
}

.know-more-btn {
    background-color: rgba(50, 168, 82, 0.95);
    color: white;
    padding: 12px 24px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    margin-top: 20px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.know-more-btn:hover {
    background-color: white;
    color: rgba(50, 168, 82, 0.95);
    border: 1px solid rgba(50, 168, 82, 0.95);
    /* Corrected typo and ensured proper syntax */
    text-decoration: none;
    transform: translateY(-2px);
    transition: all 0.3s ease;
    /* Added for smooth transition */
}

.image-right img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: slideRight 0.5s ease-out;
    transition: transform 0.3s ease;
}

.image-right img:hover {
    transform: scale(1.05);
}

/* Animations */
@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideRight {
    from {
        transform: translateX(20px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 767px) {
    .about-section {
        padding: 40px 15px;
        text-align: center;
    }

    .row {
        flex-direction: column;
    }

    .col-md-6 {
        width: 100%;
    }

    .image-right {
        margin-top: 30px;
    }

    .company-name {
        font-size: 24px;
    }

    .highlight-icon {
        margin: 0 auto 10px;
    }

    .d-flex {
        justify-content: center;
    }

    .know-more-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 479px) {
    .about-section {
        padding: 30px 10px;
    }

    .section-title {
        font-size: 12px;
    }

    .company-name {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .about-section p {
        font-size: 14px;
    }

    .highlight-title {
        font-size: 14px;
    }

    .highlight-text {
        font-size: 13px;
    }

    .know-more-btn {
        width: 100%;
        padding: 10px;
        font-size: 13px;
    }

    .image-right img {
        border-radius: 8px;
    }
}

.stats-section {
    background-color: rgba(50, 168, 82, 0.95);

    color: #ffffff;
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.05),
        rgba(255, 255, 255, 0)
    );
    z-index: 1;
    pointer-events: none;
}

.stats-number {
    font-size: 36px;
    font-weight: 800;
    color: #ff2b2b;
    animation: fadeIn 0.6s ease-out forwards;
    display: inline-block;
}

.stats-plus {
    font-size: 28px;
    vertical-align: top;
    color: #ffd700;
    /* Gold accent for plus sign */
    font-weight: 600;
}

.stats-label {
    font-size: 14px;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #e0e0e0;
    animation: fadeIn 0.8s ease-out forwards;
}

.stats-number,
.stats-label {
    transition: transform 0.3s ease;
}

.stats-number:hover,
.stats-label:hover {
    transform: translateY(-3px);
}

.col-6.col-md-3 {
    position: relative;
    z-index: 2;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.col-6.col-md-3:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 991px) {
    .stats-section {
        padding: 50px 15px;
    }

    .stats-number {
        font-size: 32px;
    }

    .stats-plus {
        font-size: 24px;
    }

    .stats-label {
        font-size: 13px;
        letter-spacing: 1.2px;
    }

    .col-6.col-md-3 {
        padding: 15px;
    }
}

@media (max-width: 767px) {
    .stats-section {
        padding: 40px 15px;
    }

    .stats-number {
        font-size: 28px;
    }

    .stats-plus {
        font-size: 20px;
    }

    .stats-label {
        font-size: 12px;
        margin-top: 6px;
    }

    .col-6.col-md-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 479px) {
    .stats-section {
        padding: 30px 10px;
    }

    .stats-number {
        font-size: 24px;
    }

    .stats-plus {
        font-size: 18px;
    }

    .stats-label {
        font-size: 11px;
        letter-spacing: 1px;
    }

    .col-6.col-md-3 {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 10px;
    }
}

.stats-section {
    background-color: rgba(50, 168, 82, 0.95);
    color: #ffffff;
    padding: 10px 14px;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 150px;
}

.stats-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.03),
        rgba(255, 255, 255, 0)
    );
    z-index: 1;
    pointer-events: none;
}

.stats-number {
    font-size: 36px;
    font-weight: 800;
    color: white;
    margin-bottom: 5px;
    display: block;
    transition: all 0.3s ease;
}

.stats-plus {
    font-size: 28px;
    vertical-align: top;
    color: darkcyan;
    font-weight: 600;
}

.stats-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.col-6.col-md-3 {
    position: relative;
    z-index: 2;
    padding: 15px 0;
    transition: transform 0.3s ease;
}

.col-6.col-md-3:hover {
    transform: scale(1.02);
}

/* Responsive Design */
@media (min-width: 768px) {
    .row {
        justify-content: center;
    }

    .col-6.col-md-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
}

@media (max-width: 767px) {
    .stats-section {
        padding: 30px 10px;
    }

    .row {
        flex-direction: column;
        align-items: center;
    }

    .col-6.col-md-3 {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 15px 0;
    }

    .stats-number {
        font-size: 28px;
    }

    .stats-plus {
        font-size: 22px;
    }

    .stats-label {
        font-size: 12px;
        margin-bottom: 15px;
    }
}

@media (max-width: 479px) {
    .stats-section {
        padding: 25px 5px;
    }

    .stats-number {
        font-size: 24px;
    }

    .stats-plus {
        font-size: 18px;
    }

    .stats-label {
        font-size: 10px;
        margin-bottom: 10px;
    }
}

.awards-section {
    background-color: #ffffff;
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    color: #555555;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 1.5px;
}

.main-title {
    color: #111;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.description {
    color: #555;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    justify-items: center;
}

.certificate-item {
    width: 200px;
    height: 250px;
    border: 2px solid #111;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding:2px;
}

.certificate-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.certificate-item:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 991px) {
    .main-title {
        font-size: 28px;
    }

    .description {
        font-size: 15px;
    }

    .certificates-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 2fr));
    }

    .certificate-item {
        width: 180px;
        height: 225px;
    }
}

@media (max-width: 767px) {
    .awards-section {
        padding: 40px 15px;
    }

    .main-title {
        font-size: 24px;
    }

    .description {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .certificates-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .certificate-item {
        width: 160px;
        height: 200px;
    }
}

@media (max-width: 479px) {
    .awards-section {
        padding: 30px 10px;
    }

    .section-title {
        font-size: 16px;
    }

    .main-title {
        font-size: 20px;
    }

    .description {
        font-size: 13px;
        margin-bottom: 25px;
    }

    .certificates-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .certificate-item {
        width: 140px;
        height: 175px;
        margin: 0 auto;
    }

    #carouselWrapper {
        overflow: hidden;
        width: 426px;
        display: inline-block;
        vertical-align: middle;
    }

    #carouselInner {
        display: flex;
        flex-wrap: nowrap;
        transition: transform 0.3s ease;
        padding: 0;
        margin: 0;
    }

    #carouselInner .nav-item {
        flex: 0 0 128px;
        list-style: none;
    }

    .carousel-btn {
        display: inline-block;
        vertical-align: middle;
    }
}
