html,
body {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: #fdfbfb;
    color: #111;
    overflow-x: hidden;
    position: relative;
}


.header {
    background: #fdfbfb;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.main-nav .nav-link {
    color: #111;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.05rem;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.logo img {
    height: 45px;
    width: auto;
    transition: transform 0.3s ease;
}

@media (min-width: 992px) {
    .logo img {
        scale: 1.5;
        height: 50px;
    }
}

.main-nav .nav-link:hover,
.main-nav .nav-link.active {
    color: #555;
}

.social-icons a {
    color: #000;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.social-icons a:hover {
    color: #555;
    transform: translateY(-3px);
}

.hero-section {
    min-height: calc(100vh - 122px);
    display: flex;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 3.8rem;
    font-weight: 500;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.15rem;
    line-height: 1.6;
    max-width: 90%;
}

.hero-image-wrapper {
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    position: relative;

    animation: fadeInRight 1s ease-out;
}

.hero-image {
    object-fit: cover;
    object-position: center;
    border-radius: 40px;
    min-height: 450px;
}

.floating-info-bar {
    position: relative;
    left: 0;
    width: 100%;
    border: 2px solid #111;
    border-radius: 60px;
    padding: 25px 10px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 10;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    animation: fadeInUp 1s ease-out 0.5s both;
}

.info-item {
    font-weight: 700;
    font-size: 1.2rem;
    color: #111;
    text-align: center;
}


@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@media (max-width: 1199px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 2.5rem;
    }

    .floating-info-bar {
        width: 100%;
        padding: 20px 10px;
    }

    .info-item {
        font-size: 1rem;
    }
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 2.2rem;
    }

    .hero-section {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .hero-image-wrapper {
        border-radius: 20px;
    }

    .hero-image {
        border-radius: 20px;
        min-height: 300px;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2.2rem;
        word-wrap: break-word;
    }

    .hero-subtitle {
        font-size: 1.8rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .mobile-info-bar {
        background: #fff;
    }

    .header {
        padding: 11px;
    }
}


.footer-logo {
    max-height: 80px;
}

.footer-text-mono {
    font-family: 'Consolas', 'Courier New', monospace;
    font-size: 0.95rem;
}

.footer-heading-mono,
.footer-link-mono {
    font-family: 'Consolas', 'Courier New', monospace;
}

.footer-icon-fixed {
    width: 18px;
    text-align: center;
}

.footer-hr {
    border-width: 1.5px;
    opacity: 1;
}

.footer-copyright {
    font-family: 'Consolas', 'Courier New', monospace;
    font-size: 0.85rem;
}

/* About & Products Section */
.about-products-section h1 {
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.5px;
}

.about-text {
    font-size: 1.05rem;
}

.about-text-wide {
    max-width: 1200px;
}

.product-card {
    background-color: #e5e5e5;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 130px;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.product-img {
    max-height: 110px;
    object-fit: contain;
    max-width: 50%;
}

.product-title {
    font-size: 1.15rem;
    text-align: left;
}


.carousel-badge {
    background-color: #e2e8f0;
    color: #e65100;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.carousel-section-title {
    font-size: 1.8rem;
    letter-spacing: -0.5px;
}

.carousel-item-card {
    padding: 10px;
    transition: transform 0.3s ease;
}

.carousel-item-card:hover {
    transform: translateY(-5px);
}

.carousel-img-wrapper {
    height: 250px;
    width: 100%;
}

.carousel-img {
    max-height: 100%;
    max-width: 100%;
    object-fit: cover;
}

.carousel-product-name {
    font-size: 1.15rem;
    letter-spacing: 0.3px;
    color: #000;
}

.carousel-item-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 25px;
    transition: all 0.4s ease;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.carousel-item-card:hover {
    transform: translateY(-8px);
    border-color: #43CED9;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.carousel-img-wrapper {
    width: 100%;
    height: 180px;
    background: #f8f9fa;
    border-radius: 15px;
    padding: 15px;
    transition: background 0.3s;
}

.carousel-item-card:hover .carousel-img-wrapper {
    background: #f0f7f8;
}

.carousel-img {
    max-height: 100%;
    width: auto !important;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.carousel-item-card:hover .carousel-img {
    transform: scale(1.1);
}

/* Owl Carousel Custom Nav & Dots */
.owl-theme .owl-nav {
    margin-top: 30px;
    text-align: center;
}

.owl-theme .owl-nav [class*='owl-'] {
    background: #fff;
    color: #111;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    line-height: 43px;
    font-size: 1.2rem;
    margin: 0 8px;
    transition: all 0.3s ease;
    padding: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.owl-theme .owl-nav [class*='owl-']:hover {
    background: #43CED9;
    color: #fff;
    border-color: #43CED9;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(249, 115, 22, 0.2);
}

.owl-theme .owl-dots {
    margin-top: 20px !important;
}

.owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 6px;
    background: #cbd5e1;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #43CED9;
    transform: scale(1.3);
}

/* Dedication Section */
.dedication-section {
    background-color: #070707;
}

.dedication-title {
    font-size: 2.5rem;
    letter-spacing: -1px;
    font-family: 'Outfit', sans-serif;
}

.dedication-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #cbd5e1;
}

.dedication-text-small {
    font-size: 1.05rem;
    line-height: 1.6;
}

.text-cyan {
    color: #43CED9 !important;
}


.feature-icon {
    font-size: 1.8rem;
    min-width: 40px;
}

/* Gallery Section */
.gallery-title {
    font-size: 2.5rem;
    letter-spacing: -0.5px;
    font-family: 'Outfit', sans-serif;
}

.gallery-img {
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
    transition: transform 0.5s ease;
}

/* Elevate Section */
.elevate-title {
    font-size: 2.4rem;
    letter-spacing: -1px;
}

.elevate-text {
    font-size: 1.05rem;
    line-height: 1.7;
}

.elevate-btn {
    letter-spacing: 0.5px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.elevate-btn:hover {
    transform: translateY(-3px);
    background-color: #43CED9;
    border-color: #43CED9;
}

/* Gallery Hover Overlay */
.gallery-overlay-container {
    overflow: hidden;
    border-radius: 15px;
}

.gallery-overlay-container:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 15px;
}

.gallery-overlay-container:hover .gallery-overlay {
    opacity: 1;
}

/* Testimonial Section */
.testimonial-badge {
    background-color: #e2e8f0;
    color: #43CED9;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.testimonial-title {
    font-size: 2.5rem;
    letter-spacing: -0.5px;
    font-family: 'Outfit', sans-serif;
}

.testimonial-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05) !important;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
}

.bg-cyan {
    background-color: #43CED9 !important;
}


.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    font-style: italic;
}

/* Client Section Styles */
.client-logo {
    max-height: 50px;
    width: auto !important;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.client-logo:hover {
    opacity: 1;
    transform: scale(1.1);
}

.client-carousel .item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
}

/* Contact & WhatsApp Link Styles */
.contact-link {
    color: #43CED9;
    text-decoration: none;
    font-weight: 700;
    border-bottom: 2px solid rgba(249, 115, 22, 0.2);
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #36b5bf;
    border-bottom-color: #36b5bf;
}

.whatsapp-link {
    display: inline-block;
    background-color: #25d366;
    color: white;
    padding: 2px 12px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2);
}

.whatsapp-link:hover {
    background-color: #128c7e;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.3);
}

/* Bubble Gallery Styles */
.bubble-gallery-container {
    height: 500px;
    width: 100%;
    margin: 20px 0;
    position: relative;
}

.bubble {
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    background: #f8f9fa;
    transition: transform 0.4s ease;
    border: 5px solid #fff;
}



.bubble img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bubble-main {
    width: 380px;
    height: 380px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.bubble-left {
    width: 260px;
    height: 260px;
    bottom: 20px;
    left: 5%;
    z-index: 1;
}

.bubble-right {
    width: 220px;
    height: 220px;
    bottom: 60px;
    right: 8%;
    z-index: 1;
}

@media (max-width: 991px) {
    .bubble-gallery-container {
        height: 400px;
    }

    .bubble-main {
        width: 280px;
        height: 280px;
    }

    .bubble-left {
        width: 180px;
        height: 180px;
    }

    .bubble-right {
        width: 160px;
        height: 160px;
    }
}

@media (max-width: 767px) {
    .bubble-gallery-container {
        height: 250px;
    }

    .bubble-main {
        width: 180px;
        height: 180px;
        border-width: 3px;
    }

    .bubble-left {
        width: 120px;
        height: 120px;
        left: 0;
        bottom: 0;
        border-width: 3px;
    }

    .bubble-right {
        width: 100px;
        height: 100px;
        right: 0;
        bottom: 20px;
        border-width: 3px;
    }
}

/* Inventory Grid Styles */
.inventory-card {
    overflow: hidden;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.inventory-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.inventory-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

/* Dropdown Styles */
.main-nav .dropdown-menu {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 1rem;
    min-width: 300px;
    margin-top: 0;
    background: #fff;
    top: 100%;
}

.main-nav .dropdown {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: -15px;
}



.main-nav .dropdown-item {
    font-weight: 500;
    color: #111;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    white-space: normal;
}

.main-nav .dropdown-item:hover {
    background-color: #000;
    color: #fff;
    transform: translateX(5px);
}

.main-nav .dropdown-toggle::after {
    transition: transform 0.3s ease;
    vertical-align: middle;
}

.main-nav .dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.main-nav .dropdown:hover .dropdown-menu {
    display: block;
    animation: fadeInUp 0.3s ease-out;
}


.offcanvas {
    background-color: #000000;
    color: #ffffff;
    width: 320px !important;
    max-width: 100%;
}

.offcanvas-header {
    padding: 2rem 1.5rem;
    border-bottom: 1px solid rgba(67, 206, 217, 0.2) !important;
}

.offcanvas .logo {
    background: #fff;
    border-radius: 10px;
    padding: 2px;
}

.offcanvas .logo img {
    scale: 1.2;
    object-fit: contain;
    height: 50px;
    width: auto;
    padding: 5px;
}

.offcanvas-title {
    color: #43CED9;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
    opacity: 0.8;
}

.offcanvas-body {
    padding: 2rem 1.5rem;
}

.offcanvas .nav-link {
    color: #ffffff !important;
    font-size: 1.25rem !important;
    font-weight: 600 !important;
    padding: 0.5rem 0 !important;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
    display: inline-block;
}

.offcanvas .nav-link:hover,
.offcanvas .nav-link.active {
    color: #43CED9 !important;
    padding-left: 10px !important;
}

/* Fix Mobile Dropdown */
.offcanvas .dropdown-menu {
    background-color: rgba(67, 206, 217, 0.05);
    border: none;
    border-left: 2px solid #43CED9;
    border-radius: 0;
    margin-top: 0;
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: static !important;
    display: none;
    transform: none !important;
    float: none;
}

.offcanvas .dropdown-menu.show {
    display: block;
    animation: fadeIn 0.4s ease;
}

.offcanvas .dropdown-item {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 1rem !important;
    padding: 0.6rem 0 !important;
    white-space: normal;
    background: transparent !important;
}

.offcanvas .dropdown-item:hover {
    color: #43CED9 !important;
}

.offcanvas .dropdown-toggle::after {
    transition: transform 0.3s ease;
    border-top-color: #ffffff;
}

.offcanvas .dropdown-toggle.show::after {
    transform: rotate(180deg);
}


.offcanvas .social-icons a {
    color: #ffffff !important;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.offcanvas .social-icons a:hover {
    color: #43CED9 !important;
    transform: translateY(-5px);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}



.main-nav .dropdown-item:hover {
    background-color: #000;
    color: #fff;
    transform: translateX(5px);
}

.text-cyan {
    color: #43CED9 !important;
}

.bg-cyan {
    background-color: #43CED9 !important;
}


.elevate-btn:hover {
    background-color: #43CED9;
    border-color: #43CED9;
}

/* Page Banner */
.page-banner {
    background: #000;
    padding: 100px 0;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(67, 206, 217, 0.1) 0%, transparent 70%);
}

.page-banner h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.page-banner .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.page-banner .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* Contact Cards */
.contact-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 24px;
    border: 1px solid #eee;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: #43CED9;
}

.contact-card .icon-box {
    width: 70px;
    height: 70px;
    background: rgba(67, 206, 217, 0.1);
    color: #43CED9;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.contact-card:hover .icon-box {
    background: #43CED9;
    color: #fff;
    transform: scale(1.1) rotate(10deg);
}

.contact-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #111;
}

.contact-card p {
    color: #000;
    margin-bottom: 5px;
    font-size: 1.15rem;
}

.contact-card a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: #43CED9;
}

.lead {
    color: #000;
    font-size: 24px;
}

.para-cus {
    color: #000;
    font-size: 18px;
    text-align: justify;
}

@media (max-width: 767px) {
    .page-banner {
        padding: 60px 0;
    }

    .page-banner h1 {
        font-size: 2.5rem;
    }
}

/* ============================================
   SERVICES SHOWCASE CAROUSEL
   ============================================ */

.services-showcase-section {
    position: relative;
    overflow: hidden;
}


.services-showcase-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(67, 206, 217, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.services-section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #43CED9, #1ab8c5);
    color: #000;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 20px;
    border-radius: 50px;
}

.services-section-title {
    font-size: 2.4rem;
    color: #000;
    letter-spacing: -0.5px;
}


/* Card */
.service-card-wrap {
    padding: 12px;
}

.service-card {
    background: #0d1e30;
    border: 1px solid #1a2d42;
    border-radius: 20px;
    padding: 36px 30px 30px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    height: 100%;

    transition: transform 0.35s cubic-bezier(.22, .68, 0, 1.2),
        border-color 0.3s,
        box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #43CED9, #1ab8c5);
    border-radius: 20px 20px 0 0;
    opacity: 0;
    transition: opacity 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: #43CED9;
    box-shadow: 0 16px 48px rgba(67, 206, 217, 0.12);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(67, 206, 217, 0.12);
    border: 1px solid rgba(67, 206, 217, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #43CED9;
    transition: background 0.3s, transform 0.3s;
    flex-shrink: 0;
}

.service-card:hover .service-card-icon {
    background: rgba(67, 206, 217, 0.2);
    transform: scale(1.08);
}

.service-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.4;
}

.service-card-desc {
    font-size: 1.05rem;
    color: #fff;
    line-height: 1.7;
    margin: 0;
    flex-grow: 1;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #43CED9;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: gap 0.3s, color 0.3s;
    margin-top: auto;
}

.service-card-link:hover {
    color: #fff;
    gap: 14px;
}

/* Owl carousel overrides for services */
.services-owl-carousel .owl-dots {
    margin-top: 30px;
    text-align: center;
}

.services-owl-carousel .owl-dot span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #1a2d42;
    margin: 0 4px;
    display: block;
    transition: all 0.3s;
}

.services-owl-carousel .owl-dot.active span {
    background: #43CED9;
    width: 24px;
    border-radius: 4px;
}

.services-owl-carousel .owl-nav .owl-prev,
.services-owl-carousel .owl-nav .owl-next {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #0d1e30 !important;
    border: 1px solid #1a2d42 !important;
    color: #43CED9 !important;
    font-size: 1.1rem !important;
    line-height: 42px;
    text-align: center;
    transition: all 0.3s;
}

.services-owl-carousel .owl-nav .owl-prev:hover,
.services-owl-carousel .owl-nav .owl-next:hover {
    background: #43CED9 !important;
    color: #000 !important;
    border-color: #43CED9 !important;
}

/* ============================================
   PREMIUM FOOTER REDESIGN
   ============================================ */


.site-footer {
    background: #0a0a0a;
    color: #ccc;
    padding-top: 70px;
    padding-bottom: 0;
    border-top: 3px solid #43CED9;
}

.site-footer .footer-brand-logo {
    height: 100px;
    background-color: #fff;
    margin-bottom: 20px;
    border-radius: 10px;

}

.site-footer .footer-brand-desc {
    font-size: 1.15rem;
    color: #fff;
    line-height: 1.8;
    margin-bottom: 22px;
}

.site-footer address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 1.15rem;
    color: #fff;
}

.site-footer address .footer-info-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.site-footer address .footer-info-row i {
    color: #43CED9;
    min-width: 18px;
    margin-top: 3px;
}

.site-footer address a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.site-footer address a:hover {
    color: #43CED9;
}

.site-footer .footer-col-heading {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 12px;
}

.site-footer .footer-col-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 3px;
    background: #43CED9;
    border-radius: 2px;
}

.site-footer .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.site-footer .footer-links li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s, padding-left 0.3s;
}

.site-footer .footer-links li a i {
    color: #43CED9;
    font-size: 0.7rem;
}

.site-footer .footer-links li a:hover {
    color: #43CED9;
    padding-left: 4px;
}

.site-footer .footer-social-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.site-footer .footer-social-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: color 0.3s;
}

.site-footer .footer-social-links a .social-icon-box {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: background 0.3s, border-color 0.3s, color 0.3s;
    flex-shrink: 0;
}

.site-footer .footer-social-links a:hover .social-icon-box {
    background: #43CED9;
    border-color: #43CED9;
    color: #fff;
}

.site-footer .footer-social-links a:hover {
    color: #43CED9;
}

.site-footer .footer-divider {
    border-color: #1e1e1e;
    margin: 40px 0 0;
}

.site-footer .footer-bottom {
    background: #050505;
    padding: 18px 0;
    font-size: 0.82rem;
    color: #666;
}

.site-footer .footer-bottom a {
    color: #43CED9;
    text-decoration: none;
}

@media (max-width: 767px) {
    .site-footer {
        padding-top: 50px;
    }

    .logo img {
        scale: 1.5;
    }

    .site-footer .footer-col-heading {
        margin-top: 30px;
    }
}