*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    overflow-x:hidden;
    background:#fff;
}

/* ================= NAVBAR ================= */

.navbar{
    position: relative;
    top:0;
    left:0;
    width:100%;
    z-index:10000;
    padding:16px 0;
    background:rgba(58,0,145,0.92);
    backdrop-filter:blur(12px);
    transition:0.3s;
}

.navbar-collapse{
    position: relative;
    z-index: 10001;
}
.navbar{

    border-bottom:1px solid rgba(255,255,255,0.08);
}

.navbar{

    padding:14px 0;
}

.navbar-brand{
    background:#ffffff;
    padding:6px 10px;
    border-radius:10px;
    display:inline-block;
    margin-right:12px;
}

.navbar-brand img{
    height:68px; /* 20% larger than 56px */
    width:auto;
    max-width:200px;
    display:block;
    object-fit:contain;
    background:transparent;
    padding:4px;
    border-radius:8px;
    filter:drop-shadow(0 4px 10px rgba(0,0,0,0.12));
}

.nav-link{
    color:#fff !important;
    margin:0 14px;
    font-weight:600;
    font-size:17px;
    transition:0.3s;
}

.nav-link:hover{
    color:#ff7b2c !important;
}

.nav-link.active{
    position:relative;
    color:#ff7b2c !important;
}

.nav-link.active::after{
    content:'';
    position:absolute;
    left:0;
    right:0;
    bottom:-8px;
    height:3px;
    background:#ff7b2c;
    border-radius:3px;
}

.navbar-toggler{
    border:1px solid rgba(255,255,255,0.35);
    border-radius:14px;
    background:rgba(255,255,255,0.16);
    transition:0.3s;
}

.navbar-toggler:hover{
    background:rgba(255,255,255,0.24);
}

.navbar-toggler:focus{
    box-shadow:none;
}

.navbar-toggler-icon{
    background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.contact-btn{
    background:#ff7b2c;
    color:#fff;
    text-decoration:none;
    padding:14px 32px;
    border-radius:50px;
    font-weight:600;
    transition:0.3s;
}

.contact-btn:hover{
    background:#ff9957;
    color:#fff;
}

.navbar-toggler{
    border:1px solid rgba(255,255,255,0.35);
    border-radius:12px;
    background:rgba(255,255,255,0.12);
    transition:0.3s;
}

.navbar-toggler:hover{
    background:rgba(255,255,255,0.2);
}

.navbar-toggler:focus{
    box-shadow:none;
}

.navbar-toggler-icon{
    background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-nav .contact-btn{
    margin-left:0;
}

/* ================= HERO ================= */

.hero-section{

    position:relative;

    overflow:hidden;

    min-height:calc(100vh - 90px);

    padding:70px 0 40px;

    background:
    linear-gradient(
        90deg,
        #2d006e 0%,
        #5e17eb 45%,
        rgba(94,23,235,0.82) 58%,
        rgba(255,255,255,0.12) 100%
    ),

    url('assets/images/hero-bg.jpeg');

    background-size:cover;

    background-position:center center;

    background-blend-mode:soft-light;
}

.hero-section::before{

    content:'';

    position:absolute;

    width:500px;
    height:500px;

    background:rgba(255,123,44,0.18);

    border-radius:50%;

    top:-150px;
    right:-100px;

    filter:blur(90px);
}

/* Prevent Owl Carousel from hiding slides during refresh/animation which
   can cause the hero area to appear blank briefly on some browsers. */
.owl-carousel.owl-refresh .owl-item,
.owl-carousel.owl-loading,
.owl-carousel.owl-hidden {
    visibility: visible !important;
    opacity: 1 !important;
}

.owl-carousel .owl-nav button{
    width:50px;
    height:50px;
    border-radius:50%;
    background:rgba(255,255,255,0.92);
    border:none;
    box-shadow:0 12px 30px rgba(0,0,0,0.16);
    color:#2d006e;
    font-size:20px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.owl-carousel .owl-nav button:hover{
    background:#ff7b2c;
    color:#fff;
}

.owl-carousel .owl-nav button span{
    display:none;
}

.owl-carousel .owl-prev{
    left:-65px;
}

.owl-carousel .owl-next{
    right:-65px;
}

.owl-carousel .owl-dots{
    margin-top:18px;
}

@media(max-width:576px){
    .owl-carousel .owl-nav button{
        width:44px;
        height:44px;
    }

    .owl-carousel .owl-prev{
        left:-35px;
    }

    .owl-carousel .owl-next{
        right:-35px;
    }
}

.owl-carousel .owl-dot span{
    width:10px;
    height:10px;
    border-radius:50%;
    background:#ccc;
    display:block;
}

.owl-carousel .owl-dot.active span{
    background:#ff7b2c;
}

/* Ensure fade/animated classes used by Owl/Animate.css do not fully hide
   the slide content — some browsers may render a brief blank during the
   animation period. We neutralize those animations for the hero slider. */
.hero-slider .animated,
.hero-slider .owl-animated-out,
.hero-slider .fadeOut,
.hero-slider .owl-animated-in {
    animation-name: none !important;
    -webkit-animation-name: none !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.hero-slide{
    min-height:90vh;
    display:flex;
    align-items:center;
    padding-top:90px;
    padding-bottom:70px;
}

.hero-content{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:4rem;
     min-height:auto;
}

.hero-text{
    flex:1;
}

.hero-text{
    flex:1;
    max-width:620px;
    transform:translateY(-70px);
}
.hero-text h1{
    color:#fff;
    font-size:clamp(52px,5vw,82px);
    line-height:1.05;
    font-weight:800;
    margin-bottom:25px;
}

.hero-text h1 span{
    color:#ff7b2c;
    display:block;
}

.hero-text p{
    color:rgba(255,255,255,0.9);
    font-size:24px;
    margin-bottom:25px;
    max-width:650px;
}

.hero-buttons{
    display:flex;
    gap:20px;
}


.hero-image{
    position:relative;
    z-index:10;
}

.btn-orange{
    background:#ff7b2c;
    color:#fff;
    padding:15px 34px;
    border-radius:14px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.btn-orange:hover{
    background:#ff9957;
    color:#fff;
    transform:translateY(-4px);
}

.btn-outline-custom{
    border:2px solid #fff;
    color:#fff;
    padding:18px 38px;
    border-radius:14px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.btn-outline-custom:hover{
    background:#fff;
    color:#5a00cc;
}
.hero-image{

    position:relative;
}

.hero-image::before{

    content:'';

    position:absolute;

    width:480px;
    height:480px;

    background:rgba(255,255,255,0.08);

    backdrop-filter:blur(15px);

    border:1px solid rgba(255,255,255,0.12);

    border-radius:40px;

    top:50%;
    left:50%;

    transform:translate(-50%,-50%);
}
.hero-image{
    flex:1;
    display:flex;
    justify-content:center;
    align-items:center;
}

.hero-image img{
    width:100%;
    max-width:620px;
    height:auto;
    object-fit:contain;
    filter:drop-shadow(0 25px 40px rgba(0,0,0,.35));
    animation:float 4s ease-in-out infinite;
}
@keyframes float{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-18px);
    }

    100%{
        transform:translateY(0px);
    }
}

.founder-info{
    max-width:380px;
    margin:25px auto 0;
    padding:22px 25px;
    background:#fff;
    border-radius:20px;
    text-align:center;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    border:1px solid rgba(106,0,244,.08);
    transition:.35s ease;
}

.founder-info:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 45px rgba(106,0,244,.15);
}

.founder-info h3{
    margin:0;
    font-size:34px;
    font-weight:800;
    line-height:1.2;
    background:linear-gradient(90deg,#4c1dff,#7b2cff,#9d4edd);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text;
    color:transparent;
}

.founder-info p{
    margin-top:10px;
    margin-bottom:0;
    font-size:16px;
    font-weight:600;
    color:#666;
    letter-spacing:.5px;
}
/* ================= OWL DOTS ================= */

.owl-dots{
    position:absolute;
    bottom:35px;
    left:50%;
    transform:translateX(-50%);
}

.owl-dot span{
    width:12px !important;
    height:12px !important;
    background:#fff !important;
    opacity:0.5;
}

.owl-dot.active span{
    background:#ff7b2c !important;
    opacity:1;
}

/* ================= SECTION TITLE ================= */

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title h2{
    font-size:55px;
    font-weight:800;
    color:#fff;
}

.section-title p{
    color:#fff;
    margin-top:14px;
    font-size:18px;
}

.dark-title h2,
.dark-title p{
    color:#222;
}

/* ================= SPECIALITY ================= */
/*==========================================
        OUR CUSTOMERS SECTION
==========================================*/

.speciality-section{
    padding:100px 0;
    background:#fff;
}

.speciality-section .section-title{
    text-align:center;
    margin-bottom:60px;
}

.speciality-section .section-title h2{
    font-size:58px;
    font-weight:800;
    color:#222;
    margin-bottom:10px;
}

.speciality-section .section-title p{
    font-size:22px;
    color:#666;
}

/* Card */

.customer-card{
    background:#fff;
    border-radius:30px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.4s ease;
    cursor:pointer;
    height:100%;
}

.customer-card img{
    width:100%;
    height:auto;
    display:block;
    transition:.5s ease;
    border-radius:30px;
}

.customer-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 60px rgba(93,0,214,.15);
}

.customer-card:hover img{
    transform:scale(1.04);
}

/* Equal card height */

.speciality-section .row{
    align-items:stretch;
}

/* Responsive */

@media(max-width:1200px){

.speciality-section .section-title h2{
    font-size:50px;
}

}

@media(max-width:992px){

.speciality-section{
    padding:80px 0;
}

.speciality-section .section-title{
    margin-bottom:45px;
}

.speciality-section .section-title h2{
    font-size:42px;
}

.speciality-section .section-title p{
    font-size:18px;
}

.customer-card{
    max-width:420px;
    margin:auto;
}

}

@media(max-width:768px){

.speciality-section{
    padding:70px 0;
}

.speciality-section .section-title h2{
    font-size:36px;
}

.customer-card{
    border-radius:24px;
}

.customer-card img{
    border-radius:24px;
}

}

@media(max-width:576px){

.speciality-section .section-title h2{
    font-size:30px;
}

.speciality-section .section-title p{
    font-size:16px;
}

.customer-card{
    max-width:340px;
}

}
/* ================= PRODUCTS ================= */




.product-section{
    background:linear-gradient(135deg,#4b00a7,#7a1fff);
    padding:110px 0;
}

.product-card{
    border-radius:22px;
    overflow:hidden;
    position:relative;
    transition:0.3s ease;
}

.product-card img{
    width:100%;
    height:320px;
    object-fit:cover;
    transition:0.5s;
}

.product-card:hover img{
    transform:scale(1.1);
}

.product-overlay{
    position:absolute;
    bottom:0;
    width:100%;
    background:rgba(0,0,0,0.65);
    color:#fff;
    padding:20px;
    font-weight:600;
    text-align:center;
    font-size:20px;
}

.product-link{
    text-decoration:none;
    color:inherit;
    display:block;
}


.product-card:hover{
    transform:translateY(-8px);
}

/* ================= WHY ================= */

.why-section{
    padding:110px 0;
    background:#f8f9fc;
}

.why-card{
    background:#fff;
    padding:50px 35px;
    border-radius:22px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:0.3s;
    height:100%;
}

.why-card:hover{
    transform:translateY(-10px);
}

.why-card i{
    font-size:60px;
    color:#ff7b2c;
    margin-bottom:20px;
}


.catalog-card{
    background:#fff;
    border-radius:20px;
    padding:15px;
    text-align:center;
}

.catalog-img{
    width:100%;
    height:auto;
    object-fit:contain;
    display:block;
}
/* ================= CTA ================= */

.cta-section{
    background:linear-gradient(135deg,#3a0091,#8b2cff);
    padding:110px 0;
    text-align:center;
}

.cta-section h2{
    color:#fff;
    font-size:55px;
    font-weight:800;
    margin-bottom:20px;
}

.cta-section h2 span{
    color:#ff7b2c;
}

.cta-section p{
    color:#fff;
    margin-bottom:40px;
    font-size:20px;
}

/* ================= FOOTER ================= */

.footer{
    background:#21005a;
    color:#fff;
    padding:90px 0 30px;
}

.footer-logo{
    height:80px;
    background:#fff;
    padding:10px;
    border-radius:12px;
    margin-bottom:20px;
}

.footer h5{
    margin-bottom:20px;
    font-weight:700;
}

.footer-links{
    list-style:none;
    padding:0;
}

.footer-links li{
    margin-bottom:12px;
}

.footer-links a{
    color:#fff;
    text-decoration:none;
}

.social-icons{
    margin-top:20px;
}

.social-icons a{
    width:42px;
    height:42px;
    background:#ff7b2c;
    color:#fff;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    margin-right:10px;
    text-decoration:none;
}

.footer-bottom{
    text-align:center;
    margin-top:50px;
    border-top:1px solid rgba(255,255,255,0.2);
    padding-top:20px;
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){

    .hero-content{
        flex-direction:column;
        text-align:center;
    }

    .hero-text h1{
         font-size:clamp(48px,4.8vw,78px);
    }

    .hero-text p{
      font-size:clamp(18px,1.5vw,24px);
        margin:auto auto 35px;
    }

    .hero-buttons{
        justify-content:center;
    }

    .hero-image{
        margin-top:50px;
    }

    .hero-image img{
        max-width:420px;
    }
}

@media(max-width:576px){

    .navbar-brand img{
        height:60px;
    }

    .navbar-toggler{
        margin-left:auto;
    }

    .navbar-nav{
        gap:12px;
    }

    .navbar-nav .nav-link{
        padding:0.75rem 1rem;
        border-radius:14px;
        width:100%;
        text-align:left;
        color:#fff !important;
    }

    .navbar-nav .nav-link:hover{
        background:rgba(255,255,255,0.08);
        color:#fff !important;
    }

    .navbar-nav .nav-link.active{
        background:rgba(255,123,44,0.16);
        color:#ff7b2c !important;
    }

    .navbar-nav .nav-link.active::after{
        display:none;
    }

    .navbar-nav .contact-btn{
        width:100%;
        justify-content:center;
        padding:14px 0;
        display:inline-flex;
    }

    .navbar-collapse{
        background:rgba(58,0,145,0.96);
        padding:18px 0 20px;
        border-radius:24px;
        box-shadow:0 20px 35px rgba(0,0,0,0.18);
    }

    .navbar-nav .nav-item{
        width:100%;
    }

    .hero-section{
        padding:70px 0 50px;
    }

    .hero-slide{
        min-height:auto;
        padding-top:80px;
        padding-bottom:40px;
    }

    .navbar-brand{
        margin-bottom:0;
    }

    .navbar{
        padding:14px 0 12px;
    }

    .hero-text h1{
        font-size:38px;
    }

    .hero-text p{
        font-size:16px;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .btn-orange,
    .btn-outline-custom{
        width:100%;
        text-align:center;
    }

    .hero-image img{
        max-width:260px;
    }

    .hero-image{
        display:none;
    }

    .hero-section::before{
        width:320px;
        height:320px;
        top:-110px;
        right:-80px;
    }

    .owl-carousel .owl-nav button{
        width:44px;
        height:44px;
    }

    .owl-carousel .owl-prev{
        left:-35px;
    }

    .owl-carousel .owl-next{
        right:-35px;
    }

    .section-title h2,
    .cta-section h2{
        font-size:36px;
    }

    .breadcrumb-list h2{
        font-size:32px;
    }

    .breadcrumb-list .links{
        gap:8px;
    }

    .first-section .about-content{
        padding:40px 24px;
    }

    .heading-ju{
        font-size:28px;
    }

    .first-section p{
        text-align:justify;
    }
}

/* ================= ABOUT HERO ================= */

.about-hero{

    position:relative;

    padding:180px 0 150px;

    overflow:hidden;

    background:
    linear-gradient(
        135deg,
        rgba(45,0,110,0.82) 0%,
        rgba(106,13,255,0.72) 45%,
        rgba(255,123,44,0.28) 100%
    ),
    url('assets/images/about-banner.png');

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;
}

.about-hero::before{

    content:'';

    position:absolute;

    width:600px;
    height:600px;

    background:rgba(255,123,44,0.18);

    border-radius:50%;

    top:-180px;
    right:-100px;

    filter:blur(90px);
}


.about-hero::after{

    content:'';

    position:absolute;

    width:400px;
    height:400px;

    background:rgba(255,255,255,0.08);

    border-radius:50%;

    bottom:-120px;
    left:-120px;

    filter:blur(70px);
}

.about-hero-content{

    position:relative;

    z-index:2;

    text-align:center;
}

.about-hero-content h1{

    color:white;

    font-size:72px;

    font-weight:800;

    margin-bottom:25px;

    text-shadow:0 5px 20px rgba(0,0,0,0.25);
}

.about-hero-content p{

    color:rgba(255,255,255,0.92);

    font-size:24px;

    line-height:1.7;

    max-width:900px;

    margin:auto;
}
/* ================= ABOUT MODERN ================= */

.about-modern{

    padding:110px 0;

    background:#f8f9fc;
}

.about-image img{
    width:auto;
    max-width:100%;
    max-height:730px;
    height:auto;
    display:block;
    margin:auto;
    border-radius:30px;
    object-fit:contain;
    box-shadow:0 25px 45px rgba(0,0,0,.12);
}
.about-card-modern{

    background:white;

    padding:55px;

    border-radius:30px;

    box-shadow:0 20px 40px rgba(0,0,0,0.08);
}

.about-card-modern h2{

    font-size:52px;

    font-weight:800;

    margin-bottom:25px;

    color:#1f1f1f;
}

.about-card-modern h2 span{

    color:#6d00ff;
}

.about-card-modern p{

    font-size:18px;

    line-height:1.9;

    color:#555;

    margin-bottom:22px;
}

.about-highlight-box{

    background:linear-gradient(135deg,#5d00d6,#8b2cff);

    padding:30px;

    border-radius:22px;

    margin-top:35px;

    margin-bottom:35px;

    color:white;
}

.about-highlight-box h4{

    font-size:28px;

    font-weight:700;

    margin-bottom:10px;
}

.about-highlight-box p{

    color:white;

    margin:0;

    font-size:20px;
}

/* ================= VISION GRID ================= */

.vision-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:25px;

    margin-bottom:35px;
}

.vision-card{

    background:#f8f5ff;

    padding:30px;

    border-radius:22px;

    transition:0.3s;
}

.vision-card:hover{

    transform:translateY(-8px);
}

.vision-card i{

    width:70px;

    height:70px;

    background:#6d00ff;

    color:white;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    font-size:28px;

    margin-bottom:20px;
}

.vision-card h5{

    font-size:24px;

    font-weight:700;

    margin-bottom:12px;
}

.vision-card p{

    margin:0;

    font-size:16px;
}

/* ================= PROMISE ================= */

.promise-box{

    background:#fff3ea;

    border-left:5px solid #ff7b2c;

    padding:22px 25px;

    border-radius:18px;

    display:flex;

    align-items:center;

    gap:18px;
}

.promise-box i{

    color:#ff7b2c;

    font-size:34px;
}

.promise-box span{

    font-size:22px;

    font-weight:700;

    color:#222;
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){

    .about-hero-content h1{

        font-size:52px;
    }

    .about-card-modern{

        padding:40px;
    }

    .vision-grid{

        grid-template-columns:1fr;
    }
}

@media(max-width:576px){

    .about-hero{

        padding:150px 0 90px;
    }

    .about-hero-content h1{

        font-size:40px;
    }

    .about-hero-content p{

        font-size:18px;
    }

    .about-card-modern{

        padding:30px 25px;
    }

    .about-card-modern h2{

        font-size:36px;
    }

    .promise-box{

        flex-direction:column;

        text-align:center;
    }
}

.about-section{

    padding:120px 0;
}


@keyframes floatDoctor{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-15px);
    }

    100%{
        transform:translateY(0px);
    }
}

.about-content{

    background:white;

    padding:60px;

    border-radius:30px;

    box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

/* Join Us Page */
.breadcrumb,
.breadcrumb-section{
    padding:80px 0;
    background:#f4f1ff;
    text-align:center;
}

.breadcrumb .container,
.breadcrumb-section .container{
    position:relative;
}

.breadcrumb-list{
    display:inline-flex;
    flex-direction:column;
    gap:18px;
    align-items:center;
    justify-content:center;
}

.breadcrumb-list h2{
    font-size:42px;
    font-weight:800;
    color:#2d006e;
    margin:0;
}

.breadcrumb-list .links{
    display:flex;
    align-items:center;
    gap:10px;
    flex-wrap:wrap;
    color:#555;
    font-size:16px;
}

.breadcrumb-list .links a{
    color:#6d00ff;
    text-decoration:none;
    font-weight:600;
}

.breadcrumb-list .links a.active{
    color:#2d006e;
}

.first-section{
    padding:80px 0 100px;
    background:#fbf8ff;
}

.first-section .about-content{
    max-width:1040px;
    margin:0 auto;
    padding:60px 70px;
}

.heading-ju{
    font-size:32px;
    line-height:1.2;
    color:#1f034d;
    margin-bottom:35px;
}

.heading-ju span.purple{
    color:#6d00ff;
}

.first-section p{
    color:#444;
    font-size:18px;
    line-height:1.9;
    margin-bottom:24px;
}

.anchor-hr{
    display:block;
    background:#f5edff;
    padding:24px 28px;
    margin:30px 0 40px;
    border:1px solid rgba(109,0,255,0.12);
    border-radius:24px;
    color:#2d006e;
    font-weight:600;
    line-height:1.8;
    max-width:900px;
    word-break:break-word;
}

.anchor-hr a{
    color:#6d00ff;
    text-decoration:underline;
    font-weight:700;
}

.first-section .about-content{
    max-width:980px;
    margin:0 auto;
}

.heading-ju{
    font-size:32px;
    max-width:920px;
}

.first-section p{
    font-size:18px;
    color:#334;
}

.first-section h2{
    font-size:34px;
    color:#2d006e;
    margin-top:40px;
    margin-bottom:24px;
}

.first-section .fw-bold{
    color:#1f034d;
}

.first-section p span{
    color:#2d006e;
}

@media (max-width: 991px) {
    .breadcrumb,
    .breadcrumb-section{
        padding:60px 0;
    }

    .first-section .about-content{
        padding:40px 28px;
    }

    .heading-ju{
        font-size:28px;
    }
}

.chatnow{

    position:fixed;

    bottom:25px;

    right:25px;

    z-index:9999;
}

.chatnow a{

    display:flex;

    align-items:center;

    gap:10px;

    background:white;

    padding:10px 18px;

    border-radius:50px;

    text-decoration:none;

    box-shadow:0 10px 25px rgba(0,0,0,0.15);

    transition:0.3s;
}

.chatnow a:hover{

    transform:translateY(-5px);
}

.chatnow img{

    width:50px;

    height:50px;
}

.chatnow p{

    margin:0;

    color:#333;

    font-weight:600;

    font-size:18px;
}
/* for footer at bottom */
html,
body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.products {
    flex: 1;
}

/* ================= CONTACT PAGE ================= */

.contact-page{
    flex:1;
    padding:80px 0;
    background:#f8f9fc;
}

.breadcrumb-section{
    padding:70px 0;
    background:#f8f9fc;
    text-align:center;
}

.breadcrumb-section h1{
    font-size:50px;
    font-weight:800;
    color:#2d006e;
}

.breadcrumb-section p{
    margin-top:10px;
    color:#777;
}

.contact-info-card,
.contact-form-card{
    background:white;
    padding:40px;
    border-radius:25px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    height:100%;
}

.contact-info-card h2,
.contact-form-card h2{
    font-size:34px;
    margin-bottom:30px;
    color:#2d006e;
    font-weight:700;
}

.info-item{
    display:flex;
    gap:15px;
    margin-bottom:25px;
    align-items:flex-start;
}

.info-item i{
    color:#ff7b2c;
    font-size:24px;
    margin-top:5px;
}

.info-item span{
    font-size:17px;
    color:#444;
    line-height:1.7;
}

.contact-form-card .form-control{
    height:55px;
    border-radius:12px;
    border:1px solid #ddd;
}

.contact-form-card textarea.form-control{
    height:auto;
}

.contact-form-card .form-control:focus{
    box-shadow:none;
    border-color:#6d00ff;
}

.contact-submit-btn{
    background:#ff7b2c;
    border:none;
    color:white;
    padding:15px 35px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.contact-submit-btn:hover{
    background:#6d00ff;
}

.map-section{
    margin-top:60px;
}

.map-section iframe{
    width:100%;
    height:450px;
    border:none;
    border-radius:25px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

/* Sticky Footer */

html,
body{
    height:100%;
}

body{
    display:flex;
    flex-direction:column;
    min-height:100vh;
}

.contact-page{
    flex:1;
}

/* Mobile */

@media(max-width:768px){

    .breadcrumb-section h1{
        font-size:36px;
    }

    .contact-info-card,
    .contact-form-card{
        padding:25px;
    }

    .map-section iframe{
        height:300px;
    }
}
