:root {
    --primary-color: #9bcc3c; /* Lime green */
    --secondary-color: #192f44; /* Sleek navy */
    --accent-hover: #b3e64d; /* Lighter lime */
}

body {
    font-family: 'Inter', sans-serif;
    color: #1F2937;
    line-height: 1.6;
}

/* Global Bootstrap Button Overrides */
.btn-primary {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: var(--secondary-color) !important;
    font-weight: 700 !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 14px rgba(155, 204, 60, 0.25) !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
    color: #ffffff !important;
    box-shadow: 0 8px 20px rgba(25, 47, 68, 0.3) !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.hero-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    opacity: 0.9;
    max-width: 750px;
    margin: 0 auto;
}
/* ================= NAVBAR ================= */

/* ================= NAVBAR BASE ================= */

.navbar-wrapper {
    position: absolute;
    width: 100%;
    z-index: 1000;
    padding-top: 15px;
}

.navbar-custom {
    transition: all 0.3s ease;
}

/* Desktop links (over hero) */
.navbar-custom .nav-link {
    color: #ffffff;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    transition: 0.3s ease;
}

.navbar-custom .nav-link:hover {
    opacity: 0.8;
}

/* Contact Button */
.navbar-custom .btn-primary {
    border-radius: 50px;
    padding: 10px 26px;
}


/* ================= MOBILE OPEN STATE ================= */

@media (max-width: 991px) {

    .navbar-collapse {
        background: #ffffff;
        padding: 25px;
        margin-top: 15px;
        border-radius: 8px;
        box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    }

    .navbar-custom .nav-link {
        color: #1F2937 !important;
        padding: 10px 0;
        font-weight: 500;
    }

    .navbar-custom .btn-primary {
        width: 100%;
        margin-top: 15px;
    }
}

/* ===== NAVBAR WRAPPER ===== */

.navbar-wrapper {
  position: fixed;
  top: 20px;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 0 20px;
}

/* ===== GLASS NAVBAR ===== */

.navbar-glass {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border-radius: 40px;
  border: 1px solid rgba(255,255,255,0.4);

  box-shadow:
    0 10px 30px rgba(0,0,0,0.08),
    inset 0 1px rgba(255,255,255,0.5);

  padding: 10px 24px;
}

/* ===== NAV LINKS ===== */

.navbar-custom .nav-link {
  font-weight: 500;
  color: #1f2937;
  transition: 0.25s;
}

.navbar-custom .nav-link:hover {
  color: var(--primary-color);
}

/* ===== CONTACT BUTTON ===== */

.navbar-custom .btn-primary {
  border-radius: 30px;
  font-weight: 600;
}

/* ===== MOBILE NAV ===== */

@media (max-width: 992px) {

  .navbar-glass {
    border-radius: 22px;
    padding: 12px 18px;
  }

  .navbar-collapse {
    margin-top: 10px;
  }

}
/* ================= HERO ================= */

.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-slide {
    height: 100vh;
    background-size: cover;
    background-position: center;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(25, 47, 68, 0.8);
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    max-width: 900px;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.3;
}

.hero-subtitle {
    margin-top: 20px;
    font-size: 1.1rem;
    opacity: 0.9;
}

@media (max-width: 576px) {
    #explore{
        display: none;
    }
}

/* ================= CLIENT OVERLAP BLOCK ================= */

.client-overlap-wrapper {
    position: relative;
    margin-top: -80px; /* Pull upward into hero */
    z-index: 5;
}

.client-overlap {
    background: var(--secondary-color);
    padding: 45px 40px;
    border-radius: 8px;
    border-top: 3px solid var(--primary-color);
    box-shadow: 0 20px 40px rgba(25, 47, 68, 0.25);
}

.logo-slider {
    overflow: hidden;
    position: relative;
}

.logo-track {
    display: flex;
    align-items: center;
    animation: scroll 25s linear infinite;
    width: max-content;
}

.logos{
    height: 59px;
    margin: 0 50px;
    transition: 0.3s ease;
}

.logo-track img:hover {
    opacity: 1;
    transform: scale(1.05);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}


/* ================= RESPONSIVE FIX ================= */

@media (max-width: 991px) {
    .client-overlap-wrapper {
        margin-top: -60px;
    }

    .logo-track img {
        height: 35px;
        margin: 0 30px;
    }
}

@media (max-width: 576px) {
    .client-overlap-wrapper {
        margin-top: -40px;
    }

    .client-overlap {
        padding: 30px 20px;
    }

    .logo-track img {
        height: 30px;
        margin: 0 20px;
    }
}
/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {
    .hero-title {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 90vh;
    }
}

/* ================= ABOUT SECTION (COMPACT) ================= */

.about-section {
    padding: 70px 0; /* Reduced height */
    background: #F8FAFC;
}

.about-image img {
    width: 100%;
    max-width: 480px;
    border-radius: 16px;
}

.about-content h2 {
    font-size: clamp(1.6rem, 2.2vw, 2.1rem);
    font-weight: 800;
    margin-bottom: 18px;
    color: #111827;
}

.about-content p {
    font-size: 0.95rem;
    color: #4B5563;
    margin-bottom: 18px;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-list li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #1F2937;
}

.about-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}
.about-cta{
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 40px;
    font-size: 0.9rem;
    padding: 10px 28px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.about-cta:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    box-shadow: 0 8px 20px rgba(155, 204, 60, 0.3);
    transform: translateY(-2px);
}

/* Responsive */

@media (max-width: 991px) {
    .about-section {
        padding: 60px 0;
        text-align: center;
    }

    .about-image {
        text-align: center;
    }

    .about-image img {
        max-width: 100%;
    }

    .about-content {
        margin-top: 20px;
    }
}

/* ================= SERVICES SECTION ================= */

.services-section {
    background: var(--secondary-color);
    padding: 70px 0;
}

.section-title {
    color: #ffffff;
    font-weight: 800;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
}

/* Service Card */

.service-card {
    background: linear-gradient(180deg, #20364d 0%, #122232 100%);
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.35s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    display:block;
    text-decoration:none;
    color:inherit;
    height:100%;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
}

.service-content {
    padding: 22px;
    flex: 1;
}

.service-content h3 {
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-content p {
    color: #cbd5e1;
    font-size: 0.9rem;
    margin-bottom: 14px;
}

.learn-more {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.learn-more:hover {
    color: var(--accent-hover);
}

/* Hover Effect */

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(155, 204, 60, 0.25);
    border-color: var(--primary-color);
}

/* Responsive Control */

@media (max-width: 576px) {
    .service-card img {
        height: 150px;
    }
    .service-content p{
        font-size: 0.6rem;
    }
    .service-content h3{
        font-size: 0.9rem;
    }
}

/* ================= INDUSTRIES SECTION ================= */

.industries-section {
    background: #122232;
    padding: 70px 0;
}

.section-title {
    color: #ffffff;
    font-weight: 800;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
}

.section-underline {
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin: 10px auto 0;
    border-radius: 2px;
}

.section-underline-dark {
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin: 10px auto 0;
    border-radius: 2px;
}

/* Industry Card */

.industry-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    transition: 0.4s ease;
}

.industry-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: 0.4s ease;
}

.industry-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.75),
        rgba(0,0,0,0.2)
    );
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.industry-overlay h3 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
}

/* Hover Effects */

.industry-card:hover img {
    transform: scale(1.05);
}

.industry-card:hover {
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

/* Responsive */

@media (max-width: 576px) {
    .industry-card img {
        height: 160px;
    }
}

/* ================= VIDEO TESTIMONIALS ================= */

.video-testimonials-section {
    padding: 70px 0;
    background: #ffffff;
}

/* Title Styling with your fonts */

.video-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    color: #111827;
}

.video-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #6B7280;
    margin-bottom: 10px;
}

/* Featured video control */

.featured-video {
    max-width: 900px;
    margin: 0 auto;
}

/* Video Box */

.video-box {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* Maintain aspect ratio always */

.video-inner {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
}

.video-inner img,
.video-inner iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
}

/* Play Button */

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 65px;
    height: 65px;
    background: rgba(155, 204, 60, 0.95);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: 0.3s ease;
    box-shadow: 0 0 20px rgba(155, 204, 60, 0.4);
}

.play-button::after {
    content: '';
    position: absolute;
    left: 26px;
    top: 20px;
    border-style: solid;
    border-width: 12px 0 12px 18px;
    border-color: transparent transparent transparent #192f44;
}

.video-box:hover .play-button {
    transform: translate(-50%, -50%) scale(1.08);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.6);
}


/* ================= FAQ SECTION ================= */

.faq-section {
    padding: 70px 0;
    background: #F8FAFC;
}

.faq-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    color: #111827;
}

.faq-wrapper {
    max-width: 850px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 18px 22px;
    text-align: left;
    background: none;
    border: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: #1F2937;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-icon {
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.3s ease;
    padding: 0 22px;
}

.faq-answer p {
    font-size: 0.9rem;
    color: #4B5563;
    margin: 15px 0;
}

/* Active State */

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 22px 18px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* ================= FINAL CTA SECTION ================= */

.cta-section {
    padding: 70px 0;
    background: #F8FAFC;
}

.cta-box {
    background: linear-gradient(135deg, var(--secondary-color), #274766);
    padding: 60px 40px;
    border-radius: 22px;
    color: #ffffff;
    box-shadow: 0 25px 60px rgba(25, 47, 68, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: clamp(1.8rem, 2.8vw, 2.4rem);
    margin-bottom: 15px;
}

.cta-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 25px;
}

.cta-main-btn {
    display: inline-block;
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
    box-shadow: 0 8px 20px rgba(155, 204, 60, 0.3);
}

.cta-main-btn:hover {
    background: #ffffff;
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

/* Contact Row */

.cta-contact-row {
    margin-top: 35px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cta-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    padding: 10px 18px;
    border-radius: 30px;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.85rem;
    transition: 0.3s ease;
}

.cta-contact-item:hover {
    background: rgba(255,255,255,0.25);
}

.cta-contact-item.whatsapp {
    background: rgba(34,197,94,0.8);
}

.cta-contact-item.whatsapp:hover {
    background: rgba(34,197,94,1);
}

/* Responsive */

@media (max-width: 768px) {

    .cta-box {
        padding: 45px 25px;
    }

    .cta-contact-row {
        flex-direction: column;
        align-items: center;
    }

    .cta-contact-item {
        width: 100%;
        justify-content: center;
    }
}
.cta-contact-item i {
    font-size: 0.9rem;
}

.cta-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}
/* ===== Address Cards Row ===== */

.cta-address-row {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

/* Address Card */

.cta-address-card {
    background: rgba(255,255,255,0.15);
    padding: 22px 18px;
    border-radius: 18px;
    text-align: center;
    backdrop-filter: blur(6px);
    transition: 0.3s ease;
}

.cta-address-card:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-4px);
}

.cta-address-card i {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.cta-address-card h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    margin-bottom: 6px;
    font-weight: 700;
}

.cta-address-card p {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    opacity: 0.9;
    margin: 0;
}

/* ===== Responsive ===== */

@media (max-width: 992px) {

    .cta-address-row {
        grid-template-columns: 1fr 1fr;
    }

}

@media (max-width: 576px) {

    .cta-address-row {
        grid-template-columns: 1fr;
    }

}
/* ================= FOOTER ================= */

.site-footer {
    background: var(--secondary-color);
    color: #cbd5e1;
    padding-top: 60px;
    font-family: 'Inter', sans-serif;
    border-top: 5px solid var(--primary-color);
}

.footer-top h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 18px;
}

.footer-top ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-top ul li {
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.footer-top ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-top ul li a:hover {
    color: #ffffff;
}

/* Brand Section */

.footer-logo {
    max-width: 140px;
    margin-bottom: 15px;
}

.footer-brand p {
    font-size: 0.85rem;
    margin-bottom: 15px;
    color: #94a3b8;
}

.footer-social a {
    display: inline-block;
    margin-right: 10px;
    color: #cbd5e1;
    font-size: 0.9rem;
    transition: 0.3s ease;
}

.footer-social a:hover {
    color: var(--primary-color);
}

/* Contact */

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.footer-contact i {
    color: var(--primary-color);
}

/* Bottom Bar */

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 30px;
    padding: 18px 0;
    font-size: 0.8rem;
    color: #94a3b8;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    margin-left: 20px;
    transition: 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

/* Responsive */

@media (max-width: 768px) {

    .footer-bottom {
        text-align: center;
    }

    .footer-links {
        margin-top: 9px;
    }

    .footer-links a {
        margin: 0 10px;
    }
}