/* Main Styles for Marasi Marine */
@font-face {
    font-family: 'Lora';
    font-style: italic;
    font-weight: 400;
    font-display: swap;
    src: url('../webfonts/Lora-Italic-400.ttf') format('truetype');
}

@font-face {
    font-family: 'Lora';
    font-style: italic;
    font-weight: 500;
    font-display: swap;
    src: url('../webfonts/Lora-Italic-500.ttf') format('truetype');
}

@font-face {
    font-family: 'Lora';
    font-style: italic;
    font-weight: 600;
    font-display: swap;
    src: url('../webfonts/Lora-Italic-600.ttf') format('truetype');
}

@font-face {
    font-family: 'Lora';
    font-style: italic;
    font-weight: 700;
    font-display: swap;
    src: url('../webfonts/Lora-Italic-700.ttf') format('truetype');
}

@font-face {
    font-family: 'Lora';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../webfonts/Lora-Regular-400.ttf') format('truetype');
}

@font-face {
    font-family: 'Lora';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('../webfonts/Lora-Regular-500.ttf') format('truetype');
}

@font-face {
    font-family: 'Lora';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../webfonts/Lora-Regular-600.ttf') format('truetype');
}

@font-face {
    font-family: 'Lora';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../webfonts/Lora-Regular-700.ttf') format('truetype');
}

:root {
    --primary-color: #001d3d;
    --primary-dark: #000814;
    --secondary-color: #00b4d8;
    --accent-color: #0077b6;
    --text-dark: #1a1a1a;
    --text-muted: #6c757d;
    --text-light: #ffffff;
    --bg-light: #f8f9fa;
}

html {
    overflow-x: hidden !important;
}

body {
    font-family: 'Lora', serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden !important;
    font-size: 16px;
}

p {
    font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: var(--primary-color);
}

/* Navbar */
.navbar {
    padding: 1.2rem 0;
    transition: all 0.3s ease;
    z-index: 1000;
}

.navbar-brand img {
    height: 55px;
}

.navbar.scrolled {
    background: var(--primary-color) !important;
    padding: 0.8rem 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.nav-link {
    color: #fff !important;
    font-weight: 500;
    margin: 0 0.4rem;
    transition: color 0.3s;
    padding: 0.5rem 0.4rem !important;
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-color) !important;
}

/* Hero Slider Section */
.hero-slider-wrapper {
    position: relative;
    height: 100vh;
}

.main-hero-slider .item {
    height: 100vh;
}

.slide-content {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    color: var(--text-light);
}

.slide-text {
    max-width: 800px;
    text-align: left;
}

.slide-text h1 {
    font-size: 5rem;
    font-weight: 500;
    text-transform: none;
    /* Matching the image style */
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.1;
    font-family: 'Lora', serif;
    /* Updated to Lora */
}

.slide-text p {
    font-size: 17px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

/* Explore More Button */
.explore-btn {
    display: inline-flex;
    align-items: center;
    background: #2ba5b9;
    /* Vibrant green from image */
    color: #fff !important;
    text-decoration: none;
    padding: 10px 15px 10px 25px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1.1rem;
    transition: transform 0.3s ease, background 0.3s ease;
}

.explore-btn:hover {
    background: #248d9e;
    transform: scale(1.05);
}

/* Navbar Enquiry Button */
.nav-explore-btn {
    display: inline-flex;
    align-items: center;
    background: #2ba5b9;
    color: #fff !important;
    text-decoration: none;
    padding: 3px 6px 3px 18px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: transform 0.3s ease, background 0.3s ease;
}

.nav-explore-btn:hover {
    background: #248d9e;
    transform: scale(1.05);
}

.nav-explore-btn .arrow-circle {
    width: 30px;
    height: 30px;
    margin-left: 10px;
    font-size: 0.85rem;
}

.arrow-circle {
    width: 32px;
    height: 32px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
    font-size: 1rem;
}

.arrow-circle i {
    transform: rotate(45deg);
    /* Arrow pointing up-right */
}

/* New Intro (Qudrat Style) - Redesigned */
.qudrat-intro {
    background: #fff;
}

.qudrat-title,
.main-section-heading {
    font-size: 2.8rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 25px;
}

.service-section-heading {
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.text-vibrant-green,
.text-highlight {
    color: #2ba5b9;
}

.qudrat-desc,
.main-section-desc {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

/* Lavender Button - Now Unified Cyan */
.explore-btn-lavender {
    display: inline-flex;
    align-items: center;
    background: #2ba5b9;
    color: #fff !important;
    text-decoration: none;
    padding: 10px 15px 10px 25px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    transition: transform 0.3s ease, background 0.3s ease;
}

.explore-btn-lavender:hover {
    background: #248d9e;
    transform: scale(1.05);
}

.explore-btn-lavender .arrow-circle {
    width: 32px;
    height: 32px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
}

/* About Image Layout */
.about-image-wrapper {
    position: relative;
}

.about-img {
    border-radius: 12px;
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.floating-badge {
    position: absolute;
    bottom: 70px;
    left: -70px;
    background: #fff;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    z-index: 5;
}

.badge-text {
    font-weight: 600;
    color: #333;
    font-size: 1.1rem;
}


.view-more-btn {
    display: inline-flex;
    align-items: center;
    background: #fff;
    /* White background */
    color: #111827 !important;
    text-decoration: none;
    padding: 6px 10px 6px 15px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.view-more-btn:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

.view-more-btn .arrow-circle {
    width: 24px;
    height: 24px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
}

.view-more-btn .arrow-circle i {
    transform: rotate(45deg);
    font-size: 0.7rem;
}

/* Intro Section */
.section-padding {
    padding: 140px 0 0 0;
}

.section-padding2 {
    margin: 140px 0 0 0;
}

.section-tag {
    color: var(--secondary-color);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 30px;
}

.intro-images-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
    margin-top: 40px;
}

.intro-img-item {
    height: 350px;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

/* Mission Section */
.mission-card {
    background: #fff;
    padding: 50px 30px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    height: 100%;
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.mission-icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    background: rgba(0, 180, 216, 0.1);
    color: var(--secondary-color);
    border-radius: 50%;
    font-size: 1.5rem;
    display: inline-block;
    margin-bottom: 25px;
}

/* Client Logo Section */
.clients-section {
    background: #fff;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.client-logo {
    max-width: 150px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.client-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Stats Section */
.stats-container {
    display: flex;
    margin-top: -50px;
    z-index: 10;
    position: relative;
}

.stat-item {
    flex: 1;
    padding: 40px;
    color: #fff;
    text-align: center;
}

.stat-item.dark {
    background: var(--primary-color);
}

.stat-item.cyan {
    background: var(--secondary-color);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

/* Services Redesign Section */
.services-redesign {
    padding: 0 !important;
    /* Overriding common padding for fluid layout */
}

.services-sidebar {
    background: linear-gradient(rgba(0, 29, 61, 0.85), rgba(0, 29, 61, 0.85)), url('../img/banner.jpg') no-repeat center center/cover;
    min-height: 100%;
    display: flex;
    align-items: center;
    padding: 80px 60px;
    position: relative;
}

/* Triangle pointer from image */
.services-sidebar::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 20px solid rgba(0, 29, 61, 0.85);
    z-index: 2;
}

@media (max-width: 992px) {
    .services-sidebar::after {
        display: none;
    }
}

.sidebar-content h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.orange-btn {
    background: #ffa500 !important;
    border: none !important;
}

.orange-btn:hover {
    background: #ff8c00 !important;
}

.services-grid-bg {
    background: #fdfdfd;
    padding: 100px 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.service-card {
    background: #ffffff;
    padding: 25px 20px;
    border-radius: 20px;
    border: 1px solid #ebebeb;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.service-card:hover {
    transform: translateY(-10px);
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.service-card:hover h4,
.service-card:hover .icon-box,
.service-card:hover .icon-box i {
    color: #ffffff !important;
}

.service-card .icon-box {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.service-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0;
    line-height: 1.3;
}

/* Service Card Colors */
.service-card .icon-box i {
    display: block;
}

/* Custom icon colors based on card */
.services-grid .service-card:nth-child(1) .icon-box {
    color: #007bff;
}

.services-grid .service-card:nth-child(2) .icon-box {
    color: #dc3545;
}

.services-grid .service-card:nth-child(3) .icon-box {
    color: #28a745;
}

.services-grid .service-card:nth-child(4) .icon-box {
    color: #fd7e14;
}

.services-grid .service-card:nth-child(5) .icon-box {
    color: #6f42c1;
}

.services-grid .service-card:nth-child(6) .icon-box {
    color: #17a2b8;
}

.services-grid .service-card:nth-child(7) .icon-box {
    color: #fcc100;
}

.services-grid .service-card:nth-child(8) .icon-box {
    color: #6c757d;
}

.services-grid .service-card:nth-child(9) .icon-box {
    color: #e83e8c;
}

/* Stats Section */
.stat-item {
    padding: 40px 20px;
    border: 1px solid #ebebeb;
    border-radius: 20px;
    transition: transform 0.3s ease;
    height: 100%;
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-number {
    font-size: 2.1rem;
    font-weight: 300;
    color: var(--primary-color);
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 14px;
    color: #777;
    line-height: 1.4;
    text-transform: lowercase;
    max-width: 200px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .stat-number {
        font-size: 2.2rem;
    }
}

/* Team Video Section */
.team-video-section {
    background: linear-gradient(rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.0)), url('../img/paralax.jpg') no-repeat center center/cover;
    min-height: 700px;
    display: flex;
    align-items: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    background-attachment: fixed;
}

.team-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    max-width: 550px;
    margin-bottom: 40px;
}

.btn-discover {
    display: inline-flex;
    align-items: center;
    background: #2ba5b9;
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-discover i {
    background: #000;
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

.btn-discover:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Play Button & Ripple */
.play-btn {
    width: 100px;
    height: 100px;
    background: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 24px;
    text-decoration: none;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.play-btn:hover {
    color: var(--secondary-color);
    transform: scale(1.1);
}

.ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    z-index: 1;
    animation: ripple 3s infinite;
}

.ripple:nth-child(2) {
    animation-delay: 1s;
}

.ripple:nth-child(3) {
    animation-delay: 2s;
}

@keyframes ripple {
    0% {
        width: 100px;
        height: 100px;
        opacity: 0.5;
    }

    100% {
        width: 250px;
        height: 250px;
        opacity: 0;
    }
}

@media (max-width: 992px) {
    .team-video-section {
        padding: 80px 0;
        text-align: center;
    }

    .team-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .video-play-box {
        margin-top: 50px;
    }

    .team-title {
        font-size: 2.8rem;
    }
}



/* Owl Dots Refinement */
.main-hero-slider .owl-dots {
    position: absolute;
    bottom: 30px;
    width: 100%;
    text-align: center;
}

/* Navbar Dropdown Hover & Styling */
@media (min-width: 992px) {
    .navbar .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
        animation: fadeIn 0.3s ease;
    }
}

.dropdown-menu {
    background: #fff;
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    margin-top: 10px;
}

.dropdown-item {
    padding: 8px 25px;
    font-weight: 500;
    color: var(--primary-color);
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
    font-size: 15px;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background: #f8f9fa;
    color: var(--secondary-color);
    border-left-color: var(--secondary-color);
    padding-left: 30px;
}

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

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


.main-hero-slider .owl-dot span {
    width: 12px !important;
    height: 12px !important;
    background: rgba(255, 255, 255, 0.5) !important;
    margin: 5px 7px !important;
    transition: all 0.3s ease !important;
}

/* Modern Mission Vision Section */
.mv-section-modern {
    background: #001d3d;
    /* Dark Greenish Tone matching reference */
    color: #fff;
    padding: 130px 0px;
}

.text-cyan {
    color: #ccff00;
    /* Lime green accent from reference */
    font-weight: 600;
    letter-spacing: 1px;
}

.mv-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease;
    border-top-left-radius: 60px;
}

.mv-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
}

.mv-img-wrapper {
    height: 300px;
    overflow: hidden;
    position: relative;
    padding: 24px;
}

.mv-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    border-top-left-radius: 40px;
    transition: filter 0.3s ease;
}


.mv-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.mv-title {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 15px;
    color: #fff;
}

.mv-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    line-height: 1.8;
    flex-grow: 1;
}

.mv-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ccff00;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: gap 0.3s ease;
}

.mv-link i {
    margin-left: 8px;
    font-size: 0.8rem;
}

.mv-link:hover {
    gap: 5px;
    color: #fff;
}

/* Featured Card (Center) */
.mv-card.featured {
    background: #2ba5b9;
    /* Lime Green */
    border: none;
    color: #fff;
}

.mv-card.featured .mv-title {
    color: #fff !important;
    /* Dark Green Text */
}

.mv-card.featured .mv-desc {
    color: #fff;
    opacity: 0.7;
}

.mv-card.featured .mv-link {
    color: #003300;
}

.mv-card.featured .mv-link:hover {
    color: #000;
}

.mv-card.featured .mv-img-wrapper img {
    filter: none;
}


/* Brand Support Section */
.brand-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100px;
}

.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.brand-card img {
    max-height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

.brand-card:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .brand-card {
        padding: 15px;
        height: 80px;
    }

    .brand-card img {
        max-height: 40px;
    }
}

.main-hero-slider .owl-dot.active span {
    background: #88d825 !important;
    transform: scale(1.2);
}

/* WhatsApp Floating Button */


/* News Section */
.news-card {
    border: none;
    background: transparent;
}

.news-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.news-date {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    display: block;
}

.news-title {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

/* Contact Section */
.contact-wrapper {
    background: var(--primary-color);
    color: #fff;
}

.contact-wrapper h2 {
    font-size: 2.8rem;
}

.contact-form .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 12px 15px;
    margin-bottom: 20px;
}

.contact-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.contact-form .btn-primary {
    background: #2ba5b9;
    border: none;
    padding: 12px 30px;
    font-weight: 500;
}

.contact-form .btn-primary:hover {
    background: #248d9e;
}

/* Footer */
.footer {
    background: #000814;
    color: #fff;
}

/* Footer Refined */
.footer-new {
    background: #000814;
    color: #fff;
    padding: 100px 0 0 0;
    font-family: 'Lora', serif;
    position: relative;
}

.footer-new::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background-image: url('../img/footer-after.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom right;
    pointer-events: none;
    z-index: 0;
    opacity: 0.2;
}

.footer-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 500px;
    height: 500px;
    background-image: url('../img/footer-after.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom right;
    pointer-events: none;
    z-index: 0;
    opacity: 0.2;
    rotate: 180deg;
}

.footer-top {
    padding-bottom: 80px;
    position: relative;
    z-index: 1;
}

.footer-title {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 30px;
}

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

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

.footer-links-list li a,
.footer-links-list li span {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: block;
}

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

.contact-list-refined i {
    width: 20px;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.contact-list-refined li a:hover i {
    color: #fff;
}

.footer-contact-info .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-contact-info .contact-icon {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--secondary-color);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    background: var(--secondary-color);
    color: #fff;
    border-color: var(--secondary-color);
}

.footer-contact-info a,
.footer-contact-info span {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1.05rem;
}

.social-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.social-btn.facebook {
    background: #3b5998;
}

.social-btn.twitter {
    background: #1da1f2;
}

.social-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-btn.behance {
    background: #1769ff;
}

.social-btn.dribbble {
    background: #ea4c89;
}

.social-btn.linkedin {
    background: #0077b5;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    color: #fff;
}

.newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 12px 20px;
}

.newsletter-form .btn-cyan {
    background: var(--secondary-color);
    color: #fff;
    border: none;
    padding: 12px 20px;
    font-weight: 600;
}

.footer-badges .badge-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.partner-badge {
    background: #fff;
    color: #333;
    padding: 10px;
    border-radius: 6px;
    font-size: 0.85rem;
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 0;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #fff;
}

/* About Page Refined Styles */
.about-banner-refined {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/banner.jpg');
    background-size: cover;
    background-position: center;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-banner-refined h1 {
    font-size: 3.5rem;
}

.tag-line-element {
    width: 40px;
    height: 2px;
    background: #6c757d;
    vertical-align: middle;
}


/* Modern Service Cards (Owl Carousel) */
.service-card-modern {
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.service-card-modern:hover {
    transform: translateY(-5px);
}

.service-card-modern .img-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
    margin-bottom: 25px;
}

.service-card-modern .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.service-card-modern:hover .img-wrapper img {
    transform: scale(1.1);
}

.service-label {
    font-size: 0.8rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
    border-bottom: 2px solid #2ba5b9;
    /* Cyan accent */
    display: inline-block;
    padding-bottom: 5px;
}

.service-card-modern h4 {
    font-size: 1.3rem;
    font-family: 'DM Serif Display', serif;
    /* Or primary font */
    color: #001d3d;
    margin-bottom: 30px;
    padding: 0 20px;
    min-height: 60px;
    /* Ensure alignment */
    display: flex;
    align-items: center;
    justify-content: center;
}

.read-btn {
    background: #fff;
    /* White background */
    color: #000;
    /* Black text */
    border: 1px solid #000;
    /* Black border */
    padding: 10px 35px;
    border-radius: 50px;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.read-btn:hover {
    background: #000;
    /* Hover same as text/border color (Black) */
    color: #fff;
    /* Text becomes white */
    border-color: #000;
}

.services-carousel .owl-stage-outer {
    padding-top: 10px;
    padding-bottom: 20px;
}

/* Slider Navigation Arrows */
.services-carousel .owl-nav button.owl-prev,
.services-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: #fff !important;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: #2ba5b9 !important;
    font-size: 18px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.services-carousel .owl-nav button.owl-prev:hover,
.services-carousel .owl-nav button.owl-next:hover {
    background: #2ba5b9 !important;
    color: #fff !important;
    transform: translateY(-50%) scale(1.1);
}

.services-carousel .owl-nav button.owl-prev {
    left: -25px;
}

.services-carousel .owl-nav button.owl-next {
    right: -25px;
}

@media (max-width: 1200px) {
    .services-carousel .owl-nav button.owl-prev {
        left: 0;
    }

    .services-carousel .owl-nav button.owl-next {
        right: 0;
    }
}

/* Services Page Styles */
.service-section-img {
    height: 600px;
    width: 100%;
    object-fit: cover;
}

@media (max-width: 992px) {
    .service-section-img {
        height: 400px;
    }
}

.intro-section-heading {
    font-size: 2rem;
    line-height: 1.2;
}

.vm-small-heading {
    font-size: 1.2rem;
}

.ceo-statement-text {
    line-height: 1.6;
    color: #333;
    font-style: italic;
    font-size: 17px !important;
}

/* Video CTA Section */
.video-cta-section {
    position: relative;
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../img/background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 0;
    color: #fff;
    overflow: hidden;
    min-height: 700px;
    display: flex;
    align-items: center;
}

.video-cta-content h2 {
    font-size: 2.8rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 35px;
    line-height: 1.2;
    color: #fff;
}

.btn-discover-green {
    display: inline-flex;
    align-items: center;
    background: #5cb85c;
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-discover-green:hover {
    background: #4cae4c;
    color: #fff;
    transform: translateY(-3px);
}

.btn-discover-green .arrow-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: #000;
    border-radius: 50%;
    margin-left: 12px;
    font-size: 0.7rem;
}

.video-play-btn {
    width: 100px;
    height: 100px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #000;
    position: relative;
    z-index: 2;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    margin: auto;
}

.video-play-btn:hover {
    transform: scale(1.1);
    background: #fff;
    color: #000;
}


.ceo-image-wrapper img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: bottom;
    border-radius: 10px;
    border: 1px solid #cecece;
}

@media (max-width: 992px) {
    .footer-new {
        padding-top: 60px;
    }

    .footer-top {
        padding-bottom: 40px;
    }
}



.qudrat-intro2 {
    margin-top: 100px;
}


@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .intro-images-grid {
        grid-template-columns: 1fr;
    }

    .stats-container {
        flex-direction: column;
        margin-top: 0;
    }

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

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Projects Page Refined Styles */
.project-card-refined {
    position: relative;
    height: 420px;
    border-radius: 20px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
}

.project-card-refined:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.project-card-refined::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

.project-info {
    position: relative;
    z-index: 2;
}

.project-info h4 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.3;
}

.project-actions {
    display: flex;
    gap: 15px;
}

.project-info .view-more-btn {
    padding: 6px 12px 6px 20px;
    font-size: 0.95rem;
}

.project-info .view-more-btn .arrow-circle {
    width: 32px;
    height: 32px;
    margin-left: 10px;
    font-size: 0.8rem;
}

/* .about-banner-refined {
    background-attachment: fixed;
} */

/* Utility Classes */
.pt-80-important {
    padding-top: 80px !important;
}

.pt-50-important {
    padding-top: 50px !important;
}

.footer-logo-img {
    height: 60px;
}

/* Gallery Page Styles */
.gallery-img-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 300px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.gallery-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img-wrapper img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 29, 61, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
    text-align: center;
}

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

.gallery-icon {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 15px;
    transform: translateY(20px);
    transition: transform 0.3s ease 0.1s;
}

.gallery-item:hover .gallery-icon {
    transform: translateY(0);
}

.gallery-overlay h5 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 500;
    transform: translateY(20px);
    transition: transform 0.3s ease 0.2s;
}

.gallery-item:hover .gallery-overlay h5 {
    transform: translateY(0);
}

/* Custom Magnific Popup Arrows */
.mfp-arrow:before,
.mfp-arrow:after {
    display: none !important;
}

.mfp-arrow {
    background: rgba(0, 0, 0, 0.4) !important;
    width: 60px !important;
    height: 60px !important;
    border-radius: 50%;
    margin-top: -30px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.mfp-arrow i {
    font-size: 24px;
    color: #fff;
    transition: color 0.3s ease;
}

.mfp-arrow:hover {
    background: rgba(0, 0, 0, 0.8) !important;
}

.mfp-arrow:hover i {
    color: var(--secondary-color);
}

/* Career Page Styles */
.career-section {
    background: #fff;
    overflow: hidden;
}

.career-left-col {
    background: linear-gradient(135deg, #f0f4ff 0%, #e6eeff 100%);
    padding: 80px 60px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.career-badge {
    display: inline-block;
    background: #dbeafe;
    color: #2ba5b9;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.career-heading {
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.1;
    color: #111827;
    margin-bottom: 25px;
}

.career-heading .highlight {
    color: #2ba5b9;
}

.career-desc {
    font-size: 1.1rem;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 40px;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2ba5b9;
    font-size: 1.2rem;
    margin-right: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
}

.feature-text h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #1f2937;
}

.feature-text p {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 0;
}

.career-form-col {
    padding: 0;
    background: transparent;
}

.form-title {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
}

.form-subtitle {
    color: #6b7280;
    margin-bottom: 40px;
}

.custom-form-label {
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.custom-form-control {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 0.95rem;
    color: #111827;
    transition: all 0.3s ease;
    width: 100%;
}

.custom-form-control:focus {
    background: #fff;
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
    outline: none;
}

.file-upload-box {
    border: 2px dashed #d1d5db;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    background: #f9fafb;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.file-upload-box:hover {
    border-color: var(--primary-color);
    background: #f0f4f8;
}

.file-upload-box input[type="file"] {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 10;
}

.upload-icon {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    margin-bottom: 10px;
}



.upload-text {
    font-size: 0.95rem;
    color: #4b5563;
}

.upload-text .click-text {
    color: var(--primary-color);
    font-weight: 600;
}

.upload-hint {
    display: block;
    font-size: 0.8rem;
    color: #9ca3af;
    margin-top: 5px;
}

.btn-submit-app {
    width: 100%;
    background: #2ba5b9;
    color: #fff;
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.btn-submit-app:hover {
    background: #238a9b;
    color: #fff;
}

.btn-submit-app i {
    margin-left: 10px;
}

@media (max-width: 991px) {

    .career-left-col,
    .career-form-col {
        padding: 50px 30px;
    }

    .career-heading {
        font-size: 2.5rem;
    }
}

/* Contact Page Styles */
.icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.contact-form-wrapper {
    height: 100%;
}

.map-wrapper iframe {
    width: 100%;
    height: 500px;
    display: block;
}

@media (max-width: 991px) {
    .map-wrapper .bg-white {
        position: static !important;
        transform: none !important;
        margin: 0 !important;
        margin-bottom: 20px !important;
        max-width: 100% !important;
        box-shadow: none !important;
        border: 1px solid #dee2e6;
    }
}

/* Back to Top Progress */
.progress-wrap {
    position: fixed;
    right: 30px;
    bottom: 30px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 200ms linear;
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.progress-wrap::after {
    position: absolute;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: '\f062';
    text-align: center;
    line-height: 46px;
    font-size: 18px;
    color: #2ba5b9;
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 1;
    transition: all 200ms linear;
}

.progress-wrap:hover::after {
    opacity: 0;
}

.progress-wrap::before {
    position: absolute;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: '\f062';
    text-align: center;
    line-height: 46px;
    font-size: 18px;
    opacity: 0;
    background: var(--primary-color);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 2;
    transition: all 200ms linear;
}

.progress-wrap:hover::before {
    opacity: 1;
}

.progress-wrap svg path {
    fill: none;
}

.progress-wrap svg.progress-circle path {
    stroke: #2ba5b9;
    stroke-width: 4;
    box-sizing: border-box;
    transition: all 200ms linear;
}

/* Contact Page Redesign */
.letter-spacing-2 {
    letter-spacing: 2px;
}

.contact-card-item {
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

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



.contact-form-wrapper {
    background: linear-gradient(135deg, #f0f4ff 0%, #e6eeff 100%);
}

@media (min-width: 992px) {
    .custom-contact-container {
        padding-left: 100px;
        padding-right: 100px;
    }
}

.contact-hero-title {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.1;
    color: #111827;
    margin-bottom: 25px;
}

.map-contact {
    width: 100% !important;
    height: 470px !important;
    border-radius: 15px !important;
}

/* Services Page Custom Styles */
.service-list-items i {
    color: #2ba5b9 !important;
}

/* Preloader Styles */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #001d3d;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.preloader-content {
    text-align: center;
    animation: pulse 1.5s infinite ease-in-out;
}

.preloader-logo {
    max-width: 200px;
    height: auto;
}

.preloader-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top: 4px solid #ffffff;
    margin: 20px auto 0;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

body.loaded {
    overflow: auto;
    /* Restore scroll */
}

body.loading {
    overflow: hidden;
    /* Prevent scroll during load */
}

.map-img {
    width: 100%;
    margin-top: 80px;
}

.map-contact {
    margin-top: 100px !important;
}

@media only screen and (min-width: 100px) and (max-width: 991px) {


    .map-contact {
        margin-top: 10px !important;
    }

    .navbar-brand img {
        height: 36px;
    }

    .slide-text h1 {
        font-size: 2.5rem
    }

    .slide-text p {
        font-size: 1rem;
    }

    .navbar {
        background-color: #001d3d;
        padding: 13px 0px;
    }

    .explore-btn {
        font-size: 0.9rem;
    }

    .explore-btn-lavender {
        font-size: 0.9rem;
    }

    .slide-content {
        height: 70vh;
    }

    .main-hero-slider .item {
        height: 70vh;
    }

    .hero-slider-wrapper {
        height: 70vh;
    }

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

    .section-padding2 {
        margin: 60px 0 0 0;
    }

    .main-section-heading {
        font-size: 1.7rem;
    }

    .main-section-desc {
        font-size: 14px;
        max-width: 100%;
    }

    .about-img {
        height: 270px;
    }

    .floating-badge {
        bottom: 20px;
        left: 20px;
        padding: 10px 14px;
    }

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

    .service-card h4 {
        font-size: 0.9rem;
        font-weight: 500;
    }

    .team-video-section {
        min-height: auto;
        background-attachment: scroll;
    }

    .play-btn {
        width: 70px;
        height: 70px;
        margin-top: 20px;
    }

    .stat-number {
        font-size: 1.4rem;
    }

    .qudrat-intro2 {
        margin-top: 0px;
    }

    .footer-logo-img {
        height: 36px;
    }

    .footer-title {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .footer-links-list li a,
    .footer-links-list li span {
        font-size: 0.8rem;
    }

    p {
        font-size: 14px;
    }

    .about-banner-refined {
        height: 190px !important;
        margin-top: 70px;
    }

    .about-banner-refined h1 {
        font-size: 2.3rem;
    }

    .ceo-image-wrapper img {
        height: 270px;
    }

    .service-section-img {
        height: 270px;
    }

    .ceo-statement-text {
        font-size: 14px !important;
    }

    .video-cta-content h2 {
        font-size: 1.7rem;
    }

    .video-play-btn {
        width: 70px;
        height: 70px;
        margin-top: 20px;
    }

    .video-cta-section {
        padding: 70px 0;
        min-height: auto;
        background-attachment: scroll;

    }

    .service-section-heading {
        font-size: 1.5rem;
    }

    .service-list-items {
        font-size: 13px;
    }

    .project-info h4 {
        font-size: 1.1rem;

    }

    .project-card-refined {
        height: 300px;
    }

    .career-heading {
        font-size: 1.7rem;
    }

    .career-desc {
        font-size: 14px;
    }

    .career-left-col,
    .career-form-col {
        padding: 50px 20px;
    }

    .contact-hero-title {
        font-size: 1.7rem;

    }

    .map-contact {
        height: 280px !important;
    }

    .nav-explore-btn {
        margin-bottom: 20px;
        margin-top: 10px;
    }


}