   :root {
    --primary-color: #3354A7;
    --text-color-dark: #333333;
    --text-color-light: #404040;
    --light-color:#0C96DB;

}
body{
    font-family: 'Prompt', sans-serif;
    
} .container-fluid {
    width: 95% !important;
}section{
            padding: 60px 0;
            overflow: hidden;
        }
        h1, h2, h3, h4, h5{
            font-family: 'El Messiri', sans-serif;
            /* color: var(--text-color-dark); */
        }
        a{
            text-decoration: none;
        }



  /* Navbar Styling */
        .navbar {
            background-color: #000524;
            padding: 5px 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .navbar-brand {
    color: #fff !important;
    font-weight: 800;
    font-size: 1.8rem;
    /* width: 100%; */
    background: #fff;
    border-radius: 50%;
    padding: 0;
    margin: 0;
}

        .navbar-nav .nav-link {
            color: #fff !important;
            font-weight: 500;
            margin-left: 15px;
            transition: color 0.3s ease;
        }

        .navbar-nav .nav-link:hover {
            color: var(--light-color) !important;
        }

        .navbar-toggler {
            border-color: rgba(255, 255, 255, 0.5) !important;
        }

        .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='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
        }

.dropdown-item {
    display: block;
    width: 100%;
    padding: .25rem 1rem;
    clear: both;
    font-weight: 400;
    color: #ffffff;
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border-bottom: 1px solid #fff;
}
.navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
    background-color: var(--light-color);
}      
.banner-section{
            background: url(/images/nyx-banner.webp), rgb(0 0 0 / 31%);
            background-blend-mode: multiply;
            height: 100vh;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            display: flex;
            align-items: center;
        }
        .banner-content{
            max-width: 800px;
            margin: auto;
            color: #fff;   
     }
     .banner-content h1{
        font-size: 55px;
     }
     .banner-content p{
        font-size: 18px;
        margin-bottom: 40px;
        margin-top: 15px;
     }
     .banner-btn{
        background-color: #0c96db;
        padding: 10px 20px;
        color: #fff;
        border: 2px solid #fff;
        transition: all 0.3s ease;
     }
.banner-btn:hover {
    border: 2px solid #ffffff;
    background-color: #13203a;
    color: #fff;
}

button.btn.submitBtn {
    background: #4392d5;
    color: #fff;
}

     /* About Us Section */
.about-us {
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: top;
}

.about-us .about-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
}

.about-us .stat-card {
    position: absolute;
    background-color: #fff;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.about-us .stat-card-1 {
    background-color: #fff;
    top: 15%;
    left: -20px;
    transform: translateY(-50%);
}
.stat-card-1 .circle {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: var(--light-color);
    top: -26px;
    left: -25px;
    z-index: -1;
}

.about-us .stat-card-2 {
    background-color: #fff;
    bottom: 10%;
    right: -20px;
    padding: 1rem 1.5rem;
    background-color: white;
    border: 1px solid var(--border-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}
.stat-card-2 .circle {
    position: absolute;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background-color: var(--light-color);
    bottom: -20px;
    right: -25px;
}
.about-us .stat-card p {
    margin: 0;
    font-weight: 500;
    
}

.about-us .stat-card .stat-year {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #A20B11;
    text-align: center;
}

.about-us .stat-card .stat-label {
    font-size: 0.8rem;
    color: #A20B11;
}

.about-us .stat-card .stat-rating {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    position: relative;
    z-index: 55;
}

.about-us .stat-icon {
    width: 40px;
    height: 40px;
    margin-right: 15px;
}

.about-us .stat-icon-small {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}

.about-us .decorative-shape-1 {
    position: absolute;
    background-color: var(--secondary-color);
    opacity: 0.5;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    bottom: -20px;
    left: 20px;
    z-index: -1;
}

.about-us .decorative-shape-2 {
    position: absolute;
    background-color: var(--card-background-1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: -1;
}
.about-content{
    padding-left: 20px;
}

.about-content .small-heading {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.about-content .small-line {
    display: inline-block;
    width: 20px;
    height: 2px;
    background-color: var(--primary-color);
    border-radius: 10px;
}

.about-content .main-heading {
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-color-dark);
}

.about-content .body-text {
    color: var(--text-color-light);
    line-height: 1.6;
    font-size: 17px;
}

.about-content .feature-item {
    padding-bottom: 15px;
    border-bottom: 1px solid var(--line-color);
}

.about-content .feature-item:last-child {
    border-bottom: none;
}

.about-content .feature-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.about-content .feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.about-content .feature-description {
    color: var(--text-color-light);
    font-size: 0.9rem;
    margin: 0;
}

.about-content .checklist {
    padding-left: 0;
    margin-top: 20px;
}

.about-content .checklist li {
    margin-bottom: 8px;
    color: var(--text-color-light);
}

.about-content .learn-more-btn {
    background-color: var(--primary-color);
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    /* font-weight: 600; */
    color: #fff;
    transition: background-color 0.3s ease;
}

.about-content .learn-more-btn:hover {
    background-color: #0A7A6D;
}

/* Keyframe for continuous, energetic rotation */
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* The main button container */
        .btn-rotating-border {
            position: relative;
            z-index: 1;
            overflow: hidden;
            border: none;
            color: white;
            padding: 2px; 
            background: transparent;
            max-width: 320px;
            display: block;
            cursor: pointer;
            border-radius: 0.75rem; 
            transition: transform 0.2s ease-out;
            /* shadow-2xl equivalent */
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5); 
        }

        .btn-rotating-border:hover {
            transform: scale(1.05);
        }

        .btn-rotating-border::before {
            content: '';
            position: absolute;
            top: -200%;
            left: -200%;
            width: 500%;
            height: 500%;
            
            background: conic-gradient(
                from 180deg at 50% 50%, 
    var(--primary-color) 0%, 
 var(--primary-color) 5%,        
    var(--light-color) 15%,
    var(--text-color-dark) 20%,      
    var(--light-color) 30%,
     var(--primary-color) 35%,        
    var(--light-color) 45%,
     var(--primary-color) 55%,
    var(--light-color) 65%,
    var(--light-color) 70%,
    var(--light-color) 80%,
    var(--primary-color) 85%,
    var(--light-color) 100%
            );

            z-index: -2; 
            animation: spin 4s linear infinite; /* Faster spin for an energetic, 'glitchy' feel */
        }

        /* ::after: The inner element acting as the main background and holding the text */
        .btn-rotating-border::after {
            content: attr(data-text); 
            position: relative;
            display: block;
            width: 100%;
            height: 100%;
            /* Equivalent to p-3 py-4, etc. */
            padding: 12px 24px; 
            background: #A20B11; 
            border-radius: 0.65rem; 
            transition: background 0.4s ease, color 0.1s ease, box-shadow 0.4s ease, text-shadow 0.1s ease;
            line-height: 1; 
            text-align: center;
        }

        .btn-rotating-border:hover::after {
            /* background: rgba(17, 24, 39, 0.7);  */
            background: #fff;
            color: var(--primary-color);
        }



        /* Services Section */
.services {
    background-color: #000524;
    color: white;

}

.services .small-heading {
    color: var(--light-color);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    max-width: 800px;
    margin: auto;
}
.services .main-heading {
    font-weight: 800;
    line-height: 1.2;
    color: white;
    margin: auto;
    max-width: 750px;
}
.services .service-card-dark i, h3, p{
    position: relative;
}
.services .service-card-dark {
    background-color: #ffffff21;
    padding: 40px;
    border-radius: 12px;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s;
}

.services .service-card-dark.gradient {
    background: url(/images/why-bg.webp),rgba(0, 0, 0, 0.5);
    background-blend-mode: multiply;
    background-position: center;
    background-size: cover;
}
.service-card-dark.gradient::after {
    filter: grayscale(100%) brightness(100);
}
.services .service-icon-dark {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 25px;
    border-radius: 50%;
    padding: 10px;
    display: flex;
    background-color: var(--light-color);
    align-items: center;
    justify-content: center;
    font-size: 30px;
    transition: all 0.3s;
}

.services .service-card-dark.gradient .service-icon-dark {
    background-color: white;
    color: var(--primary-color);
}

.service-title-dark {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
}

.service-description-dark {
    color: #fff;
    font-size: 0.9rem;
    line-height: 1.6;
}
.service-card-dark::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0px;
    right: 0;
    /* background-color: #0d9d89; */
    background: url(/images/why-bg.webp),rgba(0, 0, 0, 0.5);
    background-blend-mode: multiply;
    background-position: center;
    background-size: cover;
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    transform-origin: top right;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    visibility:visible;
}
.service-card-dark:hover::before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    transform-origin: bottom center;
}
.service-card-dark:hover::after {
    filter: grayscale(100%) brightness(300%);
}

.service-card-dark::after {
    position: absolute;
    bottom: 6px;
    right: 6px;
    content: "";
    background-image: url(/images/arrow-shape.png);
    filter: brightness(0) saturate(100%) invert(45%) sepia(88%) saturate(3654%) hue-rotate(182deg) brightness(96%) contrast(101%);
    background-repeat: no-repeat;
    background-size: cover;
    width: 21px;
    height: 18px;
    transition: all 0.4s ease-in-out;
}
.services .service-card-dark:hover .service-icon-dark {
    background-color: white;
    color: var(--primary-color);
}

/* products section */
.pharma-title {
            text-align: center;
            font-weight: 500;
            margin-bottom: 50px;
            color: var(--header-color);
        }
        .pharma-card {
            background-color: #e7f0ff;
            border: none;
            border-radius: 1.5rem;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            text-align: center;
            padding: 30px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .pharma-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        }
        .pharma-card-image {
            width: 100%;
            height: 200px;
            overflow: hidden;
            border-radius: 1.5rem;
            margin-bottom: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: var(--icon-circle-bg);
        }
        .pharma-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 1.5rem;
        }
        .pharma-card-title {
            font-size: 1.25rem;
            color: var(--text-color-dark);
            font-weight: 500;
            margin-bottom: 20px;
        }
        .pharma-btn-see-all {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--green-btn-bg);
            color: #fff;
            text-decoration: none;
            border-radius: 1.5rem;
            font-weight: bold;
            transition: background-color 0.3s ease, transform 0.2s ease;
        }
        .pharma-btn-see-all:hover {
            background-color: var(--green-btn-hover-bg);
            transform: translateY(-2px);
        }

        /* Owl Carousel Customizations */
        .pharma-carousel .owl-nav button.owl-prev,
        .pharma-carousel .owl-nav button.owl-next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: var(--primary-color) !important;
            color: #fff !important;
            font-size: 2rem;
            height: 50px;
            width: 50px;
            border-radius: 50% !important;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: background 0.3s ease;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }
        .pharma-carousel .owl-nav button.owl-prev {
            left: -25px;
        }
        .pharma-carousel .owl-nav button.owl-next {
            right: -25px;
        }
        .pharma-carousel .owl-nav button.owl-prev:hover,
        .pharma-carousel .owl-nav button.owl-next:hover {
            background: var(--light-color) !important;
        }
        .pharma-carousel .owl-nav .owl-prev:before {
            content: "‹";
        }
        .pharma-carousel .owl-nav .owl-next:before {
            content: "›";
        }
        .pharma-carousel .owl-nav {
            margin-top: 0;
        }

        /* Responsive adjustments for arrows */
        @media (max-width: 768px) {
            .pharma-carousel .owl-nav button.owl-prev,
            .pharma-carousel .owl-nav button.owl-next {
                display: none;
            }
        }
    



        /* pcd-section */
.mfg-experience-badge {
    position: absolute;
    top: 30%;
    left: -50px;
    background-color: #fff;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    overflow: hidden;
}

.mfg-experience-badge .circle {
    position: absolute;
    background: linear-gradient(
61deg, rgb(26 41 132) 39%, rgb(12 150 219) 100%);
    width: 130px;
    height: 130px;
    border-radius: 50%;
    left: -55px;
    top: -25px;
}

.mfg-experience-badge span {
    font-size: 55px;
    font-style: italic;
    color: var(--text-color-dark);
    position: relative;
    font-family: 'El Messiri', sans-serif;
    font-weight: 600;
}

.mfg-experience-badge p {
    color: var(--text-color-dark);
    position: relative;
    font-size: 24px !important;
    font-family: 'El Messiri', sans-serif;
    font-weight: 600;
}

.pcd-content span {
    color: var(--primary-color);
    font-weight: 600;
}

.pcd-content h2 {
    font-size: 35px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 25px;
    margin-top: 15px;
}

.pcd-content p {
    color: var(--text-color-light);
    font-size: 16px;
    line-height: 28px;
    max-width: 650px;
}

.pcd-btn {
    background-color: var(--dark-color);
    padding: 10px 24px;
    display: inline-flex;
    gap: 8px;
    border-radius: 25px;
    color: #fff;
    align-items: center;
}

.pcd-btn i {
    display: flex;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ffffff47;
}

.pcd-content ul {
    list-style: none;
    padding: 0;
}

.pcd-content ul li {
    padding: 5px 0;
    font-weight: 500;
}

.pcd-content ul li i {
    color: var(--primary-color);
}


/* contact section */
.col-md-7.contets1 {
    background: url(/images/contactle.webp);
    padding: 50px 40px;
    height: 100%;
}
section.contactus h3 {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
}
.conset.d-flex.align-items-center {
    margin-top: 35px;
}
.conset .conicon i {
    background: #dd9d36;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: #fff;
    margin-right: 15px;
    font-size: 24px;
}

.conset .contxt p {
    color: #00083B;
    font-weight: 500;
    margin-bottom: 5px;
}
.conset .contxt h4 a {
    font-size: 20px;
    font-weight: 600;
    color: #00083B;
}
.contformset h3 {
    color: #fff !important;
}
.col-md-5.contets2 {
    background: url(/images/contact.webp) rgb(15 32 60);
    padding: 50px 40px;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
section.contactus h3 {
    color: #00083B;
    font-size: 32px;
    font-weight: 700;
}
.col-md-5.contets2 .contformset p {
    color: #fff;
    margin-top: 10px;
}
.col-md-5.contets2 .contformset p {
    color: #fff;
    margin-top: 10px;
}
section.contactus .form-control {
    padding: 10px;
    margin: 20px 0;
}
section.contactus textarea.form-control {
    margin-bottom: 32px !important;
}
section.contactus .btn-rotating-border {
    max-width: 100%;
}


/* footer */

/* footer */
footer {
    background-color:#000524;
    padding: 60px 0;
    color: #ffffffbd;
    position: relative;
    overflow: hidden;
}
.footer-logo {
    color: #fff !important;
    font-weight: 800;
    font-size: 1.8rem;
    background: #fff;
    border-radius: 50%;
    padding: 0;
    margin: 0;
    display: inline-flex;
margin-bottom: 15px;
    padding: 0px;
}
.footer__shape-left {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    visibility: visible;
    animation-duration: 1500ms;
    animation-delay: 200ms;
    animation-name: slideInLeft;
}

.footer__shape-left img {
    height: 100%;
}

.footer__shape__animation {
    animation: footer__shape-a 3s linear infinite alternate;
}

@keyframes footer__shape-a {

    0% {

        transform: translateX(0px);
    }

    100% {

        transform: translateX(-20px);
    }
}

.footer__shape-right {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    visibility: visible;
    animation-duration: 1500ms;
    animation-delay: 400ms;
    animation-name: slideInRight;
}

.footer__shape__animation-right {
    animation: footer__shape-a-right 3s linear infinite alternate;
}

.footer__shape-right img {
    height: 100%;
}

@keyframes footer__shape-a-right {

    0% {

        transform: translateX(20px);

    }

    100% {

        transform: translateX(0px);

    }
}

.footer-heading {
    font-size: 20px;
    font-weight: 600;
    line-height: 55px;
}

.footer-links {
    list-style: none;
position: relative;
z-index: 99;
    padding: 0;
}

.footer-links li {
    line-height: 40px;
}

.footer-links li a {
    color: #ffffffbd;
}
.footer-links li a:hover{
    color: var(--light-color);
}
ul.footer-social {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
    position: relative;
    z-index: 99;
}
ul.footer-social li a i {
    
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--light-color);
    transition: all 0.3s ease;
    border: 1px solid var(--light-color);
    background: transparent;
}
ul.footer-social li a i:hover{
    border: 1px solid #fff;
    color: var(--light-color);
    background: #fff;
}
.bottom-footer {
    padding: 10px 0;
    background-color: #000524;
    color: #ffffffbd;
    border-top: 1px solid #fff;
}




  @media (max-width: 992px) {
    .container-fluid {
    width: 96%;
}
section{
    padding: 40px 0;
}
.banner-content h1 {
    font-size: 25px;
}
.banner-content p {
    font-size: 16px;
    margin-bottom: 40px;
    margin-top: 15px;
}
.banner-section {
    height: 80vh;
}
.about-content {
    padding-left: 0;
}
.about-us .stat-card-1 {
    display: none;
}
.about-us .stat-card-2 {
    bottom: 5%;
    right: 0px;
}
.pharma-title {
    margin-bottom: 15px;
}
.services .service-card-dark {
    padding: 25px;
}
.pcd-content h2 {
    font-size: 28px;
    margin-bottom: 15px;
    margin-top: 10px;
}
.mfg-experience-badge {
    bottom: 0;
    left: 0px;
    padding: 10px;
}
.mfg-experience-badge {
    display: none;
}
.col-md-7.contets1 {
    padding: 30px 25px;
}
.conset .contxt h4 a {
    font-size: 18px;

}
.col-md-5.contets2 {
    padding: 40px 30px;
}
section.contactus .form-control {
    padding: 7px;
    margin: 10px 0;
}
footer {
    padding: 50px 0 30px;

}

.footer__shape-right img {
    height: 100%;
    display: none;
}
.footer__shape-left img {
    height: 100%;
    display: none;
}

  }