/* ===== Global ===== */
body {
    font-family: 'Poppins', sans-serif;
}

/* Splash Loader */
#splash-loader {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, #000, #001f4d);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

#splash-loader.hide {
    opacity: 0;
    visibility: hidden;
}

.loader-box {
    text-align: center;
    color: #fff;
    animation: fadeUp 1.2s ease;
}

.loader-logo {
    width: 120px;
    margin-bottom: 15px;
    animation: zoomIn 1.2s ease;
}

.loader-box h2 {
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 2px;
}

.loader-box h1 {
    font-size: 34px;
    font-weight: 700;
    color: #2b8cff;
}

/* Loading Bar */
.loading-bar {
    width: 180px;
    height: 4px;
    background: rgba(255,255,255,0.2);
    margin: 20px auto 0;
    overflow: hidden;
    border-radius: 10px;
}

.loading-bar span {
    display: block;
    width: 40%;
    height: 100%;
    background: #2b8cff;
    animation: loading 1.2s infinite;
}

/* Animations */
@keyframes loading {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(300%); }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes zoomIn {
    from { transform: scale(0.5); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}


/* ===== Top Header ===== */
.top-header {
    background: #000;
    color: #fff;
    font-size: 14px;
    padding: 6px 0;
}

/* ===== Navbar ===== */
.main-navbar {
    background: #fff;
    padding: 15px 0;
    transition: all 0.4s ease;
}

.main-navbar.scrolled {
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    padding: 10px 0;
}

/* Logo */
.navbar-brand img {
    height: 45px;
}

/* Nav Links */
.nav-link {
    color: #000 !important;
    margin-left: 20px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #0066ff !important;
}

/* Contact Button */
.btn-nav {
    background: #0066ff;
    color: #fff !important;
    padding: 8px 18px;
    border-radius: 30px;
}

.btn-nav:hover {
    background: #004bcc;
}

/* ===== Mobile Toggle ===== */
.navbar-toggler {
    border: none;
    outline: none;
}

.navbar-toggler span {
    display: block;
    width: 25px;
    height: 3px;
    background: #000;
    margin: 5px 0;
}

/* ===== Mobile Sidebar ===== */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100%;
    background: #000;
    padding: 30px;
    transition: 0.5s ease;
    z-index: 9999;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu a {
    display: block;
    color: #fff;
    font-size: 18px;
    margin: 20px 0;
    text-decoration: none;
}

.mobile-menu a:hover {
    color: #00aaff;
}

.contact-btn {
    background: #0066ff;
    padding: 10px;
    border-radius: 25px;
    text-align: center;
}

/* Close Button */
.close-btn {
    color: #fff;
    font-size: 30px;
    position: absolute;
    right: 20px;
    top: 10px;
    cursor: pointer;
}

/* ===== Responsive ===== */
@media(max-width: 991px){
    .navbar-collapse {
        display: none !important;
    }
}



/* ===== Hero Slider ===== */
.hero-slider {
    background: linear-gradient(120deg, #000 40%, #0a1f44 100%);
    color: #fff;
    padding: 90px 0;
}

/* Content */
.hero-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #dcdcdc;
}

/* Form Box */
.hero-form {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    color: #000;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.hero-form h4 {
    text-align: center;
    margin-bottom: 20px;
    color: #0066ff;
    font-weight: 600;
}

/* Form Inputs */
.hero-form input,
.hero-form textarea {
    width: 100%;
    padding: 10px 14px;
    margin-bottom: 15px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 14px;
}

.hero-form textarea {
    resize: none;
    height: 80px;
}

/* Button */
.hero-form button {
    width: 100%;
    background: #0066ff;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 30px;
    font-size: 15px;
    transition: 0.3s;
}

.hero-form button:hover {
    background: #004bcc;
}

/* Carousel Controls */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1);
}

/* ===== Responsive ===== */
@media(max-width: 991px) {
    .hero-slider {
        padding: 60px 0;
    }

    .hero-content {
        text-align: center;
        margin-bottom: 30px;
    }

    .hero-content h1 {
        font-size: 32px;
    }
}


/* ===== Services Section ===== */
.services-section {
    padding: 80px 0;
    background: #f8f9fa;
}

/* Section Title */
.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000;
}

.section-title p {
    font-size: 16px;
    color: #555;
    max-width: 700px;
    margin: auto;
}

/* Service Box */
.service-box {
    background: #fff;
    padding: 35px 25px;
    border-radius: 10px;
    text-align: center;
    margin-top: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.service-box i {
    font-size: 40px;
    color: #0066ff;
    margin-bottom: 20px;
}

.service-box h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-box p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Hover Effect */
.service-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* View More Button */
.view-more-btn {
    background: #0066ff;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 15px;
    transition: 0.3s;
}

.view-more-btn:hover {
    background: #004bcc;
    color: #fff;
}

/* Responsive */
@media(max-width: 768px) {
    .section-title h2 {
        font-size: 30px;
    }
}



/* ===== Sticky Scroll Navbar ===== */
.main-navbar {
    position: absolute;
    width: 100%;
    top: 30px; /* because black header is above */
    left: 0;
    z-index: 999;
    transition: all 0.4s ease;
}

/* Navbar after scroll */
.main-navbar.scrolled {
    position: fixed;
    top: 0;
    background: #ffffff;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    animation: slideDown 0.4s ease;
}

/* Navbar links color change on scroll */
.main-navbar.scrolled .nav-link {
    color: #000 !important;
}

/* Logo sizing effect */
.main-navbar.scrolled .navbar-brand img {
    height: 45px;
    transition: 0.3s;
}

/* Animation */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Mobile support */
@media (max-width: 991px) {
    .main-navbar {
        top: 0;
    }
}


/* ===== About Section ===== */
.about-section {
    padding: 90px 0;
    background: #ffffff;
}

/* Left Content */
.about-subtitle {
    display: inline-block;
    color: #0066ff;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-size: 14px;
}

.about-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}

.about-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Bullet List */
.about-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.about-list li {
    font-size: 15px;
    color: #444;
    margin-bottom: 10px;
}

.about-list i {
    color: #0066ff;
    margin-right: 8px;
}

/* Button */
.about-btn {
    margin-top: 20px;
    background: #0066ff;
    color: #fff;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 15px;
    transition: 0.3s;
}

.about-btn:hover {
    background: #004bcc;
    color: #fff;
}

/* Right Boxes */
.about-boxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.about-box {
    background: #f8f9fa;
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.about-box h3 {
    font-size: 34px;
    font-weight: 700;
    color: #0066ff;
    margin-bottom: 5px;
}

.about-box p {
    font-size: 14px;
    color: #555;
}

/* Hover */
.about-box:hover {
    transform: translateY(-6px);
}

/* Responsive */
@media(max-width: 991px) {
    .about-content h2 {
        font-size: 30px;
    }

    .about-boxes {
        margin-top: 40px;
    }
}


/* ===== Why Choose Us Section ===== */
.why-choose-section {
    padding: 90px 0;
    background: #f8f9fa;
}

/* Box */
.why-box {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    margin-top: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.why-box i {
    font-size: 42px;
    color: #0066ff;
    margin-bottom: 20px;
}

.why-box h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #000;
}

.why-box p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* Hover Effect */
.why-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.15);
}

/* Responsive */
@media(max-width: 768px) {
    .why-box {
        padding: 30px 20px;
    }
}


/* ===== Portfolio Section ===== */
.portfolio-section {
    padding: 90px 0;
    background: #ffffff;
}

/* Portfolio Item */
.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    margin-top: 30px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.12);
}

.portfolio-item img {
    width: 100%;
    height: auto;
    transition: transform 0.4s ease;
}

/* Overlay */
.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    text-align: center;
}

.portfolio-overlay h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.portfolio-overlay span {
    color: #00aaff;
    font-size: 14px;
}

/* Hover Effects */
.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

/* Button */
.portfolio-btn {
    background: #0066ff;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 15px;
    transition: 0.3s;
}

.portfolio-btn:hover {
    background: #004bcc;
    color: #fff;
}

/* Responsive */
@media(max-width: 768px) {
    .portfolio-overlay h4 {
        font-size: 18px;
    }
}

/* ===== Call To Action Section ===== */
.cta-section {
    position: relative;
    background: url("../images/call.png") center center / cover no-repeat;
    padding: 100px 0;
    overflow: hidden; /* IMPORTANT */
}

/* Blue Overlay (FULLY CONTAINED) */
.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 102, 255, 0.694);
    z-index: 1;
}

/* Content Above Overlay */
.cta-content-row {
    position: relative;
    z-index: 2;
}

/* Text Styling */
.cta-content h2 {
    color: #fff;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-content p {
    color: #f1f1f1;
    font-size: 16px;
    line-height: 1.7;
    max-width: 720px;
}

/* Button */
.cta-btn {
    background: #000;
    color: #fff;
    padding: 14px 36px;
    border-radius: 30px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: #111;
    color: #004bcc;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 991px) {
    .cta-section {
        padding: 70px 0;
        text-align: center;
    }

    .cta-content h2 {
        font-size: 30px;
    }

    .cta-btn {
        margin-top: 25px;
    }
}


.industries-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-title h2 {
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}

.section-title p {
    max-width: 650px;
    margin: auto;
    color: #555;
    font-size: 16px;
}

.industry-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    height: 100%;
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.15);
}

.industry-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.industry-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.industry-card:hover .industry-img img {
    transform: scale(1.08);
}

.industry-content {
    padding: 25px;
}

.industry-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin-bottom: 10px;
}

.industry-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}


/* ===== Footer ===== */
.footer {
    background: #000;
    color: #ccc;
    padding: 70px 0 30px;
}

.footer-logo img {
    max-width: 160px;
    margin-bottom: 15px;
}

.footer-about p {
    font-size: 14.5px;
    line-height: 1.7;
    color: #bbb;
}

/* Footer Titles */
.footer-title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #bbb;
    font-size: 14.5px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #0066ff;
    padding-left: 5px;
}

/* Contact Info */
.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    font-size: 14.5px;
    margin-bottom: 12px;
    color: #bbb;
}

.footer-contact i {
    color: #0066ff;
    margin-right: 10px;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13.5px;
    color: #aaa;
    margin-bottom: 5px;
}

.footer-bottom .legal {
    font-size: 12.5px;
    color: #777;
}

/* Responsive */
@media (max-width: 767px) {
    .footer {
        text-align: center;
    }

    .footer-links a:hover {
        padding-left: 0;
    }
}



/* ===== Contact Section ===== */
.contact-section {
    background: #0066ff;
    padding: 90px 0;
    color: #fff;
}

/* Contact Info */
.contact-info h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-info p {
    font-size: 15.5px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #e6ecff;
}

.contact-info ul {
    list-style: none;
    padding: 0;
}

.contact-info ul li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 15.5px;
}

.contact-info ul li i {
    font-size: 18px;
    margin-right: 15px;
    color: #fff;
}

/* Form Box */
.contact-form-box {
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    color: #333;
}

.contact-form-box h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #000;
}

.contact-form-box .form-control {
    border-radius: 6px;
    height: 48px;
    font-size: 14.5px;
}

.contact-form-box textarea.form-control {
    height: auto;
}

/* Button */
.contact-btn {
    background: #000;
    color: #fff;
    padding: 12px 35px;
    border-radius: 30px;
    font-size: 14.5px;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: #003cff;
    color: white;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 991px) {
    .contact-info h2 {
        font-size: 30px;
    }

    .contact-section {
        text-align: center;
    }

    .contact-info ul li {
        justify-content: center;
    }
}

/* ===== About Page Banner ===== */
.about-banner {
    position: relative;
    background: url("../images/banner/banner2.png") center center / cover no-repeat;
    height: 320px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Blue Overlay */
.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #000, #001f4dca);;
    z-index: 1;
}

/* Content */
.about-content {
    position: relative;
    z-index: 2;
}

.about-content h1 {
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Breadcrumb */
.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: #fff;
    font-weight: 500;
}

.breadcrumb-item.active {
    color: #e0e0e0;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #fff;
}

/* Responsive */
@media (max-width: 767px) {
    .about-content h1 {
        font-size: 32px;
    }

    .about-banner {
        height: 260px;
    }
}



 /* //////////////////////// about page content //////////////// */

.about_page {
    padding: 90px 0;
    background: #fff;
}

.about_page h2 {
    font-size: 38px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
}

.about-lead {
    font-size: 17px;
    max-width: 750px;
    margin: auto;
    color: #555;
    line-height: 1.7;
    text-align: justify;
}

.about_page h3 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #000;
}

.about_page p {
    font-size: 15.5px;
    color: #555;
    line-height: 1.7;
    text-align: justify;
}

/* Founder Image */
.founder-img img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* Founder Message */
.founder-message {
    background: #f4f8ff;
    padding: 35px;
    border-left: 5px solid #0066ff;
    border-radius: 8px;
}

/* Mission & Vision */
.about-box {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    height: 100%;
    transition: all 0.3s ease;
}

.about-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Responsive */
@media (max-width: 991px) {
    .about_page h2 {
        font-size: 30px;
    }

    .about_page {
        text-align: center;
    }

    .founder-message {
        text-align: left;
    }
}


.service_page {
    padding: 90px 0;
    background: #f8f9fa;
}

.service_page h2 {
    font-weight: 700;
    color: #000;
}

.service-lead {
    max-width: 750px;
    margin: auto;
    color: #555;
    font-size: 16px;
}

/* Card */
.service-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border-top: 5px solid #0066ff;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.15);
}

/* Image */
.service-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* Content */
.service-content {
    padding: 25px;
}

.service-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: #000;
}

.service-content ul {
    padding-left: 18px;
    margin-bottom: 20px;
}

.service-content ul li {
    font-size: 14.5px;
    color: #555;
    margin-bottom: 6px;
}

/* Button */
.service-btn {
    background: #000;
    color: #fff;
    border-radius: 25px;
    padding: 10px 30px;
    transition: all 0.3s ease;
}

.service-btn:hover {
    background: #0066ff;
    color: #fff;
}


.portfo_page {
    padding: 90px 0;
    background: #ffffff;
}

.portfo_page h2 {
    font-weight: 700;
    color: #000;
}

.portfo-lead {
    max-width: 750px;
    margin: auto;
    color: #555;
}

/* Card */
.portfo-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    height: 100%;
}

.portfo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.15);
}

/* Image */
.portfo-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* Content */
.portfo-content {
    padding: 25px;
}

.portfo-content h4 a {
    color: #000;
    font-weight: 600;
    text-decoration: none;
}

.portfo-content h4 a:hover {
    color: #0066ff;
}

.portfo-content p {
    font-size: 14.5px;
    color: #555;
}

/* Button */
.portfo-btn {
    margin-top: 10px;
    background: #000;
    color: #fff;
    border-radius: 25px;
    padding: 10px 30px;
    transition: all 0.3s ease;
}

.portfo-btn:hover {
    background: #0066ff;
    color: #fff;
}


.blog_section {
    padding: 90px 0;
    background: linear-gradient(to bottom, #f9fbff, #ffffff);
}

.blog_section h2 {
    font-weight: 700;
    color: #000;
}

.blog-lead {
    max-width: 720px;
    margin: auto;
    color: #555;
}

/* Blog Card */
.blog-card {
    background: #fff;
    border-radius: 30px 5px 30px 5px;
    overflow: hidden;
    box-shadow: 0 14px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    height: 100%;
}

.blog-card.shape-alt {
    border-radius: 5px 30px 5px 30px;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 55px rgba(0,0,0,0.15);
}

/* Image */
.blog-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* Content */
.blog-content {
    padding: 25px;
}

.blog-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: #000;
}

.blog-content p {
    font-size: 14.5px;
    color: #555;
    margin-bottom: 15px;
}

/* Button */
.blog-btn {
    background: #0066ff;
    color: #fff;
    border-radius: 25px;
    padding: 10px 28px;
    transition: 0.3s ease;
}

.blog-btn:hover {
    background: #000;
    color: #fff;
}



.media_hub {
    padding: 90px 0;
    background: #000;
    color: #fff;
}

.media_hub h2 {
    color: #fff;
    font-weight: 700;
}

.media-lead {
    max-width: 650px;
    margin: auto;
    color: #ccc;
}

/* Card */
.media-card {
    display: block;
    background: linear-gradient(135deg, #111, #1a1a1a);
    border-radius: 15px;
    text-align: center;
    padding: 35px 20px;
    color: #fff;
    transition: all 0.4s ease;
    height: 100%;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

.media-card i {
    font-size: 36px;
    margin-bottom: 10px;
}

.media-card h5 {
    font-weight: 600;
    margin-bottom: 5px;
}

.media-card span {
    font-size: 13px;
    color: #aaa;
}

.media-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.8);
}

/* Hover brand glow */
.media-card.youtube:hover 
{ background: linear-gradient(135deg, #ff0000, #b30000);
  color: white;
  text-decoration: none;

}
.media-card.instagram:hover 
{ background: linear-gradient(135deg, #f58529, #dd2a7b);
  color: white;
  text-decoration: none;

}
.media-card.linkedin:hover 
{ background: linear-gradient(135deg, #0a66c2, #003c7e);
  color: white;
  text-decoration: none;

}
.media-card.facebook:hover 
{ background: linear-gradient(135deg, #1877f2, #0a3d91);
  color: white;
  text-decoration: none;

}


.conacto-page {
    padding: 90px 0;
    background: linear-gradient(135deg, #f5f9ff, #ffffff);
}

.conacto-page h2 {
    font-weight: 700;
    color: #000;
}

.contact-lead {
    max-width: 700px;
    margin: auto;
    color: #555;
}

/* Info Box */
.contact-info-box {
    background: #000;
    color: #fff;
    border-radius: 14px;
    padding: 30px;
    height: 100%;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-item i {
    font-size: 20px;
    color: #2b8cff;
    margin-right: 15px;
}

.map-box iframe {
    width: 100%;
    height: 220px;
    border: 0;
    border-radius: 10px;
}

/* Form */
.contact-form-box {
    background: #fff;
    padding: 35px;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.contact-form-box h4 {
    font-weight: 600;
    margin-bottom: 20px;
}

.contact-btn {
    background: #0066ff;
    color: #fff;
    padding: 10px 30px;
    border-radius: 25px;
    transition: 0.3s;
}

.contact-btn:hover {
    background: #000;
    color: #fff;
}


.float-btn {
    position: fixed;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    transition: 0.3s ease;
}

.float-btn:hover {
    transform: scale(1.1);
}

/* WhatsApp - Right */
.whatsapp-float {
    right: 20px;
    bottom: 80px;
    background: #25d366;
}

/* Call - Left */
.call-float {
    left: 20px;
    bottom: 80px;
    background: #0066ff;
}

/* Mobile */
@media(max-width: 768px) {
    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    .whatsapp-float {
        right: 15px;
        bottom: 70px;
    }

    .call-float {
        left: 15px;
        bottom: 70px;
    }
}
