/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #000000;
    background-color: #ffffff;
    overflow-x: hidden;
}

.container {
    /*max-width: 1200px;*/
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Preloader */
/* Premium Logo Preloader */
#preloader {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at center, #f0f6fb 0%, #e8f1f8 100%);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.preloader-inner {
    position: relative;
    width: 320px;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Ripple Waves */
.logo-ring {
    position: absolute;
    border-radius: 50%;
    border: 5px solid transparent;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.4);
    opacity: 0;
    animation: rippleOut 3.2s ease-out infinite;
}

.ring-1 {
    width: 420px;
    height: 420px;
    border-color: rgba(0, 90, 138, 0.55);
    animation-delay: 0s;
}

.ring-2 {
    width: 500px;
    height: 500px;
    border-color: #005A8A;
    animation-delay: 0.8s;
}

.ring-3 {
    width: 580px;
    height: 580px;
    border-color: #AF2065;
    animation-delay: 1.6s;
}

.ring-4 {
    width: 660px;
    height: 660px;
    border-color: #D4A017;
    animation-delay: 2.4s;
}

/* Spinning Circle */
.spin-ring {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 2.5px solid transparent;
    border-top-color: #005A8A;
    border-right-color: #AF2065;
    border-bottom-color: #D4A017;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: spinRing 2.2s linear infinite;
    z-index: 9;
}

/* Logo Circle */
.preloader-logo-circle {
    position: relative;
    z-index: 10;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 4px 24px rgba(0,90,138,0.13);
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader-logo-circle img {
    width: 150px;
    height: auto;
}

/* Loading Line */
/*.gold-line {*/
/*    position: absolute;*/
/*    bottom: 0px;*/
/*    width: 280px;*/
/*    height: 3px;*/
/*    background: rgba(0,90,138,0.1);*/
/*    border-radius: 99px;*/
/*    overflow: hidden;*/
/*    z-index: 10;*/
    
/*}*/

/*.gold-line span {*/
/*    display: block;*/
/*    height: 100%;*/
/*    width: 0;*/
/*    border-radius: 99px;*/
/*    background: linear-gradient(90deg, #005A8A, #AF2065, #D4A017);*/
/*    animation: loadFill 3.5s ease-in-out forwards;*/
    
/*}*/

/* Animations */
@keyframes rippleOut {
    0% {
        transform: translate(-50%, -50%) scale(0.4);
        opacity: 0.9;
    }
    80% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }
}

@keyframes spinRing {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes loadFill {
    0% {
        width: 0;
    }
    45% {
        width: 65%;
    }
    100% {
        width: 100%;
    }
}

body.loaded #preloader {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}
/* Header */
.header {
    background: #ffffff;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px 0 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    flex-shrink: 0;
}

.logo img {
    /*height: 75px;*/
    width: 220px;
}

.navbar ul {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.navbar ul li a {
    text-decoration: none;
    color: #000000;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s;
}

.navbar ul li a:hover,
.navbar ul li a.active {
    color: #1A2A4F;
}

.header-btn {
    margin-left: 30px;
}

.btn-enquiry {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(90deg, #17a18a, #280961);
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-enquiry:hover {
    background: linear-gradient(90deg, #138a76, #1f0549);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #1A2A4F;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: 650px;
    margin-top: 50px;
    overflow: hidden;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease-in-out;
}

.slider-item.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.slider-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slider-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-caption {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    align-items: flex-start !important;
    padding-top: 75px;
}

.left-caption {
    justify-content: flex-start;
}

.banner-content {
    max-width: 465px;
    padding-left: 20px;
}

/* Slide Logo */
.slide-logo {
    /*margin-bottom: 25px;*/
}

.slide-logo img {
    width: 180px;
    height: auto;
}

/* Typography - Peacock Blue Color */
.sub-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #AF2065;
    margin-bottom: 15px;
    letter-spacing: 2px;
}
.not-available{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.main-title {
    font-size: 2rem;
    max-width: 620px;
    font-weight: 700;
    color: #005A8A;
    margin-bottom: 25px;
    line-height: 1.2;
}

/* Button - Peacock Blue Gradient */
.btn-peacock {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(90deg, #005A8A, #003D5E);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-peacock:hover {
    background: linear-gradient(90deg, #003D5E, #002A44);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    color: #ffffff;
}

/* Navigation Buttons */
.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: rgba(0, 90, 138, 0.7);
    border: none;
    border-radius: 50%;
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

.slider-prev:hover,
.slider-next:hover {
    background: #005A8A;
    transform: translateY(-50%) scale(1.05);
}

/* Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(0, 90, 138, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    width: 30px;
    border-radius: 20px;
    background: #005A8A;
}

/* Responsive */
@media (max-width: 992px) {
    .main-title {
        font-size: 2.5rem;
    }
    
    .banner-content {
        max-width: 600px;
    }
    
    .slide-logo img {
        width: 100px;
    }
}

@media (max-width: 769px) {
    .hero-slider {
        height: 420px !important;
    }
    
    .main-title {
        font-size: 1.8rem;
    }
    
    .sub-title {
        font-size: 0.7rem;
    }
    
    .btn-peacock {
        padding: 10px 18px;
        font-size: 0.9rem;
    }
    
    .slider-prev,
    .slider-next {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .slide-logo img {
        width: 80px;
    }
    
    .banner-content {
        padding-left: 0px;
        max-width: 90%;
    }
    .banner-content {
        max-width: 45% !important;
    }

    .sub-title {
        font-size: 11px !important;
    }

    .main-title {
        font-size: 13px !important;
        max-width: 180px !important;
        line-height: 1.2 !important;
    }

    .btn-peacock {
        padding: 7px 14px !important;
        font-size: 11px !important;
    }
}

@media (max-width: 480px) {
    

    .slider-prev,
    .slider-next {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .slide-logo img {
        width: 65px;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

    .dot.active {
        width: 20px;
    }
}


/* CTA Section */
.cta-section {
    background: #1A2A4F;
    color: #ffffff;
    padding: 80px 0;
}

.cta-box {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-icon i {
    font-size: 50px;
    margin-bottom: 20px;
    color: #ffffff;
}

.cta-box h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.cta-box p {
    margin-bottom: 30px;
    opacity: 0.9;
    color: #ffffff;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    font-size: 0.9rem;
}

.contact-info span i {
    margin-right: 8px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .header-btn {
        display: none;
    }
    
    .navbar {
        position: fixed;
        top: 80px;
        left: -280px;
        width: 280px;
        height: calc(100vh - 80px);
        background: #ffffff;
        box-shadow: 2px 0 15px rgba(0,0,0,0.1);
        transition: left 0.3s ease;
        z-index: 999;
        padding: 30px 0;
    }
    
    .navbar.active {
        left: 0;
    }
    
    .navbar ul {
        flex-direction: column;
        gap: 20px;
        width: 100%;
        padding: 0 25px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-stats {
        gap: 15px;
    }
    
    .hero-stats span {
        font-size: 0.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .cta-box h2 {
        font-size: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
}

/* Banner Responsive Fix */
@media (max-width: 768px) {
    .hero {
        min-height: 80vh;
        padding-top: 70px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .hero-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-bottom: 25px;
    }
    
    .hero-stats span {
        font-size: 1rem;
        gap: 8px;
        justify-content: flex-start;
    }
    
    .hero-stats span i {
        font-size: 1rem;
    }
    
    .hero-buttons {
        gap: 12px;
    }
    
    .btn-primary, .btn-secondary {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 70vh;
    }
    
    .hero-content h1 {
        font-size: 2.6rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .hero-stats span {
        font-size: 1rem;
    }
}

/* Certifications Section */
.section-padding {
    padding: 40px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #1A2A4F;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #17a18a, #280961);
}

.section-header p {
    font-size: 1.1rem;
    color: #555;
}

.certifications {
    background: #f8f9fa;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    text-align: center;
}

.cert-item {
    background: #ffffff;
    padding: 35px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.cert-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.cert-img {
    margin-bottom: 20px;
}

.cert-img img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.cert-item h3 {
    font-size: 1.2rem;
    color: #1A2A4F;
    margin-bottom: 8px;
    font-weight: 600;
}

.cert-item p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

.cert-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid #1A2A4F;
    color: #1A2A4F;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cert-view-btn:hover {
    background: #1A2A4F;
    color: #ffffff;
}

/* Modal Full Screen */
.cert-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.95);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.cert-modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.cert-modal-header {
    display: flex;
    justify-content: flex-end;
    padding: 15px 20px;
    background: #1A2A4F;
}

.cert-modal-close {
    color: #ffffff;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    line-height: 1;
}

.cert-modal-close:hover {
    color: #17a18a;
    transform: scale(1.1);
}

.cert-modal-body {
    padding: 40px;
    text-align: center;
}

.cert-modal-body img {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
    margin-bottom: 25px;
}

.cert-modal-body h3 {
    font-size: 1.8rem;
    color: #1A2A4F;
    margin-bottom: 10px;
}

.cert-modal-body p {
    font-size: 1rem;
    color: #555;
}

/* Mobile Responsive for Certifications */
@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .cert-grid {
        gap: 20px;
    }
    
    .cert-item {
        padding: 25px 15px;
    }
    
    .cert-img img {
        width: 60px;
        height: 60px;
    }
    
    .cert-modal-body {
        padding: 25px;
    }
    
    .cert-modal-body h3 {
        font-size: 1.4rem;
    }
}/* Products Section */
.products {
    background: #ffffff;
    padding: 60px 0 20px;
}

.product-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 32px;
    border: none;
    background: #AF2065;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s;
    color: #ffffff;
}

.tab-btn.active {
    background: #005A8A;
    color: #ffffff;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(0,0,0,0.12);
    border-color: #AF2065;
}

.product-info {
    padding: 25px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Brand Name - Oswald Font with Two Colors */
.product-brand {
    font-family: 'Oswald', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    margin-bottom: 12px;
    letter-spacing: 0.6px;
}

.brand-left {
    color: #005A8A;
}

.brand-right {
    color: #AF2065;
}

/* Generic Name */
.generic-name {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1rem;
    color: #000000;
    margin-bottom: 12px;
    line-height: 1.5;
}

/* Pack Size - Fixed Height for Same Alignment */
.pack-size {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1rem;
    color: #000000;
    margin-bottom: 20px;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.pack-size i {
    color: #AF2065;
    margin-right: 6px;
}

/* View Details Link - Bottom Align */
.product-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #005A8A;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: all 0.3s ease;
    margin-top: auto;
    align-self: center;
}

.product-link:hover {
    gap: 12px;
    color: #AF2065;
}

.view-all {
    text-align: center;
    margin-top: 50px;
}

/* Oswald Font Import */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700;800&display=swap');

/* Mobile Responsive */
@media (max-width: 768px) {
    .products {
        padding: 60px 0;
    }
    
    .product-tabs {
        gap: 10px;
    }
    
    .tab-btn {
        padding: 8px 20px;
        font-size: 0.85rem;
    }
    
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .product-brand {
        font-size: 1.3rem;
    }
    
    .generic-name, .pack-size {
        font-size: 0.85rem;
    }
    
    .pack-size {
        min-height: 40px;
    }
    
    .product-link {
        font-size: 0.85rem;
    }
}
/*--------------------------------------------*/

/* Footer Section */
.footer {
    background: #f0f2f5;
    color: #333333;
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    margin-bottom: 6px;
}

.footer-logo img{
    height: auto;
    width: 220px;
}

.footer-col h4 {
    color: #1A2A4F;
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.footer-col h4:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #17a18a, #280961);
}

.footer-col p {
    font-size: 1rem;
    line-height: 1.6;
    color: #000000;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #000000;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: #1A2A4F;
    padding-left: 5px;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: #000000;
    margin-bottom: 12px;
}

.contact-list li i {
    width: 20px;
    color: #1A2A4F;
}

/* Social Icons - Light Background */
.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #e0e4e8;
    border-radius: 50%;
    color: #1A2A4F;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    background: linear-gradient(90deg, #17a18a, #280961);
    color: #ffffff;
    transform: translateY(-3px);
}

/* Footer Bottom - Light */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    padding: 20px 0;
    border-top: 1px solid #d0d5da;
    font-size: 1rem;
}

.footer-bottom-left p {
    color: #000000;
    margin: 0;
}

.footer-bottom-left a {
    color: #000000;
    text-decoration: none;
}

.footer-bottom-left a:hover {
    color: #1A2A4F;
    text-decoration: underline;
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-bottom-right a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom-right a:hover {
    color: #1A2A4F;
}

.separator {
    color: #bbb;
}

/* Mobile Responsive Footer */
@media (max-width: 768px) {
    .footer {
        padding: 50px 0 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: left;
    }
    
    .footer-col h4:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .contact-list li {
        justify-content: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .footer-bottom-right {
        justify-content: center;
    }
}

.floating_btn {
  position: fixed;
  bottom: 65px;
  right: 4px;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items:center;
  justify-content:center;
  z-index: 1000;
}
.floating_btn a{
    text-decoration:none;
}

@keyframes pulsing {
  to {
    box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
  }
}

.contact_icon {
  background-color: #42db87;
  color: #fff;
  width: 60px;
  height: 60px;
  font-size:30px;
  border-radius: 50px;
  text-align: center;
  box-shadow: 2px 2px 3px #999;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translatey(0px);
  animation: pulse 1.5s infinite;
  box-shadow: 0 0 0 0 #42db87;
  -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  font-weight: normal;
  font-family: sans-serif;
  text-decoration: none !important;
  transition: all 300ms ease-in-out;
}

.text_icon {
  margin-top: 8px;
  color: #707070;
  font-size: 13px;
}

/*===========top==============*/

.backtotop-wrap {
  position: fixed;
  bottom: 20px;
  right: 30px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  border-radius: 50%;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 400ms linear;
  background: #61DC97;
  color: #ffffff;
}

@media (max-width: 575px) {
  .backtotop-wrap {
    bottom: 20px;
    right: 20px;
  }
}

.backtotop-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Arrow Icon */
.backtotop-wrap::after {
  position: absolute;
  content: "\f062";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  text-align: center;
  line-height: 46px;
  font-size: 16px;
  color: #fff;
  left: 0;
  top: 0;
  width: 46px;
  height: 46px;
  z-index: 2;
}

/* SVG Circle */
.backtotop-wrap svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.backtotop-wrap svg path {
  fill: none;
}

.backtotop-wrap svg.backtotop-circle path {
  stroke: #61DC97;
  stroke-width: 4;
  box-sizing: border-box;
  transition: all 400ms linear;
}

.cta-buttons i{
    font-size:20px;
}


/*-------------------------------*/
/* Who We Are Section */
.who-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 40px;
}

.who-video,
.who-content {
    flex: 1;
}

.who-video video {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.who-content {
    text-align: left;
}

.who-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .who-wrapper {
        flex-direction: column;
    }

    .who-video video {
        height: 250px;
    }

    .who-content {
        text-align: center;
    }
}

/* CTA Buttons */
.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(90deg, #005A8A, #003D5E);
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-cta:hover {
    background: linear-gradient(90deg, #003D5E, #002A44);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    color: #ffffff;
}  
    
   
/*=============================================================*/

/* ============================================
   ABOUT US PAGE CSS
   ============================================ */

/* About Hero Banner */
.about-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    margin-top: 80px;
    overflow: hidden;
}

.about-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    max-height:400px;
}

.about-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    max-width: 700px;
}

/* Breadcrumb */
.breadcrumb {
    margin-bottom: 20px;
    font-size: 1rem;
}

.breadcrumb a {
    color: #005A8A;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
}

.breadcrumb a:hover {
    color: #005A8A;
}

.breadcrumb .separator {
    color: #005A8A;
    margin: 0 8px;
    font-weight: 600;
}

.breadcrumb .current {
    color: #005A8A;
    font-weight: 600;
}

.about-hero-content h1 {
    font-size: 3.5rem;
    color: #005A8A;
    margin-bottom: 15px;
    font-weight: 700;
}

.hero-tagline {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 500;
}

.hero-subtagline {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 0;
}

/* Who We Are Section */
.who-we-are {
    background: #ffffff;
}

.who-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.who-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333333;
    margin-bottom: 0;
    font-weight: 400;
}

/* Vision & Mission Section */
.vision-mission {
    background: #f8f9fa;
}

.vision-mission .container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.vision-box, .mission-box {
    flex: 1;
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.vision-box:hover, .mission-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.vision-icon i, .mission-icon i {
    font-size: 50px;
    color: #005A8A;
    margin-bottom: 20px;
}

.vision-box h3, .mission-box h3 {
    font-size: 1.8rem;
    color: #005A8A;
    margin-bottom: 15px;
}

.vision-box p, .mission-box p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

/* Core Elements Section */
.core-elements {
    background: #ffffff;
}

.core-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.core-item {
    text-align: center;
    padding: 35px 25px;
    background: #f8f9fa;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.core-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.core-icon i {
    font-size: 45px;
    color: #005A8A;
    margin-bottom: 20px;
}

.core-item h3 {
    font-size: 1.3rem;
    color: #005A8A;
    margin-bottom: 15px;
}

.core-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
}

/* Presence Section */
.presence {
    background: #f8f9fa;
}

.presence-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.presence-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

/* Research Section */
.research {
    background: #ffffff;
}

.research-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.research-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

/* Manufacturing Section */
.manufacturing {
    background: #f8f9fa;
}

.manufacturing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.manufacturing-item {
    text-align: center;
    padding: 30px 25px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.manufacturing-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.manufacturing-item i {
    font-size: 40px;
    color: #005A8A;
    margin-bottom: 20px;
}

.manufacturing-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
}

/* Wellness & Partnership Section */
.wellness-partnership {
    background: linear-gradient(135deg, #005A8A 0%, #003D5E 100%);
    color: #ffffff;
}

.wellness-partnership .container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.wellness-box, .partnership-box {
    flex: 1;
    text-align: center;
    padding: 40px 30px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.wellness-box:hover, .partnership-box:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-5px);
}

.wellness-box i, .partnership-box i {
    font-size: 50px;
    color: #ffffff;
    margin-bottom: 20px;
}

.wellness-box h3, .partnership-box h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.wellness-box p, .partnership-box p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* CSR Section */
.csr {
    background: #ffffff;
}

.csr-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.csr-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.csr-content p strong {
    color: #005A8A;
}

/* Responsive */
@media (max-width: 992px) {
    .about-hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-tagline {
        font-size: 1.2rem;
    }
    .vision-box h3, .mission-box h3 {
        font-size: 1.5rem;
    }
}

/* About / Contact / Career Banner Responsive */
@media (max-width: 768px) {
    .about-hero {
        height: 280px !important;
        min-height: 280px !important;
        margin-top: 80px !important;
        align-items: center !important;
    }

    .about-hero-bg {
        height: 100% !important;
        max-height: none !important;
    }

    .about-hero-bg img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center right !important;
    }

    .about-hero-content h1 {
        font-size: 20px !important;
        margin-bottom: 10px !important;
    }

    .breadcrumb {
        font-size: 14px !important;
    }

    .vision-mission .container,
    .wellness-partnership .container {
        flex-direction: column;
    }

    .core-grid,
    .manufacturing-grid {
        grid-template-columns: 1fr;
    }

    .who-content p,
    .presence-content p,
    .research-content p,
    .csr-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .about-hero {
        height: 220px !important;
        min-height: 220px !important;
    }

    .about-hero-bg img {
        object-position: 70% center !important;
    }

    .about-hero-content h1 {
        font-size: 24px !important;
    }

    .breadcrumb {
        font-size: 13px !important;
    }

    .vision-box h3,
    .mission-box h3 {
        font-size: 1.3rem;
    }

    .wellness-box h3,
    .partnership-box h3 {
        font-size: 1.2rem;
    }
}

/*==========================================================*/


/* ============================================
   CONTACT US PAGE CSS
   ============================================ */

/* Contact Hero Banner */
.contact-hero {
    background: linear-gradient(135deg, #005A8A 0%, #003D5E 100%);
    padding: 120px 0 60px;
    margin-top: 80px;
    text-align: left;
}

.contact-hero-content h1 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 15px;
}

.contact-hero .breadcrumb {
    margin-bottom: 0;
}

.contact-hero .breadcrumb a,
.contact-hero .breadcrumb .separator,
.contact-hero .breadcrumb .current {
    color: rgba(255,255,255,0.8);
}

.contact-hero .breadcrumb .current {
    color: #ffffff;
}

/* Contact Info Grid */
.contact-info-section {
    background: #ffffff;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.contact-info-card {
    text-align: center;
    padding: 35px 25px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.contact-icon i {
    font-size: 45px;
    color: #005A8A;
    margin-bottom: 20px;
}

.contact-info-card h3 {
    font-size: 1.3rem;
    color: #005A8A;
    margin-bottom: 15px;
}

.contact-info-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 5px;
}

.contact-info-card a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-card a:hover {
    color: #005A8A;
}

/* Map & Form Section */
.map-form-section {
    background: #f8f9fa;
}

.map-form-grid {
    display: flex;
    justify-content: center;
}

.form-box {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.map-box {
    display: none;
}

.form-box h3 {
    display: block;
    text-align: center;
    border-bottom: none;
    margin-bottom: 30px;
}

.form-box h3::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: #005A8A;
    margin: 10px auto 0;
}
.google-map {
    width: 100%;
    height: 420px;
    border-radius: 8px;
    overflow: hidden;
}

.google-map iframe {
    width: 100%;
    height: 100%;
}

.product-description-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 45px;
    margin-top: 45px;
}

.product-description-content {
    text-align: left;
}

.product-description-content p {
    text-align: left;
    line-height: 1.8;
    margin-bottom: 18px;
}

.product-video video {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 22px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

@media (max-width: 991px) {
    .product-description-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .product-video video {
        height: 300px;
    }
}
/* Contact Form */
.contact-form {
    margin-top: 20px;
}

.contact-form .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.contact-form .form-group {
    flex: 1;
    margin-bottom: 0;
}

.contact-form .form-group.full-width {
    width: 100%;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.contact-form .required {
    color: #e74c3c;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #005A8A;
    box-shadow: 0 0 5px rgba(0,90,138,0.3);
}

.contact-form textarea {
    resize: vertical;
}

.contact-form .btn-peacock {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 220px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .contact-form .btn-peacock {
        width: 100%;
        max-width: 320px;
    }
}

/* Social Media Section - Simple */
.social-media-section {
    background: #ffffff;
    text-align: center;
}

.social-media-simple {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #f8f9fa;
    border-radius: 50%;
    color: #005A8A;
    font-size: 24px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.social-icon:hover {
    background: #005A8A;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 992px) {
    .contact-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .map-form-grid {
        gap: 30px;
    }
    
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 100px 0 50px;
        margin-top: 70px;
    }
    
    .contact-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .map-form-grid {
        grid-template-columns: 1fr;
    }
    
    .map-box, .form-box {
        padding: 20px;
    }
    
    .google-map {
        height: 300px;
    }
    
    .contact-form .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .social-media-simple {
        gap: 20px;
    }
    
    .social-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .contact-hero-content h1 {
        font-size: 1.5rem;
    }
    
    .social-media-simple {
        gap: 15px;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .map-box h3, .form-box h3 {
        font-size: 1.2rem;
    }
}
/* HOME PAGE RESPONSIVE FIX */

/* FINAL MOBILE HERO FIX */

@media (max-width: 769px) {
    .hero-slider {
        height: 260px !important;
        margin-top: 50px !important;
    }

    .slider-bg img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center center !important;
    }

    .slider-caption {
        background: transparent !important;
        padding-top: 35px !important;
    }

    .slider-dots {
        bottom: 12px !important;
    }


    .slider-wrapper,
    .slider-track,
    .slider-item,
    .slider-bg {
        height: 100% !important;
        position: absolute !important;
        inset: 0 !important;
    }

    .slider-item {
        opacity: 0 !important;
        visibility: hidden !important;
    }

    .slider-item.active {
        opacity: 1 !important;
        visibility: visible !important;
    }

/*    .slider-bg img {*/
/*    width: 100% !important;*/
/*    height: 100% !important;*/
/*    object-fit: contain !important;*/
/*    object-position: center center !important;*/
/*}*/

/*    .slider-caption {*/
/*    height: 100% !important;*/
/*    align-items: flex-start !important;*/
/*    padding-top: 40px !important;*/
/*    background: transparent !important;*/
/*}*/

    .banner-content {
        max-width: 650px;
    }

.sub-title {
    font-size: 13px !important;
    margin-bottom: 6px !important;
    letter-spacing: 1px !important;
}

.main-title {
    font-size: 11px !important;
    line-height: 1.2 !important;
    max-width: 180px !important;
    margin-bottom: 10px !important;
}

.btn-peacock {
    padding: 7px 14px !important;
    font-size: 11px !important;
}

    .slider-prev,
    .slider-next {
        display: none !important;
    }
}
@media (min-width: 993px) {
    .main-title {
        font-size: 2.6rem !important;
        line-height: 1.2 !important;
        max-width: 650px !important;
    }

    .sub-title {
        font-size: 1rem !important;
    }

    .btn-peacock {
        padding: 10px 22px !important;
        font-size: 0.9rem !important;
    }
}
@media (min-width: 993px) {
    .main-title {
        font-size: 3rem !important;
        max-width: 500px !important;
    }

    .sub-title {
        font-size: 1rem !important;
    }

    .btn-peacock {
        padding: 14px 30px !important;
        font-size: 1rem !important;
    }
}