/*
Theme Name: Twenty Thirteen Child
Theme URI: https://wordpress.org/themes/twentythirteen/
Template: twentythirteen
Author: the WordPress team
Author URI: https://wordpress.org/
Description: The 2013 theme for WordPress takes us back to the blog, featuring a full range of post formats, each displayed beautifully in their own unique way. Design details abound, starting with a vibrant color scheme and matching header images, beautiful typography and icons, and a flexible layout that looks great on any device, big or small.
Tags: blog,one-column,two-columns,right-sidebar,custom-header,custom-menu,editor-style,featured-images,footer-widgets,microformats,post-formats,rtl-language-support,sticky-post,translation-ready,accessibility-ready,block-patterns
Version: 4.5.1768970922
Updated: 2026-01-21 04:48:42

*/

body {
    box-sizing: border-box;
}

:root {
    --primary-color: #007059;
    --secondary-color: #09080A;
    --primary-light: #00a080;
    --primary-dark: #005544;
    --accent-gold: #FFD700;
    --bg-light: #f8fffe;
    --bg-gradient: linear-gradient(135deg, #007059 0%, #00a080 100%);
    --text-dark: #09080A;
    --text-muted: #6c757d;
    --white: #ffffff;
    --shadow-sm: 0 2px 10px rgba(0, 112, 89, 0.1);
    --shadow-md: 0 5px 25px rgba(0, 112, 89, 0.15);
    --shadow-lg: 0 10px 40px rgba(0, 112, 89, 0.2);
    --border-radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
@media(min-width:767px){
.container, .container-fluid {
    max-width: 95%;
}
}


html,
body {
    height: 100%;
    width: 100%;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--white);
    font-size: 16px;
}

.main-wrapper {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
}

/* Attractive Typography Hierarchy */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
}

h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.8px;
}

h2 {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.6px;
}

h3 {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.4px;
}

h4 {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -0.2px;
}

h5 {
    font-size: 19px;
    font-weight: 600;
    line-height: 1.5;
}

h6 {
    font-size: 17px;
    font-weight: 600;
    line-height: 1.5;
}

p {
    font-size: 16px;
    line-height: 1.8;
    font-weight: 400;
}

li {
    font-size: 15px;
    line-height: 1.7;
}

small,
.small-text {
    font-size: 14px;
}

/* Banner Video */
.banner-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 80%);
    z-index: 1;
}

/* Animated Background Patterns */
.animated-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.floating-shape {
    position: absolute;
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--primary-color);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--primary-light);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    bottom: 50px;
    left: -50px;
    animation-delay: 2s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: var(--accent-gold);
    border-radius: 50%;
    top: 50%;
    right: 10%;
    animation-delay: 4s;
}

@keyframes float {

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

    25% {
        transform: translateY(-30px) rotate(90deg);
    }

    50% {
        transform: translateY(0px) rotate(180deg);
    }

    75% {
        transform: translateY(30px) rotate(270deg);
    }
}

/* Gradient Animation */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

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

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

.gradient-animated {
    background: linear-gradient(-45deg, #007059, #00a080, #005544, #00b89e);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

/* Pulse Animation */
@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(0, 112, 89, 0.4);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 0 20px rgba(0, 112, 89, 0);
        transform: scale(1.05);
    }
}

/* Shine Effect */
.shine-effect {
    position: relative;
    overflow: hidden;
}

.shine-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.shine-effect:hover::before {
    left: 100%;
}

/* Top Bar */
.top-bar {
    background: var(--secondary-color);
    padding: 8px 0;
    overflow: hidden;
}

.top-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-size: var(--small-size);
    white-space: nowrap;
}

.top-bar-item i {
    color: var(--primary-light);
}

.blink-phone {
    animation: blink 1.5s ease-in-out infinite;
    color: var(--accent-gold) !important;
    font-weight: 600;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.marquee-section {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.marquee-container {
    display: flex;
    align-items: center;
    gap: 50px;
    animation: marquee 30s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

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

.marquee-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-size: var(--small-size);
    white-space: nowrap;
}

.marquee-item i {
    color: var(--primary-light);
}

/* Header */
.main-header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 12px 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 800;
    font-size: 20px;
    animation: rotate3d 3s infinite ease-in-out;
}

@keyframes rotate3d {

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

    50% {
        transform: rotateY(360deg);
    }
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.1;
    font-family: 'Montserrat', sans-serif;
}

.brand-tagline {
    font-size: 9px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 500;
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    font-size: 15px;
    padding: 10px 16px !important;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color) !important;
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 70%;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.phone-icon-wrap {
    width: 45px;
    height: 45px;
    background: var(--bg-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    animation: pulseGlow 2s infinite;
}

.phone-text span {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
}

.phone-text strong {
    color: var(--primary-color);
    font-size: 15px;
}

.btn-get-touch {
    background: var(--bg-gradient);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-get-touch:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--white);
}

/* Banner Section */
.banner-section {
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

.banner-carousel {
    position: relative;
    z-index: 10;
}

.banner-slide {
    outline: none;
}

.slick-dots {
    bottom: -50px;
}

.slick-dots li button:before {
    font-size: 12px;
    color: var(--primary-color);
    opacity: 0.3;
}

.slick-dots li.slick-active button:before {
    opacity: 1;
    color: var(--primary-color);
}

.slick-prev,
.slick-next {
    width: 50px;
    height: 50px;
    z-index: 100;
}

.slick-prev {
    left: -60px;
}

.slick-next {
    right: -60px;
}

.slick-prev:before,
.slick-next:before {
    font-size: 40px;
    color: var(--primary-color);
    opacity: 0.7;
}

.slick-prev:hover:before,
.slick-next:hover:before {
    opacity: 1;
}

.banner-content h1 span {
    color: #57cfb7;
    position: relative;
    display: inline-block;
    font-weight: 900;
}

.banner-content h1 span::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 0;
    width: 100%;
    height: 6px;
    background: rgba(0, 112, 89, 0.2);
    z-index: -1;
}

.banner-content h1 {
    font-size: 44px;
    margin-bottom: 20px;
    color: var(--white);
}

.banner-content p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--white);
    margin-bottom: 20px;
}

.banner-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 25px 0;
}

.feature-badge {
    background: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.feature-badge:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-md);
}

.feature-badge i {
    color: var(--primary-color);
}

.banner-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary-custom {
    background: var(--bg-gradient);
    color: var(--white);
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.btn-primary-custom::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary-custom:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.btn-outline-custom {
    background: transparent;
    color: var(--white);
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--white);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-outline-custom:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}



/* Banner Form */
.banner-form-wrapper {
    background: var(--white);
    border-radius: 20px;
    padding: 35px;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 10;
    transition: all 0.3s ease;
}

.banner-form-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 112, 89, 0.25);
}

.form-header {
    text-align: center;
    margin-bottom: 25px;
}

.form-header h3 {
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.form-header p {
    font-size: 14px;
    color: var(--text-muted);
}

.form-floating-custom {
    margin-bottom: 15px;
}

.form-floating-custom .form-control,
.form-floating-custom .form-select {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-floating-custom .form-control:focus,
.form-floating-custom .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 112, 89, 0.1);
    transform: translateY(-2px);
}

.form-floating-custom label {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 5px;
    display: block;
}

.btn-submit {
    width: 100%;
    background: var(--bg-gradient);
    color: var(--white);
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-submit::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-submit:hover::after {
    width: 400px;
    height: 400px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.form-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--text-muted);
}

.trust-item i {
    color: var(--primary-color);
}

/* Section Styles */
.section-padding {
    padding: 80px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header .subtitle {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 12px;
    display: inline-block;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.7;
}

.underline-center {
    width: 80px;
    height: 4px;
    background: var(--bg-gradient);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* About Section - Enhanced */
.about-section {
    background: linear-gradient(135deg, #f0fdf9 0%, #ffffff 50%, #e6f7f3 100%);
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.about-stat-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.about-stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0, 112, 89, 0.1), rgba(0, 112, 89, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary-color);
    margin: 0 auto 15px;
    transition: all 0.3s ease;
}

.about-stat-card:hover .stat-icon {
    background: var(--bg-gradient);
    color: var(--white);
    transform: scale(1.1) rotate(360deg);
}

.stat-number {
    font-size: 38px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 15px;
    color: var(--text-muted);
    font-weight: 500;
}

.about-content-section {
    background: var(--white);
    border-radius: 20px;
    padding: 50px;
    box-shadow: var(--shadow-md);
    margin-bottom: 40px;
}

.about-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
}

.about-intro h2 span {
    color: var(--primary-color);
}

.about-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.about-feature-card {
    background: linear-gradient(135deg, #f8fffe 0%, #e6f7f3 100%);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.about-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
    background: var(--white);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    margin: 0 auto 15px;
    transition: all 0.3s ease;
}

.about-feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.about-feature-card h5 {
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.about-feature-card p {
    color: var(--text-muted);
    margin: 0;
}

.mission-vision-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.mission-card,
.vision-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.mission-card h3,
.vision-card h3 {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.mission-card h3 i,
.vision-card h3 i {
    font-size: 32px;
    color: var(--primary-color);
}

.mission-card ul,
.vision-card ul {
    list-style: none;
    padding: 0;
}

.mission-card li,
.vision-card li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    padding-left: 10px;
}

.mission-card li i,
.vision-card li i {
    margin-top: 3px;
    color: var(--primary-color);
    font-size: var(--body-size);
}

/* Companies Section */
.companies-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fffe 100%);
}

.nav-tabs-custom {
    border: none;
    background: #f5f5f5;
    border-radius: 50px;
    padding: 5px;
    display: inline-flex;
    margin-bottom: 40px;
}

.nav-tabs-custom .nav-link {
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    font-size: 15px;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.nav-tabs-custom .nav-link::after {
    display: none;
}

.nav-tabs-custom .nav-link.active {
    background: var(--bg-gradient);
    color: var(--white) !important;
    transform: scale(1.05);
}

.company-card {
    background: var(--white);
    border-radius: 15px;
    padding: 25px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    margin-bottom: 20px;
    border: 1px solid #f0f0f0;
}

.company-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.company-header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.company-logo {
    /* width: 70px; */
    width: 150px;
    height: 70px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--subheading-size);
    font-weight: 800;
    color: var(--primary-color);
    flex-shrink: 0;
}

.company-info h4 {
    font-size: 21px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 5px;
    font-family: 'Montserrat', sans-serif;
}

.company-range {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 8px;
    font-weight: 500;
}

.premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
}

.premium-badge i {
    font-size: 11px;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {

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

    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}

.company-desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 15px;
}

.company-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-action {
    flex: 1;
    min-width: 80px;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.btn-action:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-call {
    background: var(--primary-color);
    color: var(--white);
}

.btn-call:hover {
    background: var(--primary-dark);
    color: var(--white);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #1da851;
    color: var(--white);
}

.btn-inquiry {
    background: var(--secondary-color);
    color: var(--white);
}

.btn-inquiry:hover {
    background: #1a1a1a;
    color: var(--white);
}

/* Sidebar Form */
.sidebar-form {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 100px;
    transition: all 0.3s ease;
}

.sidebar-form:hover {
    box-shadow: var(--shadow-lg);
}

.sidebar-form h4 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    text-align: center;
}

/* Product Range Section */
.product-range-section {
    background: linear-gradient(135deg, #e0f7f3 0%, #f8fffe 50%, #e6f7f3 100%);
}

.medicine-type-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.type-tab {
    background: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
}

.type-tab:hover,
.type-tab.active {
    background: var(--bg-gradient);
    color: var(--white);
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-lg);
}

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

.therapeutic-card {
    background: var(--white);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
}

.therapeutic-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: var(--shadow-lg);
}

.therapeutic-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 112, 89, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 28px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.therapeutic-card:hover .therapeutic-icon {
    background: var(--primary-color);
    color: var(--white);
    transform: rotate(360deg);
}

.therapeutic-card h5 {
    color: var(--secondary-color);
    margin-bottom: 5px;
    font-size: 18px;
    font-weight: 700;
}

.therapeutic-card p {
    font-size: 14px;
    color: var(--text-muted);
}

/* Dosage Forms Section */
.dosage-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fffe 100%);
}

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

.dosage-card {
    background: linear-gradient(135deg, #f8fffe 0%, #e6f7f3 100%);
    border-radius: 15px;
    padding: 25px 15px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.dosage-card:hover {
    background: var(--primary-color);
    transform: translateY(-10px) rotateZ(5deg);
    box-shadow: var(--shadow-lg);
}

.dosage-card:hover .dosage-icon,
.dosage-card:hover h6 {
    color: var(--white);
}

.dosage-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 112, 89, 0.2);
}

.dosage-card:hover .dosage-img {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 8px 25px rgba(0, 112, 89, 0.3);
}

.dosage-icon-fallback {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 10px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dosage-card h6 {
    color: var(--secondary-color);
    margin: 0;
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: 600;
}

/* Difference Section */
.difference-section {
    background: linear-gradient(135deg, #09080A 0%, #1a1a1a 100%);
    color: var(--white);
}

.difference-section .section-header h2,
.difference-section .section-header .subtitle {
    color: var(--white);
}

.difference-section .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.difference-table {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.diff-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: var(--bg-gradient);
    color: var(--white);
}

.diff-header-cell {
    padding: 20px;
    text-align: start;
    font-weight: 800;
    font-size: 17px;
    font-family: 'Montserrat', sans-serif;
}

.diff-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.diff-row:hover {
    background: rgba(0, 112, 89, 0.05);
    transform: scale(1.02);
}

.diff-row:last-child {
    border-bottom: none;
}

.diff-cell {
    padding: 15px 20px;
    color: var(--text-dark);
    font-size: var(--body-size);
}

.diff-cell:first-child {
    font-weight: 600;
    background: rgba(0, 112, 89, 0.05);
}

/* Specialty Range Section */
.specialty-section {
    background: linear-gradient(135deg, #f0fdf9 0%, #ffffff 50%, #e6f7f3 100%);
}

.specialty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 25px;
}

.specialty-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.specialty-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: var(--shadow-lg);
}

.specialty-img {
    height: 120px;
    background: linear-gradient(135deg, rgba(0, 112, 89, 0.1), rgba(0, 112, 89, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.specialty-card:hover .specialty-img {
    background: var(--bg-gradient);
    color: var(--white);
}

.specialty-card:hover .specialty-img i {
    transform: scale(1.2) rotateY(360deg);
}

.specialty-card h5 {
    padding: 15px;
    text-align: center;
    color: var(--secondary-color);
    margin: 0;
    font-size: 17px;
    font-weight: 700;
}

/* How to Select Section */
.select-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fffe 100%);
}

.select-card {
    background: linear-gradient(135deg, #f8fffe 0%, #e6f7f3 100%);
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    transition: all 0.3s ease;
}

.select-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.select-card h4 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.select-card h4 i {
    color: var(--primary-color);
}

.select-steps {
    list-style: none;
    padding: 0;
}

.select-steps li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.select-steps li:hover {
    transform: translateX(10px);
}

.step-number {
    width: 30px;
    height: 30px;
    background: var(--bg-gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--small-size);
    font-weight: 600;
    flex-shrink: 0;
}

.step-text {
    font-size: var(--body-size);
    color: var(--text-muted);
    line-height: 1.6;
}

/* Scope Section - Redesigned */
.scope-section {
    background: linear-gradient(135deg, #f0fdf9 0%, #ffffff 50%, #e6f7f3 100%);
    position: relative;
    overflow: hidden;
}

.scope-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 112, 89, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.scope-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 160, 128, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.scope-section .section-header h2,
.scope-section .section-header .subtitle,
.scope-section .section-header p {
    position: relative;
    z-index: 1;
}

.scope-cards-wrapper {
    position: relative;
    z-index: 1;
}

.scope-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    box-shadow: 0 5px 30px rgba(0, 112, 89, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.scope-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--bg-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.scope-card:hover::before {
    transform: scaleX(1);
}

.scope-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 112, 89, 0.15);
    border-color: var(--primary-color);
}

.scope-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.scope-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0, 112, 89, 0.1), rgba(0, 160, 128, 0.15));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.scope-card:hover .scope-icon-wrapper {
    background: var(--bg-gradient);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
}

.scope-card h4 {
    margin: 0;
    color: var(--secondary-color);
    font-size: 24px;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
}

.scope-card-description {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 25px;
}

.scope-stats-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.scope-stat-item {
    background: linear-gradient(135deg, #f8fffe, #e6f7f3);
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.scope-stat-item:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, #e6f7f3, #d0f0e8);
}

.scope-stat-number {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Poppins', sans-serif;
    display: block;
    margin-bottom: 5px;
}

.scope-stat-label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

.scope-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.scope-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 15px;
}

.scope-list li:hover {
    background: rgba(0, 112, 89, 0.04);
    transform: translateX(10px);
}

.scope-list li i {
    margin-top: 2px;
    color: var(--primary-color);
    font-size: 16px;
    flex-shrink: 0;
}

.scope-cta-btn {
    width: 100%;
    background: var(--bg-gradient);
    color: var(--white);
    padding: 14px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 20px;
}

.scope-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 112, 89, 0.3);
    color: var(--white);
}

.scope-image-wrapper {
    width: 100%;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 112, 89, 0.15);
}

.scope-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.scope-card:hover .scope-image {
    transform: scale(1.1);
}

/* Pros Cons Section */
.pros-cons-section {
    background: linear-gradient(135deg, #f0fdf9 0%, #ffffff 50%, #e6f7f3 100%);
}

.pros-cons-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 100%;
    transition: all 0.3s ease;
}

.pros-cons-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.pros-cons-header {
    padding: 20px;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
}

.pros-header {
    background: linear-gradient(135deg, #007059, #00a080);
}

.cons-header {
    background: linear-gradient(135deg, #dc3545, #ff4757);
}

.pros-cons-body {
    padding: 25px;
}

.pros-cons-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pros-cons-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: var(--body-size);
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.pros-cons-list li:hover {
    transform: translateX(10px);
    background: rgba(0, 112, 89, 0.02);
}

.pros-cons-list li:last-child {
    border-bottom: none;
}

.pros-cons-list li i {
    margin-top: 3px;
    font-size: 12px;
}

.pros-list li i {
    color: var(--primary-color);
}

.cons-list li i {
    color: #dc3545;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #09080A 0%, #1a1a1a 100%);
    color: var(--white);
    padding: 60px 0 20px;
}
footer.footer a {
    text-decoration: none;
}
.footer-brand {
    margin-bottom: 20px;
}

.footer-brand .brand-name {
    color: var(--white);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 15px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    justify-content: center;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-5px) scale(1.1);
}

.footer h5 {
    font-size: 19px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-contact-item i {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.footer-contact-item div {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    /* margin-top: 40px; */
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive */
@media (max-width: 991px) {
    .banner-content h1 {
        font-size: 28px;
    }

    .banner-form-wrapper {
        margin-top: 40px;
    }

    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mission-vision-section {
        grid-template-columns: 1fr;
    }

    .diff-header,
    .diff-row {
        grid-template-columns: 1fr;
    }

    .diff-cell {
        border-bottom: 1px solid #f0f0f0;
    }
}

@media (max-width: 767px) {
    h1 {
        font-size: 34px;
    }

    h2 {
        font-size: 30px;
    }

    h3 {
        font-size: 24px;
    }

    h4 {
        font-size: 20px;
    }

    h5 {
        font-size: 18px;
    }

    .section-padding {
        padding: 50px 0;
    }

    .banner-content h1 {
        font-size: 32px;
    }

    .banner-content p {
        font-size: 16px;
    }

    .header-contact {
        display: none;
    }

    .about-stats-grid {
        grid-template-columns: 1fr;
    }

    .about-features-grid {
        grid-template-columns: 1fr;
    }

    .about-content-section {
        padding: 30px 20px;
    }

    .navbar-toggler {
        border: none;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    .floating-shape {
        display: none;
    }

    .top-bar-left {
        justify-content: center;
    }

    .marquee-section {
        display: none;
    }
}

/* Placeholder Image Styles */
.placeholder-img {
    background: linear-gradient(135deg, rgba(0, 112, 89, 0.1), rgba(0, 112, 89, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 60px;
}

.product-range-section .container, .product-range-section .container-fluid , .about-section .container, .about-section .container-fluid{
  position: relative;
}
@media(max-width:767px){
    .navbar {
    flex-wrap: unset !important;
}
.main-header .brand-text img {
    width: 80%;
}
.top-bar-left {
    gap: 20px;
    flex-wrap: unset;
}
.company-header {
    flex-wrap: wrap;
}
.nav-tabs-custom {
    background: #f5f5f5;
    border-radius: 10px;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.dosage-grid, .specialty-grid {
    grid-template-columns: repeat(2, 1fr);
}

.dosage-card {
    padding: 15px;
}
.scope-card {
    padding: 20px;
}
}

@media screen and (min-width: 767px) and (max-width: 1299px) {
    .nav-link {
    font-size: 12px;
}
.btn-get-touch {
    font-size: 12px;
}
.phone-text strong {
    font-size: 12px;
}
.top-bar-item {
    font-size: 12px;
}
.marquee-item {
    font-size: 12px;
}

}
  .thankyou-box {
        background: #ffffff;
        padding: 40px 50px;
        border-radius: 16px;
        text-align: center;
        box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        max-width: 420px;
        width: 90%;
    }
.card {
    padding: 120px 0;
    margin: 77px 0 0 0;
}
h1.thankyou-page-head {
    font-size: 35px;
    padding: 0 0 3px 0;
    color: #027058;
    font-weight: 700;
}
    .icon {
        font-size: 60px;
        color: #a2c83b;
        margin-bottom: 15px;
    }
