/* ===========================
   HERO SECTION STYLES (with auto slider)
   =========================== */

a{
	text-decoration:none;
}

.hero-section {
    position: relative;
    color: #fff;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Each carousel slide */
.hero-section .carousel-item {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 1s ease-in-out;
}

/* Fade transition */
.carousel-fade .carousel-item {
    opacity: 0;
    transition-property: opacity;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
    opacity: 1;
    z-index: 1;
}

@media (max-width: 1024px) {

    .hero-section,
    .hero-section .carousel-item {
        min-height: 70vh;
        height: 70vh;
    }
}

@media (max-width: 767px) {

    .hero-section,
    .hero-section .carousel-item {
        min-height: 55vh;
        height: 55vh;
    }
}

/* Small Mobile */
@media (max-width: 480px) {

    .hero-section,
    .hero-section .carousel-item {
        min-height: 48vh;
        height: 60vh;
    }
}

/* Background overlay image */
.hero-bg {
    position: absolute;
    inset: 0;
    /* filter: brightness(0.8); */
    filter: brightness(0.8);
    z-index: -2;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


/* Dark gradient overlay */
.hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(0, 0, 0, 0.416), rgba(0, 0, 0, 0.027));
    z-index: -1;
}

/* Hero button */
.btn-teal {
    /* background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%); */
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    /* -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
    color: #fff;
    border: none;
    border-radius: 50px;
    transition: 0.3s;
    font-size: 18px;
    padding: 10px 12px;
}

.btn-teal:hover {
    background: #2563eb;
    color: white;
}

/* Hero product image */
.main-product {
    max-width: 400px;
}

/* Offer badge */
.offer-badge {
    position: absolute;
    top: 10%;
    right: 15%;
    background: #ff00aa;
    color: #fff;
    padding: 12px 20px;
    border-radius: 50%;
    font-size: 0.9rem;
    line-height: 1.2;
    text-align: center;
    font-weight: bold;
}

/* ===========================
   SCROLLING BANNER STYLES
   =========================== */
.scrolling-banner {
    background: #fff7f7;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    height: 40px;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 600;
}

.card-body h5 {
    color: #212529;
}

.scrolling-banner span {
    margin: 0 15px;
}

.scrolling-content {
    display: inline-block;
    white-space: nowrap;
    animation: scroll-left 20s linear infinite;
    color: #ff00aa;
}

.scrolling-content span {
    display: inline-flex;
    align-items: center;
    margin: 0 40px;
    font-size: 0.95rem;
    position: relative;
}

/* ✅ Add pink icon before each span */
.scrolling-content span::before {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='%23ff00aa' viewBox='0 0 16 16'%3E%3Cpath d='M8 0l2 5h5l-4 3 2 5-4-3-4 3 2-5-4-3h5z'/%3E%3C/svg%3E");
    display: inline-block;
    margin-right: 8px;
    vertical-align: middle;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.scrolling-content:hover {
    animation-play-state: paused;
}


/* ===========================
   CAROUSEL CONTROLS
   =========================== */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1);
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    transition: opacity 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 0.8;
}

/* Slide-in animation for title */
@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Apply animation to hero title */
.hero-section h1 {
    animation: slideInLeft 1s ease-out forwards;
}

#productSlider {
    overflow: hidden;
    width: 100%;
}

.slider-track {
    display: flex;
    transition: transform 1s ease-in-out;
    will-change: transform;
    width: 250%;
}


.pack-item {
    max-width: 25%;
    box-sizing: border-box;
   /* flex: 0 0 10%; */
	flex: 0 0 10%;
    padding: 15px;
}

@media (max-width: 768px) {
    .pack-item {
        flex: 0 0 50% !important;
        max-width: 17% !important;
        padding: 10px 5px;
    }
}

@media (max-width: 991px) {
    .pack-item {
        flex: 0 0 50% !important;
        max-width: 10% !important;
        padding: 10px 5px;
    }
}



/* .pack-item {
    flex: 0 0 10%;
    padding: 15px;
} */

/* @media (max-width: 425px) {
    .pack-item {
        flex: 0 0 20% !important;
        padding: 10px;
    }
} */

@media (max-width: 768px) {

    .pack-item h5 {
        font-size: 14px;
    }

    /* .pack-item {
        flex: 0 0 25% !important;
        padding: 10px;
    } */

    .pack-item img {
        max-width: 100%;
        height: auto;
        padding-bottom: 20px !important;
    }

    .product-packaging {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    /* .slider-track {
        width: 250%;
    } */

    .pack-item {
        /* flex: 0 0 10%; */
    }
}

.pack-item img {
    transition: transform 0.3s ease;
}

.pack-item:hover img {
    transform: scale(1.05);
}

.promo-box {
    transition: all 0.4s ease;
}

.promo-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.popular-products .card {
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(119, 111, 111, 0.5) !important;
    color: #fff;

}

.popular-products .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.9);
}

.popular-products img {
    max-height: 220px;
    object-fit: contain;
}

/* =========================
   LARGE SCREEN
========================= */

@media (min-width: 1200px) {

    .popular-products .col-md-3 {
        width: 25%;
    }
}

/* =========================
   LAPTOP
========================= */

@media (max-width: 1199px) {

    .popular-products .col-md-3 {
        width: 33.33%;
    }
}



/* =========================
   TABLET
========================= */

@media (max-width: 991px) {

    .popular-products .col-md-3 {
        width: 50%;
    }

    .popular-products .card {
        height: 100%;
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

    .popular-products .col-md-3 {
        width: 100%;
    }

    .popular-products .row {
        row-gap: 20px;
    }

    .popular-products .card-img-top {
        height: 220px;
        object-fit: contain;
    }
}

.popular-products .badge {
    font-size: 0.75rem;
}

.steps-section .badge {
    background-color: #e3f2fd !important;
    font-size: 0.85rem;
    border-radius: 24px;
    margin-bottom: 10px;
}

.steps-section .ri-check-fill {
    color: #00c3ff;
}

.steps-section .rounded-4 {
    border-radius: 1rem !important;
}

.steps-section .shadow-sm {
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.steps-section .shadow-sm:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.popolar-btn {
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    font-size: 17px;
    color: white;
    padding: 10px 18px !important;
    margin-bottom: 15px;
}

.popolar-btn:hover {
    color: white !important;
}

.step-card {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    border-radius: 24px;

    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);

    border: 1px solid rgba(255, 255, 255, 0.15);

    transition: all 0.4s ease;
    overflow: hidden;

    animation: floatCard 4s ease-in-out infinite;
}

/* Hover Effect */
.step-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
    background: rgba(255, 255, 255, 0.12);
}

/* Shine Effect */
.step-card::before {
    content: "";
    position: absolute;
    top: -120%;
    left: -40%;
    width: 180px;
    height: 300%;
    background: rgba(255, 255, 255, 0.15);
    transform: rotate(25deg);
    transition: 0.8s;
}

.step-card:hover::before {
    left: 120%;
}

/* Icon */
.step-icon {
    width: 70px;
    height: 50px;
    min-width: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 18px;

    background: linear-gradient(135deg, #00d2ff, #3a7bd5);

    color: #fff;
    font-size: 25px;

    box-shadow: 0 10px 25px rgba(0, 210, 255, 0.35);

    transition: 0.4s ease;
}

.step-card:hover {
    transform: rotate(-8deg) scale(1.1);
}

/* Text */
.step-badge {
    display: inline-block;
    margin-bottom: 10px;

    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;

    color: #ffffffcc;
}

.step-content h4 {
    font-size: 28px;
    font-weight: 600;
    color: #fff;

    margin-bottom: 14px;
}

.step-content p {
    font-size: 20px;
    line-height: 1.8;
    /* color: rgba(255, 255, 255, 0.85); */
    max-width: 650px;
}

/* Floating Animation */
@keyframes floatCard {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Responsive */
@media (max-width: 768px) {

    .step-card {
        flex-direction: column;
        padding: 22px;
        margin-bottom: 20px
    }

    .step-content h4 {
        font-size: 26px;
    }

    .step-content p {
        font-size: 17px;
    }

    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}

.categories-section .circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.categories-section .circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.categories-section {
    background-color: #f9f9f9;
}

.categories-section h2 {
    color: #001f5b
}

.categories-section .circle:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.categories-section p {
    font-size: 16px;
    color: #000;
}


.expert-help {
    overflow: hidden;
    background: linear-gradient(135deg, #f3f4f6 0%, #ede9fe 50%, #dbeafe 100%);
}

.experth6 {
    letter-spacing: 1px;
    color: #0056b3;
}

.icon-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #e6f7fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-img {
    position: relative;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
}

.main-img img {
    border-radius: 1rem;
}

.small-box {
    bottom: -40px;
    right: -30px;
    width: 220px;
    /* color: white !important; */
}

.edit-color {
    bottom: -20px;
    left: -50px;
    text-align: center;
    width: 90px;
}

.edit-color img {
    width: 70px;
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    padding: 8px;
}

.floating-icons {
    position: absolute;
    top: 20%;
    right: 10%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.icon-float {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    background-color: #f3f3f3;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.icon-float:hover {
    transform: translateY(-4px);
}

@media (max-width: 992px) {

    .small-box,
    .edit-color {
        display: none;
    }

    .floating-icons {
        display: none;
    }
}

.blog-section {
    background-color: #fff;
}

.blog-card {
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-img img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 1rem;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1);
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
}

.blog-card h5 {
    font-size: 18px;
    line-height: 1.4;
}

.gallery-section {
    background-color: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    grid-gap: 20px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 1rem;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    border-radius: 1rem;
}

/* Hover zoom effect */
.gallery-item:hover img {
    transform: scale(1.05);
}

/* Highlight one large center image */
.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

@media (max-width: 768px) {
    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }
}


/* ================= 1024 FOOTER RESPONSIVE ================= */

@media (max-width: 1024px) {

    .footer-section .col-lg-4 {
        width: 33.33%;
        flex: 0 0 33.33%;
    }

    .footer-section h5 {
        font-size: 22px !important;
    }

    .footer-section p,
    .footer-section li,
    .footer-section a,
    .footer-section span {
        font-size: 14px !important;
        line-height: 1.7;
        word-break: break-word;
        overflow-wrap: break-word;
    }

    .footer-section .logo-size {
        max-width: 130px;
    }

    .footer-section ul {
        padding-left: 0;
    }

    .footer-section .formail a {
        word-break: break-all;
    }
}

/* ================= TABLET ================= */

@media (max-width: 991px) {

    .footer-section .col-lg-4 {
        width: 50%;
        flex: 0 0 50%;
    }
}

/* ================= MOBILE ================= */

@media (max-width: 767px) {

    .footer-section .col-lg-4,
    .footer-section .col-md-6 {
        width: 100%;
        flex: 0 0 100%;
        text-align: center;
    }
}

/* ================= FOOTER RESPONSIVE ================= */

.footer-section {
    background: #000;
    position: relative;

}

/* Default Font Size */
.footer-section p,
.footer-section li,
.footer-section a,
.footer-section span,
.footer-section .small,
.footer-section .for-font,
.footer-section .formail {
    font-size: 18px !important;
    line-height: 1.8;
}

/* Heading Size */
.footer-section h5 {
    font-size: 28px !important;
    margin-bottom: 24px;
}

/* Social Icons */
.footer-section .social-icons i {
    font-size: 24px;
}

/* Logo */
.footer-section .logo-size {
    max-width: 180px;
    width: 100%;
    height: auto;
}

/* ================= LAPTOP ================= */

@media (max-width: 1199px) {

    .footer-section h5 {
        font-size: 26px !important;
    }

    .footer-section p,
    .footer-section li,
    .footer-section a,
    .footer-section span,
    .footer-section .small,
    .footer-section .for-font,
    .footer-section .formail {
        font-size: 18px !important;
    }
}


/* ================= TABLET ================= */



@media (max-width: 991px) {

    .footer-section {
        padding-top: 50px;
    }

    .footer-section h5 {
        font-size: 24px !important;
    }

    .footer-section p,
    .footer-section li,
    .footer-section a,
    .footer-section span,
    .footer-section .small,
    .footer-section .for-font,
    .footer-section .formail {
        font-size: 17px !important;
    }

    .footer-section .logo-size {
        max-width: 160px;
    }
}

/* ================= MOBILE ================= */

@media (max-width: 767px) {

    .footer-section {
        text-align: center;
    }

    .footer-section .row>div {
        margin-bottom: 30px;
    }

    .footer-section h5 {
        font-size: 22px !important;
    }

    .footer-section p,
    .footer-section li,
    .footer-section a,
    .footer-section span,
    .footer-section .small,
    .footer-section .for-font,
    .footer-section .formail {
        font-size: 16px !important;
        line-height: 1.7;
    }

    .footer-section .social-icons i {
        font-size: 22px;
    }

    .footer-section .logo-size {
        max-width: 140px;
    }

    .footer-section .text-center {
        font-size: 14px !important;
        line-height: 1.6;
    }
}

/* ================= SMALL MOBILE ================= */

@media (max-width: 480px) {

    .footer-section h5 {
        font-size: 20px !important;
    }

    .footer-section p,
    .footer-section li,
    .footer-section a,
    .footer-section span,
    .footer-section .small,
    .footer-section .for-font,
    .footer-section .formail {
        font-size: 16px !important;
    }

    .footer-section .social-icons i {
        font-size: 20px;
    }

    .footer-section .text-center {
        font-size: 16px !important;
    }
}

.formail a {
    text-decoration: none;
    color: white;
}

.formail {
    text-decoration: none;
    color: white;
}

#backToTop {
    background: #00bfa6;
    color: #fff;
    width: 45px;
    height: 45px;
    border: none;
}

#backToTop:hover {
    background: #00e6c0;
}

h1,
h2 {
    font-size: 38px !important;
    line-height: 46px !important;
    text-transform: capitalize !important;
    font-weight: 600 !important;
    font-family: 'Inter', sans-serif !important;
}

/* Mobile */

@media (max-width: 1024px) {

    h1,
    h2 {
        font-size: 32px !important;
        line-height: 40px !important;
        letter-spacing: 1;
    }
}

@media (max-width: 767px) {

    h1,
    h2 {
        font-size: 26px !important;
        line-height: 34px !important;
    }
}

/* Small Mobile */
@media (max-width: 480px) {

    h1,
    h2 {
        font-size: 22px !important;
        line-height: 30px !important;
    }
}

h1,
h2,
h3,
h4,
h5,
h5 {
    font-family: 'Inter', sans-serif !important;

}

.list-unstyled li {
    font-size: 18px;
    line-height: 28px;
    font-family: 'Poppins', sans-serif !important;

}

/* .list-unstyled1 li span {
    width: 35px;
    height: 35px;
    background: #dbeafe;
    color: #1d4ed8;
    font-size: 1rem;

} */

/* .list-unstyled1 li span {
    width: 35px;
    height: 35px;
    background: #dbeafe;
    color: #1d4ed8;
    font-size: 1rem;
} */
.list-unstyled-span {
    width: 35px;
    height: 35px;
    background: #dbeafe;
    color: #1d4ed8;
    font-size: 1rem;
}

.popolar-btn {
    font-size: 18px;
}

/* Tablet */
@media (max-width: 991px) {

    .list-unstyled li,
    .popolar-btn {
        font-size: 16px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .list-unstyled li {
        font-size: 17px;
        line-height: 24px;
    }

    .popolar-btn {
        font-size: 15px;
    }
}

.lead {
    font-size: 17px !important;
    font-family: 'Poppins', sans-serif !important;
}

.fw-normal {
    font-weight: 700px !important;
    font-family: 'Poppins', sans-serif !important;
    text-align: center !important;

}

.promo-box {
    color: white !important;
    background: linear-gradient(135deg, #b86ddf, #ff8dc7);
}

.promo-box1 {
    color: white !important;
    background: linear-gradient(135deg, #f89921, #fbd264);

}

.forh6 {
    letter-spacing: 1px;
    color: white;
    line-height: 50px;
}



.howsec {
    background: linear-gradient(135deg,
            #0f172a 0%,
            #1e293b 25%,
            #312e81 55%,
            #7c3aed 80%,
            #db2777 100%);
    color: #fff;
    margin-top: 30px;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.55),
            rgba(0, 0, 0, 0.25));

    z-index: 1;
}

.hero-section::after {
    content: "";
    position: absolute;

    width: 500px;
    height: 500px;

    top: -180px;
    right: -150px;

    border-radius: 50%;

    background: rgba(168, 85, 247, 0.20);

    filter: blur(100px);
}

/* .promo-box h2 {
    font-size: 32px !important;
    font-family: 'Inter', sans-serif !important;


} */

/* .promo-box p {
    font-size: 18px !important;
    font-family: 'Poppins', sans-serif !important;
} */

p {
    font-size: 17px !important;
    letter-spacing: 0.5px;
    font-family: 'Poppins', sans-serif !important;
    line-height: 1.7 !important;
    font-weight: 400 !important;

}

.popular-header {
    position: relative;
    text-align: center;
    padding-bottom: 20px;
}

.popular-title {
    margin: 0;
}

.popular-btn-wrap {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .popular-btn-wrap {
        position: static;
        transform: none;
        margin-top: 15px;
        text-align: center;
    }
}

.for-font {
    font-family: 'Inter', sans-serif !important;
    font-size: 18px !important;

}


/* Responsive spacing */
@media (max-width: 767px) {
    .footer-section {
        text-align: center;
    }

    .footer-section .footer-logo img {
        margin-bottom: 15px;
    }

    .section-title {
        font-size: 26px !important;
    }

    h1,
    h2 {
        font-size: 28px !important;
        line-height: 37px !important;
    }


}

/* .sustainable-title {
    font-size: 55px !important;
} */

.who-section {
    box-shadow:
        0 4px 12px rgba(37, 99, 235, 0.15),
        0 8px 24px rgba(124, 58, 237, 0.12);
}

.about-bg {
    background: linear-gradient(135deg, #f3f4f6 0%, #ede9fe 50%, #dbeafe 100%);
    padding: 80px 20px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.about-bg p {
    max-width: 800px;
    line-height: 1.8;
}

.forcenter {
    font-family: 'Poppins', sans-serif !important;
    text-align: center;
}

.identity-tag {
    color: #6b7280;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-title {
    color: #7c3aed;
    position: relative;
    letter-spacing: 1;

}

/* LIST DESIGN */
.about-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-list li {
    position: relative;
    padding-left: 34px;
    font-family: 'Poppins', sans-serif;

    margin-bottom: 28px;
    letter-spacing: 1;
    color: var(--bs-secondary-color);
    /* color: black; */
    font-size: 17px;
    line-height: 2;

    text-align: left;
}

.about h3 {
    color: #7c3aed;
    letter-spacing: 1;
}

.about p {
    line-height: 1.9;
    font-size: 1.05rem;
}

.about strong {
    color: #010203;
}

.genpac {
    background: #f8faff;
    border: 1px solid #e0e8ff;
}

.genpac p {
    color: #1e293b;
    line-height: 1.9;
    font-size: 17px;
    padding: 0px 30px;
}

/* PURPLE DOT */
.about-list li::before {
    content: "";
    position: absolute;

    left: 0;
    top: 14px;

    width: 10px;
    height: 10px;

    border-radius: 50%;
    background: #8b5cf6;
}

.about-list strong {
    color: #111827;
}

/* MOBILE */
@media(max-width:767px) {

    .about-list li {
        font-size: 17px;
        line-height: 1.9;
        padding-left: 28px;
    }

    .about-list li::before {
        top: 11px;
    }

}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Hidden state before animation */
.slide-left-on-scroll,
.slide-right-on-scroll {
    opacity: 0;
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

/* Active animation when visible */
.slide-left-on-scroll.active {
    animation: slideInLeft 1s ease-out forwards;
}

.slide-right-on-scroll.active {
    animation: slideInRight 1s ease-out forwards;
}


/* Menu Styling */
.second-nav a {
    text-decoration: none;
    color: #000;
    font-weight: 600;
    font-size: 14px;
    position: relative;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

/* Active / Hover State */
.second-nav a:hover,
.second-nav a.active {
    color: #0d6efd;
}

.second-nav a.active::after,
.second-nav a:hover::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #9ea1a7;
}

/* Offer Section */
.offer-bar {
    font-size: 14px;
    color: #000;
}

/* Pink background only for the % icon */
.offer-icon {
    background: #ff69b4;
    width: 26px;
    height: 26px;
    border-radius: 50%;
}

.offer-icon i {
    font-size: 14px;
}

.offer-bar strong {
    font-weight: 700;
}

.row.g-4 {
    opacity: 1;
    transform: translateY(60px);
}

.row.g-4.animate {
    animation: slideUp 1s ease-out forwards;
}

/* Add delay for second row */
.row.g-4:nth-of-type(2).animate {
    animation-delay: 0.5s;
}

/* Slide up animation keyframes */
@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Move arrows to the corners */
#blogCarousel .carousel-control-prev,
#blogCarousel .carousel-control-next {
    width: auto;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    opacity: 1;
}

#blogCarousel .carousel-control-prev {
    left: -50px;
    /* adjust to move farther or closer to carousel */
}

#blogCarousel .carousel-control-next {
    right: -50px;
}

/* Customize arrow icons */
#blogCarousel .carousel-control-prev-icon,
#blogCarousel .carousel-control-next-icon {
    background-color: #000;
    /* black background */
    border-radius: 50%;
    padding: 12px;
    width: 40px;
    height: 40px;
    background-size: 60%;
    opacity: 0.9;
}

/* Add hover effect */
#blogCarousel .carousel-control-prev-icon:hover,
#blogCarousel .carousel-control-next-icon:hover {
    background-color: #007bff;
    /* blue hover color */
    opacity: 1;
}

/* Slide up animation keyframes */
@keyframes slideUpFade {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Apply animation */
.slide-up-animation {
    opacity: 0;
    animation: slideUpFade 1s ease-out forwards;
    animation-delay: 0.3s;
    /* Optional delay */
}

/* Optional: Slight stagger for paragraph and button */
.slide-up-animation p {
    animation: slideUpFade 1s ease-out forwards;
    animation-delay: 0.3s;
    font-size: 16px;
}



.slide-up-animation a {
    animation: slideUpFade 1s ease-out forwards;
    animation-delay: 0.6s;
}

/* Slide in from right animation keyframes */
@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Apply animation to the image container */
.slide-right-animation {
    opacity: 0;
    animation: slideInRight 1s ease-out forwards;
    animation-delay: 0.5s;
    /* optional delay */
}

.discount-badge {
    position: absolute;
    top: 20px;
    right: 40px;
    width: 134px;
    z-index: 5;
}

.rotate-badge {
    animation: spinBadge 8s linear infinite;
}

@keyframes spinBadge {

    0%,
    100% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(15deg);
    }
}



@keyframes popIn {
    from {
        transform: scale(0);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.social-icons a {
    text-decoration: none !important;
    /* removes underline */
}

.social-icons a:hover {
    text-decoration: none;
    /* keeps it clean even on hover */
}


.about-section {
    background-color: #fff;
    padding: 80px 0;

}

.about-card1 {
    box-shadow:
        0 4px 12px rgba(37, 99, 235, 0.15),
        0 8px 24px rgba(124, 58, 237, 0.12);
}

.about-title {
    color: #335CFF;
    font-size: 2rem;
    font-weight: 500;
}

.about-heading {
    font-size: 2.8rem;
    font-weight: 700;
    color: #000;
}

.about-text {
    max-width: 750px;
    margin: 0 auto;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.7;
}

.about-percentage {
    color: #335CFF;
    font-size: 2.8rem;
    font-weight: 800;
}

.about-subtitle {
    color: #335CFF;
    font-weight: 600;
    margin-top: 10px;
}

.about-desc {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

.video-mockup-section {
    background-color: #fff;
    padding: 80px 0;
}

.video-wrapper {
    position: relative;
    display: inline-block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-decoration: none;
    z-index: 2;
    transition: all 0.3s ease;
}

.play-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease-in-out;
}

.play-icon {
    font-size: 2.2rem;
    color: #335CFF;
    margin-bottom: 5px;
}

.play-text {
    font-size: 0.8rem;
    letter-spacing: 2px;
    font-weight: 600;
    color: #333;
}

.play-button:hover .play-circle {
    transform: scale(1.1);
    background-color: #335CFF;
}

.play-button:hover .play-icon,
.play-button:hover .play-text {
    color: #fff;
}

.video-img {
    width: 90%;
    /* or 100% */
    max-width: 1300px;
    /* increase width */
}


.features-section {
    background: #fff;
    padding: 80px 0;
}

.feature-box {
    background: #fff;
    padding: 15px 10px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-icon img {
    /* background: #e9edff;
    border-radius: 10px;
    padding: 8px; */
    transition: all 0.3s ease;
    width: 55px;
    height: auto;
}

.feature-box:hover .feature-icon img {
    /* background: #335CFF; */
    transform: scale(1.1);
}

.feature-title {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: #000;
}

.feature-desc {
    font-size: 0.9rem;
    color: #555;
    margin: 0;
}


.team-section h2 {
    font-size: 2rem;
    color: #0066ff;
}

.team-card {
    transition: all 0.3s ease;
    background-color: #fff;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.team-card img {
    height: 260px;
    width: 100%;
    object-fit: cover;
}


.team-slider-wrapper {
    overflow: hidden;
    position: relative;
}

.team-slider {
    display: flex;
    width: max-content;
    animation: slide-left 25s linear infinite;
}

@keyframes slide-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.team-card {
    background: #fff;
    min-width: 250px;
    margin-right: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.about-section {
    background-color: #ffffff;
}

.industry-card {
    transition: all 0.3s ease;
}

.industry-card h6 {
    font-weight: 700 !important;
}

.industry-card img {
    width: 60px;
    height: auto;
    margin-bottom: 15px;
}

.industry-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.text-primary {
    color: #007bff !important;
}

h3.fw-semibold {
    letter-spacing: 0.5px;
}

img.rounded-4 {
    border-radius: 1.25rem !important;
}


:root {
    --primary: #2563eb;
    --primary-dark: #1e40af;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    --gradient-e: linear-gradient(135deg, #720aa4 0%, #91238c 100%);
    /* --gradient-2: linear-gradient(90deg, #ff0000, #ff9900); */
    --gradient-a: linear-gradient(90deg, #ff0000, #ff9900);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    overflow-x: hidden;
}

.about-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
}

/* Animated gradient background */
.header-gradient {
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        filter: hue-rotate(0deg);
    }

    50% {
        filter: hue-rotate(10deg);
    }
}

/* Fade in animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Stagger animation delays */
.delay-1 {
    animation-delay: 0.1s;
    opacity: 0;
}

.delay-2 {
    animation-delay: 0.2s;
    opacity: 0;
}

.delay-3 {
    animation-delay: 0.3s;
    opacity: 0;
}

/* Image hover effects */
.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
}

.image-container img {
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.image-container:hover img {
    transform: scale(1.05);
}

.image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.image-container:hover::before {
    opacity: 1;
}

/* Industry cards */
.industry-card {
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-2);
    opacity: 0.05;
    transition: left 0.5s ease;
}

.industry-card:hover::before {
    left: 0;
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(37, 99, 235, 0.2);
}

.industry-card i {
    transition: all 0.4s ease;
}

.industry-card:hover i {
    transform: scale(1.2) rotate(5deg);
    color: #7c3aed !important;
}

/* Commitment section */
.commitment-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
    border: 2px solid rgba(37, 99, 235, 0.1);
    position: relative;
    overflow: hidden;
}

.commitment-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* Stats counter style */
.stats-badge {
    font-family: 'Poppins', sans-serif !important;

    display: inline-block;
    /* padding: 0.5rem 1.5rem; */
    padding: 12px 24px;
    /* background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%); */
    background: var(--gradient-e);
    color: white;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow-md);
    margin: 0.5rem;
    transition: transform 0.3s ease;
}

.stats-badge:hover {
    transform: scale(1.05);
}

/* Feature highlights */
.feature-dot {
    width: 8px;
    height: 8px;
    background: var(--gradient-2);
    border-radius: 50%;
    display: inline-block;
    margin-right: 0.75rem;
    animation: pulse 2s ease-in-out infinite;
}

/* Decorative elements */
.decorative-line {
    width: 60px;
    height: 4px;
    /* background: var(--gradient-2); */
    margin: 0 auto 1rem;
    border-radius: 2px;
    background: linear-gradient(135deg, #fff 0%, #e0e7ff 100%);
}

.fortext {
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive typography */
@media (max-width: 768px) {
    .display-6 {
        font-size: 1.75rem;
    }
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

.section-title {
    position: relative;
    display: inline-block;
}

/* .section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-2);
    border-radius: 2px;
} */

/* Industries grid improvements */
.industries-section {
    padding: 10px;
    background: linear-gradient(135deg, #fafbfc 0%, #f0f4ff 100%);
    border: 1px solid rgba(37, 99, 235, 0.08);
}


/* :root {
    --primary: #2563eb;
    --primary-dark: #1e40af;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    --gradient-a: linear-gradient(90deg, #ff0000, #ff9900);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
} */

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    overflow-x: hidden;
}

.about-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
}

/* Animated gradient background */
.header-gradient {
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        filter: hue-rotate(0deg);
    }

    50% {
        filter: hue-rotate(10deg);
    }
}

/* Fade in animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Stagger animation delays */
.delay-1 {
    animation-delay: 0.1s;
    opacity: 0;
}

.delay-2 {
    animation-delay: 0.2s;
    opacity: 0;
}

.delay-3 {
    animation-delay: 0.3s;
    opacity: 0;
}

/* Image hover effects */
.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
}

.image-container img {
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.image-container:hover img {
    transform: scale(1.05);
}

.image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.image-container:hover::before {
    opacity: 1;
}

/* Industry cards */
.industry-card {
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-2);
    opacity: 0.05;
    transition: left 0.5s ease;
}

.industry-card:hover::before {
    left: 0;
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(37, 99, 235, 0.2);
}

.industry-card i {
    transition: all 0.4s ease;
}

.industry-card:hover i {
    transform: scale(1.2) rotate(5deg);
    color: #7c3aed !important;
}

/* Commitment section */
.commitment-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
    border: 2px solid rgba(37, 99, 235, 0.1);
    position: relative;
    overflow: hidden;
}

.commitment-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* Stats counter style */
/* .stats-badge {
            display: inline-block;
            padding: 0.5rem 1.5rem;
            background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
            color: white;
            border-radius: 2rem;
            font-weight: 600;
            font-size: 0.9rem;
            box-shadow: var(--shadow-md);
            margin: 0.5rem;
            transition: transform 0.3s ease;
        }

        .stats-badge:hover {
            transform: scale(1.05);
        } */

/* Feature highlights */
.feature-dot {
    width: 8px;
    height: 8px;
    background: var(--gradient-2);
    border-radius: 50%;
    display: inline-block;
    margin-right: 0.75rem;
    animation: pulse 2s ease-in-out infinite;
}

/* Decorative elements */
.decorative-line {
    width: 60px;
    height: 4px;
    /* background: var(--gradient-a); */
    /* background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%); */
    margin: 0 auto 1rem;
    border-radius: 2px;
}

/* Responsive typography */
@media (max-width: 768px) {
    .display-6 {
        font-size: 1.75rem;
    }
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

.section-title {
    position: relative;
    display: inline-block;
}

/* .section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-2);
    border-radius: 2px;
} */

/* Industries grid improvements */
.industries-section {
    background: linear-gradient(135deg, #fafbfc 0%, #f0f4ff 100%);
    border: 1px solid rgba(37, 99, 235, 0.08);
}

/* Innovation Banner Section */
.innovation-banner {
    background-image: linear-gradient(135deg, rgb(57 13 118 / 95%) 0%, rgb(124 58 33 / 95%) 100%),
        url('assets/images/close-up-hands-typing-laptop.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-top: 4rem;
}

.innovation-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(135deg, rgba(30, 58, 138, 0.9) 0%, rgba(88, 28, 135, 0.9) 100%); */
    z-index: 1;
}

/* Glassmorphism cards */
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* Icon wrapper */
.icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* 
@media (max-width: 768px) {
    .d-flex.align-items-center.mb-3 {
        flex-direction: column;
        align-items: flex-start !important;
        text-align: left;
    }

    .d-flex.align-items-center.mb-3 .icon-wrapper {
        margin-right: 0 !important;
        margin-bottom: 12px;
        align-self: flex-start;
    }

    .d-flex.align-items-center.mb-3 h4 {
        text-align: left;
        width: 100%;
    }
} */


@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Tech badges */
.tech-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2rem;
    color: white;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tech-badge:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.tech-badge i {
    font-size: 1rem;
}

/* Mobile responsiveness for innovation section */
@media (max-width: 768px) {
    .innovation-banner {
        background-attachment: scroll;
    }
}



/*Contact Us */



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.contact-page {
    /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
/* .contact-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
} */



.contact-hero {
    padding: 3rem 0;
    text-align: center;
    background: linear-gradient(rgb(251 229 230 / 19%), rgb(204 210 241 / 36%)), url('../images/contact.jpg');
    background-size: cover;
    background-position: center;
}

.contact-hero h3 {
    /* font-size: 2.5rem; */
    margin-bottom: 1rem;
    color: #1a3a8f;
}

.contact-hero p {
    /* font-size: 1.2rem; */
    max-width: 700px;
    margin: 0 auto 2rem;
    color: #555;
}

.contact-hero h1 {
    font-size: 2rem;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    animation: fadeInUp 0.6s ease;
}

.hero-subtitle {
    font-size: 18px;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.6s ease 0.2s backwards;
}

/* Contact Content */
.contact-content {
    padding: 80px 20px;
    background: #f8f9fa;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
}

/* Contact Info Cards */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: white;
}

.info-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.info-card p {
    color: #666;
    line-height: 1.6;
}

.info-card a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-card a:hover {
    color: #764ba2;
}

/* Contact Form */
.contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.form-card h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #333;
}

.alert {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert ul {
    margin: 0;
    padding-left: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 30px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.submit-btn svg {
    transition: transform 0.3s ease;
}

.submit-btn:hover svg {
    transform: translateX(5px);
}

.form-group textarea {
    width: 100%;
    height: 200px;

    padding: 18px 20px;

    border: 1px solid #d1d5db;
    border-radius: 16px;

    font-size: 16px;
    line-height: 28px;

    color: #111827;
    background: #ffffff;

    resize: none;
    outline: none;

    transition: 0.3s ease;
}

.form-group textarea:focus {
    border-color: #2563eb;

    box-shadow:
        0 0 0 4px rgba(37, 99, 235, 0.12);
}

.form-group textarea::placeholder {
    color: #9ca3af;
}

/* Mobile */
@media (max-width: 767px) {

    .form-group textarea {
        height: 200px;

        padding: 16px;

        font-size: 14px;
        line-height: 24px;

        border-radius: 14px;
    }
}



.map-section {
    background: #ffffff;
    padding: 80px;
}



.map-container {
    width: 100%;
    height: 500px;

    overflow: hidden;
    border-radius: 24px;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.12),
        0 20px 60px rgba(0, 0, 0, 0.08);
}



.map-container iframe {
    width: 100%;
    height: 100%;

    border: 0;
    display: block;

    border-radius: 24px;
}



@media (max-width: 991px) {

    .map-section {
        padding: 60px 20px;
    }

    .map-container {
        height: 420px;
        border-radius: 20px;
    }

    .map-container iframe {
        border-radius: 20px;
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

    .map-section {
        padding: 40px 15px;
    }

    .map-container {
        height: 320px;
        border-radius: 10px;
    }

    .map-container iframe {
        border-radius: 16px;
    }
}

/* Tablet */
@media (max-width: 991px) {

    .map-container iframe {
        height: 420px;
    }
}

/* Mobile */
@media (max-width: 767px) {

    .map-section {
        padding: 50px 15px;
    }

    .map-container {
        border-radius: 18px;
    }

    .map-container iframe {
        height: 320px;
    }
}

/* =========================
   MOBILE ONLY
========================= */

@media (max-width: 767px) {

    .container {
        padding: 0 15px;
        /* width: 700px; */
    }

    .contact-hero {
        padding: 60px 15px;
        background-position: center;
    }

    .contact-hero h1,
    .hero-title {
        font-size: 30px;
        line-height: 1.3;
    }

    .contact-hero p,
    .hero-subtitle {
        font-size: 14px;
        line-height: 24px;
    }

    .contact-content {
        padding: 50px 15px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .info-card {
        padding: 20px;
        border-radius: 14px;
    }

    .info-card h3 {
        font-size: 18px;
    }

    .info-card p,
    .info-card a {
        font-size: 17px;
        line-height: 24px;
        word-break: break-word;
    }

    .contact-form-wrapper {
        padding: 20px;
        border-radius: 16px;
    }

    .form-card h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .form-group input,
    .form-group textarea {
        font-size: 14px;
        padding: 14px 16px;
    }

    .submit-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 15px;
    }

    .map-section {
        padding: 40px 15px;
    }

    .map-container {
        height: 300px;
        border-radius: 16px;
    }

    .map-container iframe {
        border-radius: 16px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 36px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .contact-content {
        padding: 40px 20px;
    }

    .info-card {
        padding: 20px;
    }
}

.logo-size {
    height: auto;
    /* width: 175px; */
    width: 225px;
}

.service-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 12px;
    padding: 30px;
}

/* Make all images bottom aligned */
.service-card img {
    margin-top: auto;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #f5f5f5;
            padding: 20px;
        } */

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.engineer {
    max-width: 600px;
}

.services-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 20px;
}

/* =========================
   SERVICE CARD COMMON CSS
========================= */

.service-card,
.service-box {
    border-radius: 24px;
    padding: 40px;
    color: #ffffff;

    position: relative;
    overflow: hidden;

    min-height: 600px;

    display: flex;
    flex-direction: column;
    /* justify-content: flex-end; */
 justify-content: flex-start;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.15),
        0 20px 60px rgba(0, 0, 0, 0.12);

    transition: 0.4s ease;
}

/* =========================
   DARK OVERLAY
========================= */

/* Premium Dark Overlay */
.service-card::before,
.service-box::before {
    content: '';
    position: absolute;
    inset: 0;

    /* background:
        linear-gradient(180deg,
            rgba(0, 0, 0, 0.10) 0%,
            rgba(0, 0, 0, 0.30) 35%,
            rgba(0, 0, 0, 0.65) 70%,
            rgba(0, 0, 0, 0.88) 100%); */
	    background: linear-gradient(180deg, rgba(0, 0, 0, 0.10) 0%, rgb(0 0 0 / 19%) 35%, rgb(0 0 0 / 21%) 70%, rgb(0 0 0 / 22%) 100%);

    z-index: 1;
}

/* =========================
   CONTENT ABOVE OVERLAY
========================= */

.service-card h2,
.service-card p,
.service-card .features-list,
.service-card .explore-btn,
.service-box h2,
.service-box p,
.service-box .check-list,
.service-box .action-button {
    position: relative;
    z-index: 2;
}

/* =========================
   HEADING
========================= */

.service-card h2,
.service-box h2 {
    color: #fff;
    font-size: 38px;
    margin-bottom: 20px;
    line-height: 1.3;
}

/* =========================
   PARAGRAPH
========================= */

.service-card p,
.service-box p {
    color: rgba(255, 255, 255, 0.92);
    line-height: 30px;
    margin-bottom: 25px;
    font-size: 16px;
}

/* =========================
   LIST
========================= */

.features-list li,
.check-list li {
    color: #fff;
    margin-bottom: 14px;
}

/* =========================
   HOVER EFFECT
========================= */

.service-card:hover,
.service-box:hover {
    transform: translateY(-8px);
}

/* =========================
   CARD COLORS
========================= */

.card-blue {
    background-color: #2563EB;
}

.card-orange {
    background-color: #FB923C;
}

.card-green {
    background-color: #6B9F3E;
}

.box-purple {
    background-color: #7C3AED;
}

.box-teal {
    background-color: #0F766E;
}

.box-pink {
    background-color: #DB2777;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {

    .service-card,
    .service-box {
        padding: 30px;
        min-height: 380px;
    }

    .service-card h2,
    .service-box h2 {
        font-size: 30px;
    }
}

@media (max-width: 767px)
{

    .service-card,
    .service-box {
        padding: 25px 20px;
        min-height: 320px;
        border-radius: 18px;
    }

    .service-card h2,
    .service-box h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .service-card p,
    .service-box p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 20px;
    }



    .features-list li,
    .check-list li {
        font-size: 14px;
    }
}

/* Content */
.service-box h2,
.service-box p,
.service-box .check-list,
.service-box .action-button,
.service-box .visual-area {
    position: relative;
    z-index: 2;
}

.service-box h2 {
    color: #fff;
    margin-bottom: 20px;
}

.service-box p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 30px;
    margin-bottom: 25px;
}

.service-box .check-list li {
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Poppins', sans-serif;

    margin-bottom: 14px;
}

@media (max-width: 1024px) {

    .service-box .check-list {
        padding-left: 0 !important;
        margin-left: 0 !important;
    }

    .service-box .check-list li {
        display: flex;
        justify-content: flex-start !important;
        text-align: left !important;
        width: 100%;
    }
}

.service-box:hover {
    transform: translateY(-8px);
}

.service-card h2 {
    font-size: 2rem !important;
    margin-bottom: 25px;
    /* font-weight: 400; */
    line-height: 1.2 !important;
}

.service-card p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 1;
    font-weight: 300;
}

.features-list {
    list-style: none;
    margin-bottom: 30px;
    font-family: 'Poppins', sans-serif;

}

.features-list li {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
    font-size: 1.05rem;
    font-weight: 300;
}

.checkmark {
    width: 26px;
    height: 26px;
    background: #E91E8C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    font-size: 0.9rem;
    font-weight: bold;
}

@media (max-width: 1024px) {

    .features-list {
        padding-left: 0 !important;
        text-align: left !important;
    }

    .features-list li {
        display: flex;
        justify-content: flex-start !important;
        align-items: flex-start !important;
        text-align: left !important;
        width: 100%;
    }

    .checkmark {
        margin-right: 12px;
        margin-left: 0 !important;
        flex-shrink: 0;
    }
}

.feature-span {
    font-size: 17px;
    font-family: 'Poppins', sans-serif;
    color: var(--bs-secondary-color)
}

.image-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.product-image {
    background: white;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    min-height: 140px;
}

.product-image img {
    max-width: 100%;
    height: auto;
    display: block;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 0.9rem;
    text-align: center;
    padding: 20px;
}

.card-orange .image-section,
.card-green .image-section {
    justify-content: center;
}

.card-orange .product-image,
.card-green .product-image {
    min-height: 280px;
}

.explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: #000;
    padding: 6px 14px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    align-self: flex-start;
    margin-top: auto;
    transition: all 0.3s ease;
}

.explore-btn:hover {
    transform: translateX(5px);
}

.explore-btn::after {
    content: "›";
    font-size: 1.4rem;
    font-weight: bold;
}

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: 1.3fr 1fr 1fr;
    }
}

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .card-blue {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .card-blue {
        grid-column: 1;
    }

    .service-card {
        padding: 40px 30px;
        /* min-height: auto; */
		min-height: 500px;
    }

    .service-card h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .service-card {
        padding: 30px 25px;
    }

    .service-card h2 {
        font-size: 1.5rem;
    }

    .service-card p {
        font-size: 1rem;
    }
}


/* second */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #f5f5f5;
            padding: 20px;
        } */

.wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.cards-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;
    gap: 20px;
}

.one li {
    color: rgba(255, 255, 255, 0.9) !important;
}




.box-purple {
    background: linear-gradient(135deg, #8B7EC8 0%, #7B6FB8 100%);
}

.box-teal {
    background: linear-gradient(135deg, #2DB89F 0%, #1FA88E 100%);
}

.box-pink {
    background: linear-gradient(135deg, #F199C7 0%, #E988B8 100%);
}

.service-box h2 {
    font-size: 2rem !important;
    margin-bottom: 25px;
    /* font-weight: 400; */
    line-height: 1.3 !important;
}

.service-box p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 30px;
    font-weight: 300;
}

.check-list {
    list-style: none;
    margin-bottom: 30px;
}

.check-list li {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
    font-size: 1.05rem;
    font-weight: 300;
}

.check-icon {
    width: 26px;
    height: 26px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    font-size: 0.9rem;
    font-weight: bold;
}

.visual-area {
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-top: 30px;
    margin-bottom: 20px;
    position: relative;
}

.visual-area img {
    max-width: 100%;
    height: auto;
    max-height: 280px;
    object-fit: contain;
}

.placeholder-box {
    width: 100%;
    height: 250px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    text-align: center;
}


.action-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: #000;
    padding: 6px 14px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    align-self: flex-start;
    margin-top: auto;
    transition: all 0.3s ease;
}

.action-button:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.action-button::after {
    content: "›";
    font-size: 1.4rem;
    font-weight: bold;
}

@media (max-width: 1200px) {
    .cards-container {
        grid-template-columns: 1fr 1fr 1.3fr;
    }
}

@media (max-width: 900px) {
    .cards-container {
        grid-template-columns: 1fr 1fr;
    }

    .box-pink {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .cards-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .box-pink {
        grid-column: 1;
    }

    .service-box {
        padding: 40px 30px;
		min-height: 500px;
        /* min-height: auto; */
    }

    .service-box h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .service-box {
        padding: 30px 25px;
    }

    .service-box h2 {
        font-size: 1.5rem;
    }

    .service-box p {
        font-size: 1rem;
    }
}

/* .service-card {
    padding: 20px !important;
}

.image-section {
    margin-top: 10px !important;
}

.image-placeholder {
    padding: 15px !important;
    min-height: 120px !important;
}

.features-list li {
    margin-bottom: 6px !important;
} */


/* product -1  */

.structural-section {
    background: linear-gradient(-45deg,
            #f8fafc,
            #eef4ff,
            #f5f3ff,
            #f0fdfa);
    background-size: 400% 400%;
    animation: gradientMove 12s ease infinite;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.section-title {
    font-size: 38px;
    font-weight: 700;
    color: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);

    margin-bottom: 30px;
}

/* .text1 {
    color: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%) !important;

} */

.section-title-small {
    font-size: 20px !important;
}

/* .section-title1 {
    font-size: 20px;
    font-weight: 700;
    color: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%) !important;

    margin-bottom: 30px
} */


.features-list li {
    font-size: 17px;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
    color: var(--bs-secondary-color);
    /* color: black; */
}

.consult-text {
    padding-left: 80px;
}

/* Large Tablets */
@media (max-width: 991px) {
    .consult-text {
        padding-left: 40px;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    .consult-text {
        padding-left: 15px;
        padding-right: 15px;
    }

    .why-heading {
        padding-top: 30px;
    }
}

.checkmark {
    /* color: #d63384; */
    margin-right: 6px;
    color: white;
}

/* .forelips {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
} */

.small-heading {
    letter-spacing: 3px;
    color: #7c3aed;
    font-size: 14px;
    font-weight: 600;
}

.main-heading {
    font-size: 38px;
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 20px;
    color: #111;
}

/* Mobile List Style */
@media (max-width: 767px) {

    .features-list {
        flex-direction: column;
        align-items: center !important;
        gap: 14px !important;
        text-align: center;
    }

    .features-list>div {
        display: flex;
        align-items: center;
    }
}

.section-desc {
    max-width: 700px;
    margin: 0 auto;
    color: #555;
    font-size: 16px;
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    background: #eef2ff;
    border-radius: 50%;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    /* Center horizontally */
    flex-shrink: 0;
}

/* Extra class for left alignment */
.icon-left {
    margin: 0 !important;
}

/* Small Screen */
@media (max-width: 768px) {

    .production-box .d-flex.align-items-center.mb-3 {
        flex-direction: column;
        align-items: flex-start !important;
    }

    .production-box .gap-3 {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 14px !important;
    }

    .production-box h4 {
        font-size: 24px;
        line-height: 1.3;
        margin: 0;
    }

    .production-box .icon-wrapper {
        margin: 0 !important;
    }
}

/* Tablet */
/* @media (max-width: 991px) {

    .icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .icon-wrapper i,
    .icon-wrapper svg {
        font-size: 26px;
        width: 26px;
        height: 26px;
    }
}

@media (max-width: 768px) {
    .d-flex.align-items-center.mb-3 {
        flex-direction: column;
        align-items: flex-start !important;
    }

    .d-flex.align-items-center.mb-3 .icon-wrapper {
        margin-right: 0 !important;
        margin-bottom: 12px;
        margin-left: 0 !important;
        align-self: flex-start !important;
    }

    .icon-wrapper {
        width: 70px;
        height: 70px;
    }

    .icon-wrapper {
        width: 80px !;
        height: 80px;
        border-radius: 20px;
    }

    .icon-wrapper i {
        font-size: 30px !important;
        line-height: 1;
    }


} */



@media (max-width: 480px) {

    .icon-wrapper {
        width: 48px;
        height: 48px;
        margin-left: 45%;

    }

    .icon-wrapper i,
    .icon-wrapper svg {
        margin-top: -25px;
        margin-left: -10px;
        font-size: 30px;
        width: 18px;
        height: 18px;
    }
}


/* Only for very small mobile screens */

/* @media (max-width: 320px) {

    .d-flex.align-items-center.gap-3 {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 14px !important;
    }

    .d-flex.align-items-center.gap-3 h4 {
        font-size: 20px;
        line-height: 1.2;
        width: 100%;
    }

    .icon-wrapper {
        margin: 0 !important;
    }
} */

.features-section {
    background: #f8f9fa;
}

.feature-box {
    background: #fff;
    padding: 30px 20px;
    border-radius: 18px;
    height: 100%;
    /* min-height: 260px; */
    min-height: 292px;
    display: flex;
    align-items: flex-start;

    /* Shadow */
    box-shadow:
        0 4px 10px rgba(0, 0, 0, 0.08),
        0 8px 30px rgba(0, 0, 0, 0.06);

    transition: 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-6px);

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.12),
        0 20px 40px rgba(0, 0, 0, 0.08);
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.feature-icon img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.feature-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
}

.feature-desc {
    font-size: 16px;
    line-height: 26px;
    color: #6c757d;
    margin-bottom: 0;
    font-family: 'Inter', sans-serif;
}

/* Tablet */
@media (max-width: 991px) {
    .feature-box {
        padding: 25px 18px;
    }

    .feature-title {
        font-size: 20px;
    }

    .feature-desc {
        font-size: 15px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .features-section {
        padding: 40px 15px !important;
    }

    .container-fluid {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .feature-box {
        padding: 20px 15px;
        border-radius: 14px;
    }

    .feature-title {
        font-size: 18px;
    }

    .feature-desc {
        font-size: 14px;
        line-height: 22px;
    }

    .feature-icon img {
        width: 45px;
        height: 45px;
    }
}

.row.align-items-start {
    display: flex;
    flex-wrap: wrap;
}

.col-md-3 {
    display: flex;
}

.icon-wrapper img {
    width: 50px;
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    margin-top: 15px;
}

.feature-text {
    color: #666;
    font-size: 17px;
    max-width: 220px;
    margin: 0 auto;
}

.consultation-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top left,
            rgba(11, 130, 173, 0.15),
            transparent 35%),
        radial-gradient(circle at bottom right,
            rgba(99, 102, 241, 0.12),
            transparent 35%),
        linear-gradient(135deg,
            #f8fafc 0%,
            #eef6ff 50%,
            #f5f3ff 100%);
}

.consultation-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(11, 130, 173, 0.25) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: moveDots 20s linear infinite;
    z-index: 0;
}

@keyframes moveDots {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-40px);
    }
}

.consultation-section::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(11, 130, 173, 0.12),
            transparent 70%);
    top: -150px;
    right: -150px;
    animation: floatGlow 8s ease-in-out infinite alternate;
}

@keyframes floatGlow {
    from {
        transform: translateY(0) translateX(0);
    }

    to {
        transform: translateY(30px) translateX(-30px);
    }
}

.why-heading {
    letter-spacing: 2px;
    font-size: 14px;
    font-weight: 600;
    color: #4c57d9;
    margin-bottom: 10px;
}

.consult-title {
    font-size: 40px;
    font-weight: 700;
    color: #111;
    margin-bottom: 25px;
}

.consult-list {
    list-style: none;
    padding-left: 0;
    font-family: 'Poppins', sans-serif;

}

.consult-list li {
    font-size: 17px;
    margin-bottom: 18px;
    display: flex;
    align-items: flex-start;
    color: #333;
    max-width: 500px;
}

.pink-check {
    color: #e6469a;
    font-weight: bold;
    margin-right: 10px;
    font-size: 20px;
    line-height: 1;
}

.consult-img-wrapper {
    position: relative;
    width: 100%;
    max-height: 500px;
    border-radius: 18px;
    overflow: hidden;
}

/* .consult-img-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    pointer-events: none;
} */

.consult-img {
    width: 100%;
    height: auto;
    max-height: 500px;
    border-radius: 18px;
    object-fit: cover;
    display: block;
}

.facility-img {
    animation: fadeZoom 1s ease-out;
    transition: all 0.4s ease;
    cursor: pointer;
}

.facility-img:hover {
    transform: scale(1.05);
}

@keyframes fadeZoom {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.product-grid-section {
    background: #ffffff;
}

.product-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    height: 100%;
    transition: 0.3s ease;
    padding-bottom: 8px;
}

.product-card img {
    width: 500px;
    height: 400px;
    object-fit: cover;
    border-radius: 18px;
    transition: 0.3s ease;
    display: block;
}

.caption {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    text-align: center;
    margin-top: 10px;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.prod_head {
    font-size: 38px !important;
}

/* Large Laptop */
@media (max-width: 1199px) {
    .prod_head {
        font-size: 34px !important;
    }
}

/* Tablet */
@media (max-width: 991px) {
    .prod_head {
        font-size: 30px !important;
        line-height: 1.4;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .prod_head {
        font-size: 24px !important;
        line-height: 1.4;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .prod_head {
        font-size: 24px !important;
        line-height: 1.3;
    }
}

/* .text-muted {
    font-size: 20px;
    font-family: 'Poppins', sans-serif !important;
} */

/* Large Laptop */
@media (max-width: 1199px) {
    .text-muted {
        font-size: 18px;
        margin-bottom: 10px;
    }
}

/* Tablet */
@media (max-width: 991px) {
    .text-muted {
        font-size: 17px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .text-muted {
        font-size: 17px;
        line-height: 1.6;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .text-muted {
        font-size: 17px;
    }
}

.img-fluid {
    border-radius: 35px;
}

.img-wrapper {
    overflow: hidden;
    border-radius: 12px;
}

.zoom-img {
    transition: transform 0.4s ease-in-out;
}

.img-wrapper:hover .zoom-img {
    transform: scale(1.1);
}

/* =========================
   LIGHT PREMIUM HERO BG
========================= */

.hero-banner {
    position: relative;
    overflow: hidden;

    padding: 80px 0;

    background:
        radial-gradient(circle at top left, rgba(59, 130, 246, 0.10), transparent 30%),
        radial-gradient(circle at bottom right, rgba(124, 58, 237, 0.10), transparent 30%),
        linear-gradient(135deg, #f8fafc 0%, #eef2ff 45%, #f5f3ff 100%);

    isolation: isolate;
}

/* Soft Glow */

.hero-banner::before {
    content: '';
    position: absolute;

    width: 450px;
    height: 450px;

    top: -120px;
    left: -120px;

    border-radius: 50%;

    background: rgba(59, 130, 246, 0.18);

    filter: blur(100px);

    animation: glowMove 8s ease-in-out infinite;

    z-index: -1;
}

.hero-banner::after {
    content: '';
    position: absolute;

    width: 400px;
    height: 400px;

    bottom: -120px;
    right: -120px;

    border-radius: 50%;

    background: rgba(168, 85, 247, 0.16);

    filter: blur(100px);

    animation: glowMoveTwo 10s ease-in-out infinite;

    z-index: -1;
}

/* Soft Premium Stars */

.hero-banner .stars {
    position: absolute;
    inset: 0;

    background-image:
        radial-gradient(2px 2px at 40px 60px, rgba(99, 102, 241, 0.35), transparent),
        radial-gradient(2px 2px at 120px 180px, rgba(59, 130, 246, 0.30), transparent),
        radial-gradient(2px 2px at 300px 100px, rgba(168, 85, 247, 0.30), transparent),
        radial-gradient(2px 2px at 500px 220px, rgba(59, 130, 246, 0.28), transparent);

    background-size: 700px 400px;

    animation: starsMove 25s linear infinite;

    opacity: 0.7;

    z-index: -1;
}

/* =========================
   ANIMATION
========================= */

@keyframes glowMove {

    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(30px, 20px);
    }

    100% {
        transform: translate(0, 0);
    }
}

@keyframes glowMoveTwo {

    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-20px, -20px);
    }

    100% {
        transform: translate(0, 0);
    }
}

@keyframes starsMove {

    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-120px);
    }
}

.small {
    letter-spacing: 1px;
    color: #7c3aed;
}

@media (max-width: 768px) {
    .product-btn {
        margin-bottom: 30px;
    }
}

/* Custom Styles */
.btn-category {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    padding: 12px 24px;
    font-weight: 500;
    color: #555;
    transition: all 0.3s ease;
    min-width: 160px;
}

.btn-category:hover,
.btn-category.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.2);
}

.product-display-container {
    animation: fadeIn 0.5s ease;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.product-main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-main-image:hover {
    transform: scale(1.02);
}

.product-info h1 {
    color: #2c3e50;
    font-size: 2.5rem;
}

.product-info .lead {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* .cards {
    background: #fff;
    border: none;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
}

.cards:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
} */


/* Gallery Thumbnails */
.gallery-item {
    cursor: pointer;
    overflow: hidden;
    border-radius: 10px;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.gallery-item:hover,
.gallery-item.active {
    border-color: #667eea;
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    /* height: 120px; */
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .btn-category {
        min-width: 140px;
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .product-info h1 {
        font-size: 1.8rem;
    }

    .product-main-image {
        height: 300px;
    }
}

.gradient-text-a {
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}
.pro-card img{
    margin-bottom: 40px;
}