/* CSS Custom Variables */
:root {
    --primary-color: #0b3d68;
    /* Navy Blue */
    --secondary-color: #008080;
    /* Teal contrast */
    --accent-color: #ff9900;
    /* Warm Accent */
    --white: #ffffff;
    --black: #333333;
    --gray-light: #f4f4f4;
    --gray-dark: #666666;
    --text-color: #444444;
    --body-bg: #ffffff;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--body-bg);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--primary-color);
    margin-bottom: 16px;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.container-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-padding {
    padding: 80px 0;
}

.gray-bg {
    background-color: var(--gray-light);
}

.text-center {
    text-align: center;
}

.section-header {
    margin-bottom: 50px;
}

.section-header h3 {
    font-size: 40px;
    position: relative;
    padding-bottom: 15px;
}

.section-header h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
}

/* Top Bar */
.top-bar {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
    position: fixed; /* Make it fixed at top */
    top: 0;
    width: 100%;
    z-index: 1100; /* above everything except header if needed */
    transition: top 0.3s ease; /* For smooth hide/show */
}

/* Main Header */
.main-header {
    background: #fff;
    position: fixed; /* stay fixed */
    top: 40px; /* below the top bar height (adjust if needed) */
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    z-index: 1099; /* below top bar if top bar is above */
    transition: all 0.3s ease;
}

/* Body padding to avoid content hidden behind top bar + header */
body {
    margin: 0;
    padding-top: 120px; /* top-bar height + header height */
}

.top-contact a {
    color: var(--white);
    text-decoration: none;
    margin-right: 20px;
    font-weight: 300;
    transition: color 0.3s ease;
    display: inline-block;
}

.top-contact a:hover {
    color: var(--secondary-color);
}

.top-contact i {
    margin-right: 8px;
    color: #ffffff;
}

.top-social a {
    color: var(--white);
    margin-left: 15px;
    font-size: 18px;
}

.top-social a:hover {
    color: var(--secondary-color);
}



.main-header.scrolled {
    background-color: #fff;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.12);
}

.main-header.scrolled .logo img {
    height: 42px;
}

.logo img {
    height: 50px;
    width: auto;
    transition: height 0.3s ease;
}

.footer-logo {
    display: block;
    margin-bottom: 25px;
}

.footer-logo img {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
}

/* Navbar Links Desktop Styling */
.nav-list .nav-item {
    margin-left: 20px;
}

.nav-list .nav-link {
    color: var(--black);
    font-weight: 500;
    font-size: 14px;
    padding: 30px 0 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-list .nav-link:hover,
.nav-list .nav-link.active,
.nav-list .nav-link.show {
    color: var(--secondary-color);
}

/* Animated Underline Effect */
@media (min-width: 992px) {
    .nav-list .nav-link::after {
        content: '';
        position: absolute;
        bottom: 20px;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--secondary-color);
        transition: width 0.3s ease;
    }

    .nav-list .nav-link:hover::after,
    .nav-list .nav-link.active::after,
    .nav-list .nav-link.show::after {
        width: 100%;
    }

    .main-header.scrolled .nav-list .nav-link {
        padding: 22px 0 !important;
    }

    .main-header.scrolled .nav-list .nav-link::after {
        bottom: 12px;
    }

    /* Desktop Hover Dropdown */
    .nav-list .dropdown:hover>.dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-list .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(15px);
        transition: all 0.3s ease;
        margin-top: 0;
        border-radius: 8px;
        border: 1px solid rgba(0, 0, 0, 0.05);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        padding: 10px 0;
        min-width: 220px;
    }
}

.dropdown-item {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--black);
    transition: all 0.2s;
}

.dropdown-item:hover,
.dropdown-item.active {
    background-color: rgba(0, 128, 128, 0.05);
    color: var(--secondary-color);
    padding-left: 25px;
}

/* Mobile Toggle Hamburger */
.navbar-toggler {
    transition: transform 0.3s ease;
}

.navbar-toggler[aria-expanded="true"] {
    transform: rotate(90deg);
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

/* Hero Slider Styling */
.hero-slider-section {
    position: relative;
    overflow: hidden;
    z-index: 1;
    width: 100%;
    /* Lower than header */
}

.hero-slider {
    width: 100%;
    max-width: 1900px;
    margin: 0 auto;
}

.slide-item {
    position: relative;
    display: grid;
    grid-template-areas: "stack";
    align-items: center;
    overflow: hidden;
    background-color: #000;
}

.slide-item img,
.slide-overlay {
    grid-area: stack;
}

.slide-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
    /* Ensures "actual image" is never zoomed or cropped */
    display: block;
}

.slide-item img {
    width: 100%;
    height: auto;
    display: block;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--white);
    border: 2px solid var(--secondary-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--secondary-color);
}

/* Slick Custom Styling */
.slick-dots {
    bottom: 30px;
}

.slick-dots li button:before {
    color: var(--white);
    font-size: 12px;
}

.slick-prev,
.slick-next {
    width: 50px;
    height: 50px;
    z-index: 100;
}

.slick-prev {
    left: 20px;
}

.slick-next {
    right: 20px;
}

.slick-prev:before,
.slick-next:before {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 30px;
}

.slick-prev:before {
    content: "\f104";
}

.slick-next:before {
    content: "\f105";
}

/* Values Section Styling */
.value-card {
    text-align: center;
    padding: 40px;
    background: var(--white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    border-bottom: 4px solid transparent;
    border: 1px solid black;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.value-card:hover {
    border-bottom-color: var(--secondary-color);
    transform: translateY(-5px);
}

.value-card i {
    display: inline-block;
    width: 70px;
    height: 70px;
    line-height: 70px;
    background-color: var(--gray-light);
    color: var(--secondary-color);
    font-size: 29px;
    border-radius: 50%;
    margin-bottom: 25px;
}

.value-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
}

/* Our Commitment */
h5.pemn {
    color: white;
}



.value-card p {
    font-size: 15px;
    color: var(--gray-dark);
    margin-bottom: 0;
    flex-grow: 1;
    /* Ensures cards in the same row have even content distribution */
}

/* Products Section Styling */
.product-item-link {
    text-decoration: none;
    display: block;
    height: 100%;
}

.product-item-link:hover {
    text-decoration: none;
}

.product-item {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-img {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-item:hover .product-img img {
    transform: scale(1.1);
}

.product-item h4 {
    padding: 20px 20px 5px;
    font-size: 22px;
    margin-bottom: 0;
}

.product-item p {
    padding: 0 20px 25px;
    font-size: 15px;
    color: var(--gray-dark);
    flex-grow: 1;
    /* Pushes content to fill the card height */
}

/* Footer Styling */
.main-footer {
    background-color: #111;
    color: #eee;
    padding: 80px 0 0;
}

.footer-col h5 {
    color: var(--white);
    font-size: 19px;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 25px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col h5::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-social {
    margin-top: 20px;
}

.footer-social a {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background-color: #333;
    color: var(--white);
    border-radius: 4px;
    margin-right: 10px;
}

.footer-social a:hover {
    background-color: var(--secondary-color);
}

.footer-col.links ul li {
    margin-bottom: 12px;
}

.footer-col.links ul li a {
    color: #bbb;
}

.footer-col.links ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-col.contact p {
    margin-bottom: 15px;
}

.footer-col.contact i {
    color: #fbfbfb;
    margin-right: 10px;
}

.footer-bottom {
    border-top: 1px solid #222;
    padding: 25px 0;
    text-align: center;
    font-size: 14px;
}

.developer-link {
    color: #ffffff;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.developer-link:hover {
    color: var(--white);
    text-decoration: underline;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================
   Responsive Design
   ============================ */
@media (max-width: 991.98px) {
    .header-grid {
        grid-template-columns: 1fr;
    }

    .logo-col {
        margin-bottom: 0;
    }

    .nav-col {
        justify-content: flex-end;
        align-items: center;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* ── Mobile Header & Offcanvas Nav ── */
    .main-header {
        padding: 5px 0;
    }

    .offcanvas-start {
        width: 320px;
        border-right: none;
        box-shadow: 5px 0 25px rgba(0, 0, 0, 0.1);
        background-color: var(--white);
    }

    .offcanvas-header {
        padding: 20px 25px;
    }

    .offcanvas-body {
        padding: 20px 25px;
    }

    .nav-list .nav-item {
        margin-left: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-list .nav-item:last-child {
        border-bottom: none;
    }

    .nav-list .nav-link {
        padding: 16px 5px !important;
        justify-content: space-between;
        display: flex;
        align-items: center;
        font-size: 15px;
        font-weight: 600;
        color: var(--primary-color);
        transition: all 0.3s ease;
    }

    .nav-list .nav-link.active {
        color: var(--secondary-color);
        background-color: transparent;
        padding-left: 10px !important;
    }

    /* Submenu animation for mobile */
    .nav-list .dropdown-menu {
        position: static !important;
        float: none;
        border: none;
        background: rgba(0, 0, 0, 0.02);
        box-shadow: none;
        margin: 0;
        padding: 0;
        border-radius: 4px;
        border-left: 2px solid var(--secondary-color);
        display: block !important;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease-in-out;
    }

    .nav-list .dropdown-menu.show {
        max-height: 400px;
        padding: 5px 0 10px 0;
        margin-bottom: 10px;
        opacity: 1;
        visibility: visible;
    }

    /* Rotate default Bootstrap caret */
    .dropdown-toggle::after {
        transition: transform 0.3s ease;
        margin-left: auto;
        vertical-align: middle;
    }

    .dropdown-toggle.show::after {
        transform: rotate(180deg);
    }

    .dropdown-item {
        padding: 12px 15px 12px 20px;
        font-size: 14px;
        color: var(--text-color);
        font-weight: 500;
    }

    .dropdown-item:hover,
    .dropdown-item.active {
        background-color: transparent;
        color: var(--secondary-color);
        padding-left: 25px;
    }
}

@media (max-width: 767.98px) {
    .top-bar {
        text-align: center;
    }

    .top-contact {
        display: none;
        /* Hide contacts on small mobile */
    }

    .top-social {
        width: 100%;
        text-align: center;
    }

    .slide-item {
        min-height: 0;
        display: block;
    }

    .slide-item img {
        width: 100%;
        height: auto;
        opacity: 1;
    }

    /* Slick Dots Positioning for clean image view */
    .slick-dots {
        bottom: 20px;
    }

    .slick-dots li button:before {
        color: #fff;
        font-size: 12px;
    }
}

/* About Section Styling */
.about-section {
    background-color: var(--white);
    overflow: hidden;
}

.about-image-wrapper {
    position: relative;
    padding-right: 40px;
}

.about-image-wrapper::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--secondary-color);
    border-radius: 8px;
    z-index: 1;
}

.about-image-wrapper img {
    position: relative;
    z-index: 2;
    height: 480px;
    width: 100%;
    object-fit: cover;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.1);
}

.experience-badge {
    position: absolute;
    bottom: 20px;
    right: 15px;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 3;
}

.experience-badge .years {
    display: block;
    font-size: 32px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-tag {
    color: var(--secondary-color);
    font-weight: 800;
    /* Ultra bold for visibility */
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 13px;
    margin-bottom: 15px;
    display: inline-block;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 5px;
}

.section-title {
    font-size: 40px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
}

.about-lead {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
}

.feature-item i {
    color: var(--secondary-color);
    font-size: 20px;
    margin-right: 12px;
}

.feature-item span {
    font-weight: 600;
    color: var(--black);
}

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

@media (max-width: 991.98px) {
    .about-section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 32px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .about-image-wrapper {
        padding-right: 0;
        margin-bottom: 60px;
    }

    .about-image-wrapper::after {
        display: none;
        /* Hide decorative border on small screens to avoid overflow */
    }

    .about-image-wrapper img {
        height: auto;
        min-height: 300px;
    }

    .experience-badge {
        bottom: -20px;
        right: 20px;
        padding: 15px;
    }
}

/* Stats Section Styling - Premium Update */
.stats-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a4d7a 100%);
    color: var(--white);
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
    /* Subtle texture */
    opacity: 0.1;
    z-index: -1;
}

.stat-item {
    padding: 30px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--secondary-color);
}

.stat-icon {
    font-size: 45px;
    color: #00d2d2;
    /* Vibrant Cyan for high contrast on navy */
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(0, 210, 210, 0.3);
    /* Soft glow */
}

.stat-item:hover .stat-icon {
    color: var(--white);
    transform: scale(1.1);
    transition: all 0.3s ease;
}

.stat-number {
    display: inline-block;
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--white);
    font-family: 'Outfit', sans-serif;
}

.stat-plus {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-left: 2px;
}

.stat-title {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    margin-top: 10px;
}

@media (max-width: 767.98px) {
    .stat-number {
        font-size: 36px;
    }

    .stat-plus {
        font-size: 24px;
    }

    .stat-title {
        font-size: 13px;
    }
}

/* CTA Banner Section */
.cta-banner {
    background-image: url('../img/hero-1.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax effect */
    padding: 60px 0;
    position: relative;
    z-index: 1;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 61, 104, 0.85);
    /* Navy overlay */
    z-index: -1;
}

/* Secondary CTA Banner (Solid Gradient) */
.cta-banner-alt {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
    color: var(--white);
    z-index: 1;
}

.cta-banner-alt::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 50%;
    height: 200%;
    background: rgba(255, 255, 255, 0.03);
    transform: rotate(30deg);
    z-index: -1;
    pointer-events: none;
}

.cta-content h2 {
    color: var(--white);
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 40px;
}

.btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
    font-weight: 600;
    padding: 12px 30px;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

@media (max-width: 991.98px) {
    .cta-banner {
        padding: 50px 0;
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .cta-content p {
        font-size: 16px;
    }
}

/* Client Slider Section */
.client-slider-section {
    background-color: var(--white);
    border-top: 1px solid #f0f0f0;
}

.client-logo-item {
    outline: none;
    padding: 15px;
}

.client-logo-item img {
    max-width: 200px;
    width: 100%;
    height: 150px;
    /* Reduced height for better fit */
    object-fit: contain;
    margin: 0 auto;
    transition: all 0.4s ease;
    border-radius: 8px;
    padding: 15px;
    border: 1px solid #3d3838;
    background: #fff;
}

.client-slider .slick-list {
    padding: 20px 0;
}

/* Gallery Section Styling */
.gallery-section {
    background-color: var(--gray-light);
}

.gallery-section .container {
    max-width: 1000px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    background: #fff;
    aspect-ratio: 1/1;
    max-width: 320px;
    margin: 0 auto;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 61, 104, 0.7);
    /* Primary color with transparency */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-overlay i {
    color: var(--white);
    font-size: 24px;
    transform: scale(0.5);
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* Page Header Common */
.page-header {
    background: linear-gradient(rgba(11, 61, 104, 0.9), rgba(11, 61, 104, 0.9)), url('../img/hero-1.webp');
    background-size: cover;
    background-position: center;
    padding: 25px 0;
    color: var(--white);
}

.page-header h1 {
    color: var(--white);
    font-size: 38px;
    /* Slightly smaller to fit compact 25px padding better */
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    /* Shadow for legibility */
}

.breadcrumb-item,
.breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

.breadcrumb-item a {
    color: var(--white);
    font-weight: 600;
    /* Better visibility on dark background */
}

.breadcrumb-item.active {
    color: var(--secondary-color);
    /* Use teal for the active page in breadcrumbs */
    font-weight: 700;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* About Page Specifics */
/* About Page Specifics Update */
.about-overview {
    position: relative;
    overflow: hidden;
}

.about-overview::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--secondary-color) 0%, transparent 70%);
    opacity: 0.05;
    transform: translateY(-50%);
    pointer-events: none;
}

.overview-image {
    position: relative;
    z-index: 2;
}

.overview-image::after {
    content: '';
    position: absolute;
    top: -15px;
    right: -15px;
    bottom: -15px;
    left: 15px;
    background: var(--gray-light);
    border-radius: 1rem;
    z-index: -1;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.overview-image img {
    transition: all 0.5s ease;
}

.overview-image:hover img {
    transform: scale(1.05);
}

.since-badge {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: var(--primary-color);
    /* Switched to primary for deeper contrast */
    color: var(--white);
    padding: 20px 30px;
    border-radius: 12px;
    font-family: 'Outfit';
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.1;
    z-index: 3;
    border: 2px solid var(--secondary-color);
    /* Teal border for flair */
}

.since-badge .label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--secondary-color);
    /* Highlighted label */
    font-weight: 700;
    margin-bottom: 5px;
}

.since-badge .year {
    font-size: 34px;
    font-weight: 800;
}

.about-description p {
    font-size: 16px;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.8;
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.specialty-item {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 18px 24px;
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e0e0e0;
    /* Slightly darker border for visibility */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.specialty-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.specialty-item i {
    color: var(--white);
    margin-right: 18px;
    font-size: 20px;
    width: 44px;
    height: 44px;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.specialty-item:hover i {
    background: var(--secondary-color);
    transform: rotate(360deg);
}

.specialty-item span {
    font-weight: 700;
    /* Bolder text */
    font-size: 15px;
    color: var(--black);
}

.mission-vision-card {
    padding: 50px 40px;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.mission-vision-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.icon-wrap {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    /* Darker background for white icon contrast */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--white);
    /* White icon for pop */
    font-size: 28px;
    box-shadow: 0 8px 15px rgba(11, 61, 104, 0.2);
}

.mission-vision-card h3 {
    font-weight: 700;
    color: var(--primary-color);
}

.mission-list {
    padding: 0;
    margin: 0;
}

.mission-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
}

.mission-list li i {
    color: var(--secondary-color);
    margin-right: 12px;
    margin-top: 5px;
    font-size: 16px;
    /* Slightly larger check icons */
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.05));
}

.strength-card {
    padding: 30px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    border-bottom: 3px solid var(--secondary-color);
}

.strength-number {
    display: block;
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Outfit';
    margin-bottom: 10px;
}

.detail-item {
    background: var(--gray-light);
    padding: 15px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 15px;
}

.detail-item i {
    color: var(--secondary-color);
    margin-right: 10px;
}

.primary-dark-bg {
    background: var(--primary-color);
}

.commitment-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.commitment-list {
    padding: 0;
    margin: 20px 0 0;
}

.commitment-list li {
    margin-bottom: 10px;
}

.commitment-list li i {
    color: var(--secondary-color);
    margin-right: 10px;
}

.choose-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    color: var(--black);
    height: 100%;
}

.choose-card h6 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 700;
}

.choose-card p {
    font-size: 14px;
    margin-bottom: 0;
}

@media (max-width: 991.98px) {
    .page-header h1 {
        font-size: 36px;
    }

    .specialties-grid {
        grid-template-columns: 1fr;
    }

    .since-badge {
        left: 20px;
        bottom: -20px;
    }

    .overview-image img {
        height: 400px;
    }

    .about-content {
        padding-left: 0 !important;
        margin-top: 50px;
    }
}

@media (max-width: 575.98px) {
    .since-badge {
        padding: 15px 20px;
    }

    .since-badge .year {
        font-size: 24px;
    }

    .overview-image img {
        height: 300px;
    }
}

@media (max-width: 767.98px) {
    .products-section .row {
        --bs-gutter-x: 20px;
        /* Responsive gutters */
        row-gap: 20px;
    }

    .product-img {
        height: 160px;
        /* Proportional images for mobile cards */
    }

    .product-item h4 {
        font-size: 15px;
        /* Compact mobile typography */
        padding: 12px 10px 2px;
    }

    .product-item p {
        font-size: 12px;
        padding: 0 10px 15px;
    }

    /* Core Values Mobile 2-Grid */
    .values-section .row {
        --bs-gutter-x: 10px;
        row-gap: 15px;
    }

    .value-card {
        padding: 20px 10px;
    }

    .value-card i {
        width: 45px;
        height: 45px;
        line-height: 45px;
        font-size: 20px;
        margin-bottom: 12px;
    }

    .value-card h4 {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .value-card p {
        font-size: 11px;
        line-height: 1.4;
    }

    /* Client Slider Mobile Fix */
    .client-logo-item {
        padding: 8px;
    }

    .client-logo-item img {
        height: 120px;
        padding: 5px;
    }
}

/* Dropdown Navigation */
.nav-list li {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 240px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 15px 0;
    z-index: 1500;
    border-top: 3px solid var(--secondary-color);
}

/* Hover Bridge: Prevents menu from closing when moving mouse from link to menu */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 0;
    width: 100%;
    height: 40px;
    background: transparent;
}

.nav-list li:hover>.dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    display: block !important;
}

.nav-list li.dropdown {
    display: flex;
    align-items: center;
}

.dropdown-menu li {
    margin-left: 0 !important;
    display: block;
    width: 100%;
}

.dropdown-menu li a {
    padding: 10px 25px;
    display: block;
    color: var(--black);
    text-transform: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
}

.dropdown-menu li a::after {
    display: none !important;
}

.dropdown-menu li a:hover {
    background-color: var(--gray-light);
    color: var(--secondary-color);
    padding-left: 30px;
}

/* Chairman Message Section */
.chairman-section {
    position: relative;
    overflow: hidden;
}

.chairman-image-wrapper {
    position: relative;
    z-index: 2;
}

.chairman-image-wrapper img {
    transition: all 0.5s ease;
}

.chairman-name-tag {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border-left: 4px solid var(--secondary-color);
}

.chairman-name-tag h4 {
    color: white;
    margin-bottom: 0;
    font-size: 18px;
}

.chairman-name-tag span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    display: block;
}

.chairman-quote {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    position: relative;
    padding-left: 40px;
}

.chairman-quote::before {
    content: "\f10d";
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 5px;
    left: 0;
    color: var(--secondary-color);
    font-size: 25px;
    opacity: 0.3;
}

.signature-box {
    margin-top: 40px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.signature-name {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.signature-title {
    font-size: 14px;
    color: var(--gray-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =========================================
   OUR MISSION PAGE CSS
========================================= */

.om-vision-section {
    background: linear-gradient(135deg, rgba(8, 48, 83, 0.05), rgba(0, 128, 128, 0.08));
    padding: 80px 0;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.om-vision-card {
    background: var(--white);
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    border-top: 4px solid var(--secondary-color);
}

.om-vision-card h2 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 20px;
}

.om-vision-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.om-objectives-section {
    padding: 80px 0;
    background-color: var(--white);
}

.om-objective-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.om-objective-card {
    background: var(--white);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.03);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.om-objective-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 128, 128, 0.2);
}

.om-objective-icon {
    width: 65px;
    height: 65px;
    background: rgba(11, 61, 104, 0.05);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.om-objective-card:hover .om-objective-icon {
    background: var(--primary-color);
    color: var(--white);
}

.om-objective-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.4;
}

.om-objective-card>p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.om-objective-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    flex-grow: 1;
}

.om-objective-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

.om-objective-list li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--secondary-color);
    font-size: 16px;
}

.om-objective-footer {
    padding-top: 15px;
    border-top: 1px dashed rgba(0, 0, 0, 0.1);
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
}

.om-aspiration-banner {
    background: linear-gradient(135deg, var(--primary-color), #0a2f52);
    color: var(--white);
    padding: 60px 40px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    margin-top: 60px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.om-aspiration-banner::before {
    content: '\f0eb';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 150px;
    color: rgba(255, 255, 255, 0.04);
    pointer-events: none;
}

.om-aspiration-banner h3 {
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 20px;
    color: white;
}

.om-aspiration-banner p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 2;
}

/* =========================================
   OUR VISION PAGE CSS
========================================= */

.ov-section {
    padding: 80px 0;
    position: relative;
    background-color: var(--white);
}

.ov-section.gray-bg {
    background-color: var(--gray-light);
}

.ov-vision-content h2,
.ov-commitment-content h2 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 36px;
    position: relative;
    padding-bottom: 15px;
}

.ov-vision-content h2::after,
.ov-commitment-content h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), transparent);
    border-radius: 2px;
}

.ov-vision-content p,
.ov-commitment-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.ov-image-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.ov-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
    display: block;
    transition: transform 0.5s ease;
}

.ov-image-wrapper:hover img {
    transform: scale(1.05);
}

.ov-icon-box {
    background: var(--white);
    padding: 45px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.ov-icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(180deg, rgba(0, 128, 128, 0.04), transparent);
    transition: all 0.4s ease;
    z-index: -1;
}

.ov-icon-box:hover::before {
    height: 100%;
}

.ov-icon-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 128, 128, 0.15);
}

.ov-img-icon {
    width: 85px;
    height: 85px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    border: 2px dashed rgba(11, 61, 104, 0.1);
}

.ov-icon-box:hover .ov-img-icon {
    border-color: var(--secondary-color);
    background: rgba(0, 128, 128, 0.05);
    transform: rotate(5deg) scale(1.05);
}

.ov-img-icon i {
    font-size: 35px;
    color: var(--primary-color);
    background: -webkit-linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

.ov-icon-box h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.ov-icon-box p {
    font-size: 14.5px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
}

/* =========================================
   OUR VALUES PAGE CSS
========================================= */

.oval-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(8, 48, 83, 0.05) 0%, rgba(0, 128, 128, 0.05) 100%);
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.oval-intro-card {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    text-align: center;
    position: relative;
    z-index: 2;
}

.oval-intro-card::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 10px;
    background: var(--secondary-color);
    border-radius: 5px 5px 0 0;
}

.oval-intro-card h2 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 25px;
}

.oval-intro-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 0;
}

.oval-grid-section {
    padding: 100px 0;
    background-color: var(--white);
}

.oval-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.oval-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(0, 128, 128, 0.05) 0%, transparent 70%);
    z-index: -1;
    border-radius: 50%;
    transform: translate(30%, 30%);
    transition: all 0.5s ease;
}

.oval-card:hover::after {
    transform: translate(10%, 10%) scale(1.5);
}

.oval-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(11, 61, 104, 0.1);
}

.oval-icon {
    width: 70px;
    height: 70px;
    background: rgba(11, 61, 104, 0.06);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--primary-color);
    margin-bottom: 25px;
    transition: all 0.4s ease;
    transform: rotate(-5deg);
}

.oval-card:hover .oval-icon {
    background: var(--primary-color);
    color: var(--white);
    transform: rotate(0) scale(1.1);
}

.oval-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.oval-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

.oval-card p:last-child {
    margin-bottom: 0;
}

.oval-philosophy {
    background: var(--gray-light);
    padding: 80px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.oval-phil-box {
    background: var(--primary-color);
    padding: 50px;
    border-radius: 20px;
    color: var(--white);
    box-shadow: 0 25px 50px rgba(11, 61, 104, 0.2);
    position: relative;
    overflow: hidden;
}

.oval-phil-box::before {
    content: '\f200';
    /* Pie chart icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: -20px;
    bottom: -40px;
    font-size: 250px;
    color: rgba(255, 255, 255, 0.03);
    transform: rotate(15deg);
    pointer-events: none;
}

.oval-phil-box h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--white);
    position: relative;
    z-index: 2;
}

.oval-phil-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    position: relative;
    z-index: 2;
}

.oval-phil-list li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.oval-phil-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 5px;
    width: 25px;
    height: 25px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.oval-phil-box p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 0;
    color: var(--white);
    font-weight: 500;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

/* =========================================
   CONTACT US PAGE CSS (REDESIGNED)
========================================= */

.cont-main-bg {
    background-color: #f9fbfc;
    padding: 100px 0;
}

.cont-title-area {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px;
}

.cont-title-area span {
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    background: rgba(0, 128, 128, 0.1);
    padding: 6px 15px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 15px;
}

.cont-title-area h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.cont-title-area p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

/* Redesigned Cards */
.cont-card-grid {
    margin-bottom: 80px;
}

.cont-pro-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s ease;
    border-bottom: 4px solid transparent;
    height: 100%;
}

.cont-pro-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(8, 48, 83, 0.02) 0%, rgba(0, 128, 128, 0.04) 100%);
    z-index: -1;
    opacity: 0;
    transition: all 0.4s ease;
}

.cont-pro-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(8, 48, 83, 0.08);
    border-bottom-color: var(--secondary-color);
}

.cont-pro-card:hover::after {
    opacity: 1;
}

.cont-icon-fluent {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: all 0.4s ease;
    position: relative;
}

.cont-icon-fluent::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 1px dashed rgba(8, 48, 83, 0.2);
    transition: all 0.6s ease;
}

.cont-pro-card:hover .cont-icon-fluent {
    background: var(--primary-color);
    color: var(--white);
}

.cont-pro-card:hover .cont-icon-fluent::before {
    transform: rotate(180deg);
    border-color: var(--secondary-color);
}

.cont-pro-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.cont-pro-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 5px;
}

.cont-pro-card a {
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
}

.cont-pro-card a.cont-link-hover:hover {
    color: var(--secondary-color) !important;
}

.cont-watermark {
    position: absolute;
    right: -20px;
    bottom: -20px;
    font-size: 150px;
    color: rgba(0, 0, 0, 0.02);
    z-index: -1;
    transform: rotate(-15deg);
    transition: all 0.4s ease;
}

.cont-pro-card:hover .cont-watermark {
    color: rgba(0, 128, 128, 0.05);
    transform: rotate(0deg) scale(1.1);
}

/* Redesigned Form Area */
.cont-wrapper-box {
    background: var(--white);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.cont-form-panel {
    padding: 60px;
}

.cont-form-panel h3 {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.cont-form-panel p.sub {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

.cont-input-group {
    position: relative;
    margin-bottom: 25px;
}

.cont-input-group i {
    position: absolute;
    top: 18px;
    left: 20px;
    color: #aaa;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cont-input-styled {
    width: 100%;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px 20px 16px 50px;
    font-size: 15px;
    color: #333;
    transition: all 0.3s ease;
}

textarea.cont-input-styled {
    padding-top: 16px;
}

.cont-input-styled:focus {
    background: var(--white);
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 4px rgba(0, 128, 128, 0.1);
    outline: none;
}

.cont-input-styled:focus+i,
.cont-input-group:focus-within i {
    color: var(--secondary-color);
}

.cont-submit-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a5c94 100%);
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 600;
    padding: 18px 40px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    width: 100%;
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(11, 61, 104, 0.15);
}

.cont-submit-btn:hover {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #006666 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(0, 128, 128, 0.25);
    color: var(--white);
}

/* Map Panel */
.cont-map-panel {
    height: 100%;
    min-height: 500px;
    position: relative;
}

.cont-map-panel iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.cont-map-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 20px;
}

.cont-map-overlay-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.cont-map-overlay-text h5 {
    margin: 0 0 5px 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
}

.cont-map-overlay-text p {
    margin: 0;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

@media (max-width: 991px) {
    .cont-map-panel {
        min-height: 400px;
    }
}

/* =========================================
   GALLERY PAGE CSS
========================================= */
.gal-main-section {
    padding: 100px 0;
    background-color: #f9fbfc;
}

.gal-sub-tag {
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.gal-main-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.gal-pro-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    aspect-ratio: 1 / 1;
    background: #000;
    border: 1px solid #000;
}

.gal-pro-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gal-pro-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 61, 104, 0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    padding: 20px;
}

.gal-pro-item:hover img {
    transform: scale(1.1) rotate(2deg);
    filter: blur(2px) brightness(0.7);
}

.gal-pro-item:hover .gal-pro-overlay {
    opacity: 1;
    visibility: visible;
}

.gal-pro-icon {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 15px;
    transform: translateY(20px);
    transition: all 0.4s ease 0.1s;
}

.gal-pro-overlay h5 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.2s;
}

.gal-pro-item:hover .gal-pro-icon,
.gal-pro-item:hover .gal-pro-overlay h5 {
    transform: translateY(0);
}

@media (max-width: 991px) {
    .gal-main-title {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .gal-main-section {
        padding: 60px 0;
    }
}

/* =========================================
   BLOG DETAIL PAGE CSS
========================================= */
.blog-det-section {
    padding: 80px 0;
    background-color: #fdfdfd;
}

.blog-det-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f1f1;
}

.blog-det-featured-img {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
}

.blog-det-featured-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.blog-det-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--secondary-color);
    color: #fff;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
}

.blog-det-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.blog-det-meta span {
    font-size: 14px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-det-meta i {
    color: var(--secondary-color);
}

.blog-det-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 25px;
    line-height: 1.3;
}

.blog-det-overview {
    font-size: 18px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 30px;
    font-weight: 500;
    color: var(--primary-color);
}

.blog-det-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 35px 0 15px;
}

.blog-det-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.blog-det-quote {
    background: #f8fafc;
    border-left: 5px solid var(--secondary-color);
    padding: 30px;
    margin: 40px 0;
    font-style: italic;
    font-size: 20px;
    color: #333;
    border-radius: 0 15px 15px 0;
}

.blog-det-share {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #eef2f6;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.blog-det-share span {
    font-weight: 700;
    color: var(--primary-color);
}

.blog-det-social {
    display: flex;
    gap: 15px;
}

.blog-det-social a {
    width: 40px;
    height: 40px;
    background: #f1f5f9;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-det-social a:hover {
    background: var(--secondary-color);
    color: #fff;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .blog-det-wrapper {
        padding: 25px;
    }

    .blog-det-title {
        font-size: 26px;
    }
}

/* =========================================
   PRODUCTS PAGE CSS (Unique Classes)
========================================= */
.prods-page-section {
    padding: 80px 0;
    background-color: #fdfdfd;
}

.prods-page-link {
    text-decoration: none;
    display: block;
    height: 100%;
    color: inherit;
}

.prods-page-link:hover {
    color: inherit;
}

.prods-sub-tag {
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.prods-main-title {
    font-size: 38px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.prods-page-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.prods-page-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
    border-color: var(--secondary-color);
}

.prods-page-img {
    height: 240px;
    overflow: hidden;
}

.prods-page-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.prods-page-item:hover .prods-page-img img {
    transform: scale(1.1);
}

.prods-page-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.prods-page-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
    /* Limit Title to 1 line to prevent overlapping */
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.prods-page-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
    /* Limit Description to 3 lines to prevent overlapping */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 991px) {
    .prods-main-title {
        font-size: 30px;
    }
}

@media (max-width: 575px) {
    .prods-page-section {
        padding: 60px 0;
    }

    .prods-page-content {
        padding: 15px;
    }

    .prods-page-title {
        font-size: 17px;
    }

    .prods-page-desc {
        font-size: 14px;
    }
}

/* =========================================
   PRODUCT DETAILS PAGE CSS
========================================= */
.prod-det-main-section {
    padding: 80px 0;
    background-color: #fff;
}

.prod-det-gallery {
    position: sticky;
    top: 100px;
}

.prod-main-swiper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
}

.prod-main-swiper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.prod-thumb-swiper {
    height: 100px;
    box-sizing: border-box;
    padding: 10px 0;
}

.prod-thumb-swiper .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.4;
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
    transition: opacity 0.3s ease;
}

.prod-thumb-swiper .swiper-slide-thumb-active {
    opacity: 1;
    border: 2px solid var(--secondary-color);
}

.prod-thumb-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.prod-det-cat {
    color: var(--secondary-color);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    display: block;
}

.prod-det-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.prod-det-short-desc {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
}

.prod-det-meta-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 35px;
    padding: 25px;
    background: #f8fbff;
    border-radius: 15px;
    border: 1px dashed #cfe2ff;
}

.meta-item {
    font-size: 15px;
    color: var(--primary-color);
}

.meta-item strong {
    color: #333;
}

.prod-det-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.pdet-btn {
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 16px;
}

.pdet-btn-call {
    background-color: var(--secondary-color);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 128, 128, 0.3);
}

.pdet-btn-contact {
    background-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 4px 15px rgba(11, 61, 104, 0.3);
}

.pdet-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    color: #fff;
}

.prod-det-features h5 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.prod-det-features ul {
    padding: 0;
}

.prod-det-features li {
    font-size: 15px;
    color: #444;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.prod-det-features i {
    color: #28a745;
}

.nav-tabs .nav-link {
    color: #888;
    font-weight: 600;
    padding: 15px 30px;
    border: none;
}

.nav-tabs .nav-link.active {
    color: var(--primary-color);
    border-bottom: 3px solid var(--secondary-color) !important;
    background: transparent;
}

.prod-tab-content {
    line-height: 1.8;
    color: #666;
}

@media (max-width: 991px) {
    .prod-main-swiper img {
        height: 400px;
    }

    .prod-det-title {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .prod-det-meta-grid {
        grid-template-columns: 1fr;
    }

    .prod-det-actions {
        flex-direction: column;
    }

    .pdet-btn {
        justify-content: center;
    }
}

/* =========================================
   BLOG PAGE CSS
========================================= */
.blog-main-section {
    padding: 80px 0;
    background-color: #fdfdfd;
}

.blog-pro-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    transition: all 0.3s ease;
    border: 1px solid #000000;
    height: 100%;
}

.blog-pro-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.blog-img-box {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-pro-card:hover .blog-img-box img {
    transform: scale(1.1);
}

.blog-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--secondary-color);
    color: #fff;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
}

.blog-info {
    padding: 25px;
}

.blog-date {
    font-size: 13px;
    color: #888;
    display: block;
    margin-bottom: 10px;
}

.blog-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
    /* Limit to 2 lines */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

.blog-desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    /* Limit to 3 lines */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.6;
}

.blog-read-more {
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.blog-read-more:hover {
    gap: 12px;
    color: var(--primary-color);
}

/* Sidebar Styling */
.sidebar-widget {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    border: 1px solid #f1f1f1;
}

.widget-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.widget-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary-color);
}

.search-box {
    display: flex;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid #eee;
}

.search-box input {
    flex-grow: 1;
    border: none;
    padding: 12px 15px;
    outline: none;
}

.search-box button {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 0 15px;
    cursor: pointer;
}

.recent-posts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recent-posts-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #eee;
}

.recent-posts-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.recent-thumb {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
}

.recent-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-text a {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
    line-height: 1.3;
}

.recent-text span {
    font-size: 12px;
    color: #999;
}

.sidebar-contact-banner {
    background: url('../img/hero-1.webp') no-repeat center center;
    background-size: cover;
    padding: 50px 30px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    color: #fff;
    text-align: center;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 61, 104, 0.9);
}

.banner-content {
    position: relative;
    z-index: 1;
}

.banner-content h3 {
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: 700;
}

.banner-content p {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.banner-info-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 14px;
}

.banner-info-item i {
    color: var(--secondary-color);
}

.banner-btn {
    display: inline-block;
    background: var(--secondary-color);
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.banner-btn:hover {
    background: #fff;
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* =========================================
   CLIENT PAGE CSS
========================================= */
.cli-section {
    padding: 100px 0;
    background: #f8fafc;
}

.cli-header {
    text-align: center;
    margin-bottom: 60px;
}

.cli-header span {
    background: rgba(0, 128, 128, 0.1);
    color: var(--secondary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 15px;
}

.cli-header h2 {
    font-size: 38px;
    font-weight: 800;
    color: var(--primary-color);
}

.cli-grid-container {
    padding: 20px;
}

.cli-item {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 180px;
    border: 1px solid #090909;
}

.cli-item img {
    max-width: 100%;
    max-height: 100%;
    transition: all 0.4s ease;
}

.cli-trust-section {
    padding: 80px 0;
    background: var(--primary-color);
    color: #fff;
    text-align: center;
}

.cli-trust-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.cli-trust-content p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

/* Floating Action Buttons */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #25D366;
    color: #fff;
    font-size: 32px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    animation: whatsapp-pulse 2s infinite;
}

.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 20px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.whatsapp-btn:hover,
.scroll-top-btn:hover {
    transform: translateY(-5px);
    color: #fff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 768px) {
    .whatsapp-btn {
        bottom: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
        font-size: 28px;
    }

    .scroll-top-btn {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}