/* Modern Color Scheme */
:root {
    --primary-red: #E53935;
    --deep-red: #B71C1C;
    --accent-orange: #F5A623;
    --black: #000000;
    --dark-gray: #222222;
    --gray: #666666;
    --mid-gray: #B0B0B0;
    --light-gray: #F5F5F5;
    --soft-gray: #E0E0E0;
    --white: #FFFFFF;
    --font-family: 'Poppins', 'Montserrat', Arial, sans-serif;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    color: var(--dark-gray);
    background: var(--white);
    line-height: 1.6;
}

/* Top Bar */
.top-bar {
    background: var(--primary-orange);
    color: var(--white);
    padding: 0.5rem 0;
    font-size: 0.9rem;
}

.phone-link {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: var(--primary-red);
}

.top-bar .social-links a {
    color: var(--white);
    margin-left: 1rem;
    transition: color 0.3s ease;
}

.top-bar .social-links a:hover {
    color: var(--primary-red);
}

/* Navigation */
.navbar, .custom-navbar, .navbar.scrolled, .custom-navbar.scrolled {
    background: var(--black) !important;
    color: var(--white) !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.10);
}

.navbar-brand, .custom-navbar .navbar-brand, .navbar.scrolled .navbar-brand {
    color: var(--primary-red) !important;
}
.navbar-brand {
    padding: 0px !important;
    margin: 0px !important;
}

.nav-link, .navbar.scrolled .nav-link {
    color: var(--white) !important;
}
.nav-link:hover, .navbar.scrolled .nav-link:hover {
    color: var(--primary-red) !important;
}
.iboss-logo {
    position: absolute;
    left: 74px;
    top: 96px;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(120deg, rgba(34,34,34,0.97) 0%, rgba(229,57,53,0.92) 100%), url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    color: var(--white);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--white);
    line-height: 1.2;
}

.hero .lead {
    font-size: 1.25rem;
    color: var(--mid-gray);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--primary-red);
    border: none;
    color: var(--white);
}

.btn-primary:hover {
    background: var(--black);
    color: var(--white);
}

.btn-outline {
    border: 2px solid var(--primary-red);
    color: var(--primary-red);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary-red);
    color: var(--white);
}

/* Stats Section Styles */
.stats {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

.stat-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff9d00 0%, #ff7b00 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon i {
    font-size: 30px;
    color: white;
}

.stat-content {
    text-align: left;
}

.stat-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
    line-height: 1.2;
}

.stat-content p {
    font-size: 1.1rem;
    color: #6c757d;
    margin: 5px 0 0;
    font-weight: 500;
}

@media (max-width: 768px) {
    .stat-card {
        margin: 10px;
        padding: 20px;
    }

    .stat-icon {
        width: 60px;
        height: 60px;
    }

    .stat-icon i {
        font-size: 24px;
    }

    .stat-content h2 {
        font-size: 2rem;
    }

    .stat-content p {
        font-size: 1rem;
    }
}

/* About Section */
.about {
    padding: 50px 0;
    background: var(--light-gray);
}

.about .section-title {
    text-align: left;
    margin-bottom: 2rem;
}

.about p {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 2rem;
}

.about img {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Offerings Section */
.offerings {
    padding: 100px 0;
    background: var(--white);
}

.offering-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    background: var(--white);
    transition: transform 0.3s ease;
}

.offering-card:hover {
    transform: translateY(-10px);
}

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

.offering-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.5rem;
    color: var(--primary-orange);
}

.offering-card p {
    padding: 0 1.5rem 1.5rem;
    color: var(--dark-gray);
}

.offering-card .btn {
    margin: 0 1.5rem 1.5rem;
}

/* Amenities Section */
.amenities {
    padding: 100px 0;
    background: var(--white);
}

.amenities-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: var(--dark-gray);
    font-size: 1.1rem;
    line-height: 1.8;
}

.amenity-card {
    padding: 2rem 1rem;
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
    margin-bottom: 30px;
    border: 1px solid var(--soft-gray);
}

.amenity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-orange);
}

.amenity-card i {
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.amenity-card:hover i {
    transform: scale(1.1);
}

.amenity-card h3 {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin: 0;
    font-weight: 600;
}

.amenities-tagline {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background: var(--light-gray);
    border-radius: 8px;
}

.amenities-tagline p {
    font-size: 1.3rem;
    color: var(--dark-gray);
    margin: 0;
    line-height: 1.6;
}

.amenities-tagline strong {
    color: var(--primary-orange);
    font-weight: 700;
}

/* Modern Amenities Section (Workship.pk style) */
.amenities-modern {
    padding: 100px 0;
    background: linear-gradient(120deg, #f8f9e9 0%, #f8f9fa 100%);
}
.amenities-modern .row {
    align-items: center;
}
.amenities-img-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.amenities-img {
    max-width: 100%;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.amenities-title {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.2rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.amenities-desc {
    font-size: 1.15rem;
    color: #444;
    margin-bottom: 2.2rem;
    line-height: 1.7;
}
.amenities-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.amenity-tag {
    background: #7a9c3a;
    color: #fff;
    font-size: 1.08rem;
    font-weight: 500;
    border-radius: 2rem;
    padding: 0.6em 1.5em;
    margin-bottom: 8px;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(122,156,58,0.08);
    transition: background 0.2s, color 0.2s;
    letter-spacing: 0.01em;
}
.amenity-tag:hover {
    background: #5e7c2a;
    color: #fff;
}

/* Contact Section Styles */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-desc {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.locations-card {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #ffe0cc;
    border-radius: 12px;
    padding: 2rem;
}


.location-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.location-header h3 {
    font-size: 1.3rem;
    color: #333;
    margin: 0;
}

.location-tag {
    background: #ff7b00;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.9rem;
}

.address {
    color: #666;
    font-size: 1.1rem;
    margin: 0;
}

.address i {
    color: #ff7b00;
    margin-right: 0.5rem;
}

.location-divider {
    height: 1px;
    background: #ffe0cc;
    margin: 1rem 0;
}

.location-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0;
    padding-top: 1rem;
    border-top: 1px solid #ffe0cc;
}

.location-features span {
    background: #fff5f0;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.location-features i {
    color: #ff7b00;
}

.btn-location {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: #ff7b00;
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s ease;
    width: 100%;
    justify-content: center;
}

.btn-location:hover {
    background: #e66a00;
    color: white;
}

.contact-info {
    max-width: 800px;
    margin: 4rem auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    font-size: 2rem;
    color: #ff7b00;
}

.contact-item h4 {
    color: #333;
    font-size: 1.2rem;
    margin: 0;
}

.contact-item p {
    color: #666;
    margin: 0;
    font-size: 1rem;
}

@media (max-width: 991.98px) {
    .contact-info {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767.98px) {
    .contact {
        padding: 60px 0;
}

    .locations-card {
        padding: 1.5rem;
    }
    
    .location-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
}

    .location-features {
        justify-content: center;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Footer */
.footer {
    padding: 60px 0 20px;
    background: var(--black);
    color: var(--white);
}

.footer h4 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

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

.footer ul li {
    margin-bottom: 0.5rem;
}

.footer a {
    color: #880000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--primary-red);
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #880000;
}

/* Section Title */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--black);
}

/* Lottie Container */
.lottie-container {
    width: 100%;
    height: 400px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    .amenities-title {
        font-size: 2.2rem;
    }
    .amenities-modern {
        padding: 60px 0;
    }
}

@media (max-width: 767.98px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .amenity-card {
        padding: 1.5rem 1rem;
    }
    
    .amenity-card i {
        font-size: 2rem;
    }
    
    .amenity-card h3 {
        font-size: 1rem;
    }
    
    .amenities-tagline p {
        font-size: 1.1rem;
    }
    
    .stat-item h2 {
        font-size: 2.5rem;
    }
    .amenities-modern .row {
        flex-direction: column;
    }
    .amenities-img-wrap {
        margin-bottom: 2rem;
    }
    .amenities-title {
        font-size: 1.6rem;
    }
    .amenities-tags {
        gap: 10px;
    }
    .amenity-tag {
        font-size: 0.98rem;
        padding: 0.5em 1.1em;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

/* Custom Navbar (Workship.pk style) */
.custom-navbar .navbar-brand {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
}
.custom-navbar .navbar-phone-pill {
    background: var(--primary-red);
    color: var(--white);
    border-radius: 2em;
    padding: 0.4em 1.3em;
    font-weight: 600;
    font-size: 1.05rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: 0.5em;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.custom-navbar .navbar-phone-pill:hover {
    background: var(--black);
    color: var(--white);
}
.custom-navbar .navbar-social a {
    color: #fff;
    font-size: 1.15rem;
    margin-left: 1.1em;
    transition: color 0.2s;
}
.custom-navbar .navbar-social a:hover {
    color: var(--primary-red);
}
.custom-navbar .hamburger-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    margin-left: 1.5em;
    z-index: 1101;
}
.custom-navbar .navbar-toggler-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

/* Sidebar Overlay */
.sidebar-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.sidebar-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* Sidebar Menu */
.sidebar-menu {
    position: fixed;
    top: 0; right: -340px;
    width: 320px;
    height: 100vh;
    background: #232323;
    color: #fff;
    z-index: 1101;
    box-shadow: -2px 0 16px rgba(0,0,0,0.12);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 2.5em 2em 2em 2em;
    transition: right 0.35s cubic-bezier(.77,0,.18,1);
}
.sidebar-menu.active {
    right: 0;
}
.sidebar-close {
    position: absolute;
    top: 1.2em;
    right: 1.2em;
    background: #7a9c3a;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 2px 8px rgba(122,156,58,0.12);
    transition: background 0.2s;
    z-index: 1102;
}
.sidebar-close:hover {
    background: #5e7c2a;
}
.sidebar-nav {
    width: 100%;
    margin-top: 2.5em;
}
.sidebar-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.sidebar-nav li {
    margin-bottom: 1.5em;
}
.sidebar-nav a {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
    display: block;
}
.sidebar-nav li.active a,
.sidebar-nav a:hover {
    color: #ff7a00;
}

@media (max-width: 991.98px) {
    .navbar-contact-social {
        display: none !important;
    }
    .custom-navbar .hamburger-btn {
        margin-left: auto;
    }
    .sidebar-menu {
        width: 90vw;
        min-width: 220px;
        max-width: 340px;
        padding: 2em 1.2em 2em 1.2em;
    }
}

.navbar-phone {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    padding: 8px 24px;
    margin-left: 24px;
    font-size: 14px;
    font-weight: 500;
    color: #111;
    transition: box-shadow 0.2s;
}
.navbar-phone i {
    margin-right: 10px;
    font-size: 14px;
}
.navbar-phone a {
    color: #111;
    text-decoration: none;
}
.navbar-phone:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
@media (max-width: 991px) {
    .navbar-phone {
        margin: 16px 0 0 0;
        width: 100%;
        justify-content: center;
    }
}

.partners-reshaping {
  background: #b8c6a3;
  padding: 60px 0 0 0;
}
.partners-reshaping .row {
  margin-bottom: 0;
}
.partners-reshaping .col-auto img {
  max-height: 48px;
  max-width: 140px;
  filter: grayscale(1) brightness(0.95);
  opacity: 0.8;
  margin: 0 18px;
  transition: filter 0.2s, opacity 0.2s;
}
.partners-reshaping .col-auto img:hover {
  filter: grayscale(0) brightness(1);
  opacity: 1;
}
.reshaping-block {
  background: #f8f8df;
  border-radius: 0 0 0 0;
  margin-top: 0;
  padding: 60px 0 60px 0;
}
.reshaping-text {
  font-size: 2.3rem;
  color: #222;
  font-weight: 400;
  line-height: 1.25;
  margin: 0 auto;
  max-width: 800px;
}
.reshaping-bold {
  font-weight: 700;
  color: #222;
  font-size: 2.3rem;
}
.reshaping-text u {
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}
.reshaping-img {
  display: inline-block;
  vertical-align: middle;
  margin: 0 4px;
}
.reshaping-img img {
  width: 36px;
  height: 36px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  border: 2px solid #fff;
}
@media (max-width: 991.98px) {
  .reshaping-text, .reshaping-bold {
    font-size: 1.3rem;
  }
  .partners-reshaping .col-auto img {
    max-width: 90px;
    max-height: 36px;
    margin: 0 8px;
  }
  .reshaping-block {
    padding: 36px 0;
  }
  .reshaping-img img {
    width: 26px;
    height: 26px;
  }
}

.vision-mission-quality {
  background: #f8f9fa;
}
.vmq-card {
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
  padding: 2.2rem 1.5rem 2rem 1.5rem;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.vmq-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.13);
  transform: translateY(-4px) scale(1.02);
}
.vmq-icon {
  font-size: 2.5rem;
  color: var(--primary-red);
  margin-bottom: 0.7rem;
}
.vmq-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-red);
  margin-bottom: 0.7rem;
}
.vmq-text {
  color: var(--dark-gray);
  font-size: 1.05rem;
  line-height: 1.7;
}
@media (max-width: 991.98px) {
  .vmq-card {
    padding: 1.2rem 0.7rem 1.2rem 0.7rem;
  }
  .vmq-title {
    font-size: 1.1rem;
  }
  .vmq-icon {
    font-size: 2rem;
  }
  .vmq-text {
    font-size: 0.98rem;
  }
}

/* The iBOSS Journey Section Styles */
.incubation-iboss {
    /* background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); */
    padding: 80px 0;
}

.section-subtitle {
    color: #6c757d;
    font-size: 1.2rem;
    margin-top: 10px;
}

.phase-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.phase-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.pre-incubation .phase-header {
    padding: 30px;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, rgba(34, 34, 34, 0.97) 0%, #ff7b00 100%);
    color: white;
}
.incubation .phase-header {
    padding: 30px;
    text-align: center;
    position: relative;
    background: linear-gradient(120deg, rgba(34, 34, 34, 0.97) 0%, rgba(229, 57, 53, 0.92) 100%);
    color: white;
}

.phase-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.phase-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.phase-content {
    padding: 30px;
}

.phase-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.feature-item {
    text-align: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease;
  }

.feature-item:hover {
    transform: translateY(-3px);
  }

.feature-item i {
    font-size: 1.5rem;
    color: #ff9d00;
    margin-bottom: 10px;
}

.pre-incubation .feature-item i {
    color: #ff7b00 ;
}

.incubation .feature-item i {
    color: rgba(229, 57, 53);
}

.feature-item span {
    display: block;
    font-size: 0.9rem;
    color: #495057;
}

.phase-description {
    color: #6c757d;
    margin: 20px 0;
    line-height: 1.6;
}

.phase-stats {
  display: flex;
    justify-content: space-around;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #dee2e6;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
    color: #212529;
}

.stat-label {
    font-size: 0.9rem;
    color: #6c757d;
}

/* Value Proposition Styles */
.value-proposition {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.value-content h3 {
    color: #212529;
    margin-bottom: 30px;
    font-size: 2rem;
}

.value-features {
    display: grid;
    gap: 20px;
}

.value-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
  }

.value-feature i {
    color: #ff9d00;
    font-size: 1.5rem;
    margin-top: 5px;
}

.value-feature h4 {
    color: #212529;
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.value-feature p {
    color: #6c757d;
    margin: 0;
    font-size: 0.95rem;
}

.value-image {
    position: relative;
}

.value-image img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.floating-stats {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
  display: flex;
    gap: 20px;
    background: white;
    padding: 15px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.floating-stat {
    text-align: center;
    padding: 0 20px;
    border-right: 1px solid #dee2e6;
}

.floating-stat:last-child {
    border-right: none;
}

.floating-stat .stat-number {
    color: #ff9d00;
    font-size: 1.5rem;
    font-weight: bold;
}

.floating-stat .stat-label {
    font-size: 0.8rem;
    color: #6c757d;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .phase-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .value-proposition {
        padding: 30px;
    }
    
    .floating-stats {
        position: relative;
        bottom: 0;
        margin-top: 20px;
    }
}

@media (max-width: 767.98px) {
    .phase-features {
        grid-template-columns: 1fr;
    }
    
    .phase-stats {
  flex-direction: column;
        gap: 15px;
    }
    
    .floating-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .floating-stat {
        border-right: none;
        border-bottom: 1px solid #dee2e6;
        padding: 10px 0;
}
    
    .floating-stat:last-child {
        border-bottom: none;
}
}

/* Misc */
::-webkit-scrollbar-thumb {
    background: var(--primary-red);
}
::-webkit-scrollbar-track {
    background: var(--soft-gray);
}

/* Who We Help Section Styles */
.who-we-help {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

.who-help-desc {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.help-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    cursor: pointer;
  display: flex;
  flex-direction: column;
    height: 100%;
}

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

.help-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff9d00 0%, #ff6b00 100%);
    border-radius: 50%;
    display: flex;
  align-items: center;
  justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.help-card:hover .help-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.help-icon {
    font-size: 2rem;
    color: white;
}

.help-content {
    text-align: center;
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.help-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2d3436;
}

.help-text {
    color: #636e72;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    flex: 1;
  }

.help-hover-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff9d00 0%, #ff6b00 100%);
    color: white;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    border-radius: 10px;
}

.help-card:hover .help-hover-content {
    opacity: 1;
    transform: translateY(0);
}

.help-hover-content p {
    margin: 0;
    font-size: 0.95rem;
    text-align: center;
}

/* Animation for cards */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.help-card {
    animation: float 6s ease-in-out infinite;
}

.help-card:nth-child(2n) {
    animation-delay: 1s;
}

.help-card:nth-child(3n) {
    animation-delay: 2s;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .help-card {
        padding: 1.5rem;
    }
    
    .help-icon-wrapper {
        width: 60px;
        height: 60px;
  }
    
    .help-icon {
        font-size: 1.5rem;
    }
    
    .help-title {
        font-size: 1.1rem;
    }
    
    .help-text {
        font-size: 0.9rem;
  }
}

/* Mission, Vision, and Quality Section Styles */
.mvq-image-section {
  position: relative;
    min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
    padding: 80px 0;
}

.mvq-bg-img {
  position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1920&q=80') center center/cover no-repeat;
  z-index: 1;
}

.mvq-overlay {
  position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.75) 100%);
  z-index: 2;
}

.mvq-content {
  position: relative;
  z-index: 3;
}

.mvq-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
  margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.mvq-block {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mvq-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.mvq-block-title {
    color: #ff9d00;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.mvq-block-text {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 991.98px) {
    .mvq-image-section {
        min-height: 500px;
        padding: 60px 0;
    }

  .mvq-title {
        font-size: 2.2rem;
  }

    .mvq-block {
        padding: 1.5rem;
    }

  .mvq-block-title {
        font-size: 1.3rem;
    }

    .mvq-block-text {
        font-size: 1rem;
    }
}

@media (max-width: 767.98px) {
    .mvq-image-section {
        min-height: auto;
        padding: 40px 0;
    }

    .mvq-title {
        font-size: 1.8rem;
  }

  .mvq-block {
        margin-bottom: 1rem;
    }
}

/* How We Help Section Styles */
.how-we-help {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.how-we-help::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,0,0,0.1), transparent);
}

.how-help-desc {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.help-category-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
}

.help-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,157,0,0.1) 0%, rgba(255,123,0,0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.help-category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.help-category-card:hover::before {
    opacity: 1;
}

.help-category-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff9d00 0%, #ff7b00 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
  }

.help-category-card:hover .help-category-icon {
    transform: rotate(10deg) scale(1.1);
}

.help-category-icon i {
    font-size: 2rem;
    color: white;
}

.help-category-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.help-category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #ff9d00, #ff7b00);
    transition: width 0.3s ease;
}

.help-category-card:hover .help-category-title::after {
    width: 100px;
}

.help-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.help-category-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    color: #636e72;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.help-category-list li i {
    color: #ff9d00;
    margin-right: 10px;
    font-size: 0.9rem;
    margin-top: 5px;
}

.help-category-card:hover .help-category-list li {
    transform: translateX(5px);
    color: #2d3436;
}

/* Animation for cards */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.help-category-card {
    animation: float 6s ease-in-out infinite;
}

.help-category-card:nth-child(2n) {
    animation-delay: 1s;
}

.help-category-card:nth-child(3n) {
    animation-delay: 2s;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .help-category-card {
        padding: 1.5rem;
    }
    
    .help-category-icon {
        width: 60px;
        height: 60px;
    }
    
    .help-category-icon i {
        font-size: 1.5rem;
    }
    
    .help-category-title {
        font-size: 1.2rem;
    }
    
    .help-category-list li {
        font-size: 0.9rem;
    }
}

@media (max-width: 767.98px) {
    .how-we-help {
        padding: 60px 0;
    }
    
    .help-category-card {
        margin-bottom: 1rem;
    }
    
    .help-category-list li {
        font-size: 0.85rem;
  }
}

/* Gallery Section Styles */
.gallery-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.gallery-desc {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.gallery-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.carousel-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.carousel-track {
    position: relative;
    height: 600px;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: none;
}

.carousel-slide.active {
    opacity: 1;
    display: block;
}

.slide-content {
    position: relative;
    width: 100%;
    height: 100%;
}

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

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
    color: white;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

.carousel-slide.active .slide-overlay {
    transform: translateY(0);
    opacity: 1;
}

.slide-info h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.slide-info p {
    font-size: 1.1rem;
    margin: 0;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* Navigation Controls */
.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #333;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.carousel-control:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.carousel-control.prev {
    left: 20px;
}

.carousel-control.next {
    right: 20px;
}

/* Slide Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.indicator:hover {
    background: rgba(255,255,255,0.8);
}

.indicator.active {
    background: white;
    transform: scale(1.2);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .carousel-track {
        height: 500px;
    }
    
    .slide-info h3 {
        font-size: 1.8rem;
    }
    
    .slide-info p {
        font-size: 1rem;
    }
}

@media (max-width: 767.98px) {
    .gallery-section {
        padding: 60px 0;
    }
    
    .carousel-track {
        height: 400px;
    }
    
    .slide-info h3 {
        font-size: 1.5rem;
    }
    
    .slide-info p {
        font-size: 0.9rem;
    }
    
    .carousel-control {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
}

/* Offerings Framework Section Styles */
.offerings-framework {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 100px 0;
    overflow: hidden;
}

.framework-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.framework-phase {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.framework-phase:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.framework-phase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(to bottom, #ff9d00, #ff7b00);
    border-radius: 3px;
}

.phase-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding-left: 20px;
}

.phase-number {
    font-size: 3rem;
    font-weight: 700;
    color: #ff9d00;
    opacity: 0.2;
    margin-right: 20px;
    line-height: 1;
}

.phase-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.phase-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin: 5px 0 0 0;
}

.phase-description {
    padding: 0 20px;
    margin-bottom: 40px;
}

.phase-description p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 0 20px;
}

.service-item {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,157,0,0.1) 0%, rgba(255,123,0,0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

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

.service-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff9d00 0%, #ff7b00 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.service-item:hover .service-icon {
    transform: rotate(10deg) scale(1.1);
}

.service-icon i {
    font-size: 1.5rem;
    color: white;
}

.service-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.service-item p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Animation for service items */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.service-item {
    animation: float 6s ease-in-out infinite;
}

.service-item:nth-child(2n) {
    animation-delay: 1s;
}

.service-item:nth-child(3n) {
    animation-delay: 2s;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .phase-header {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .phase-number {
        margin-bottom: 10px;
    }
    
    .phase-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 767.98px) {
    .offerings-framework {
        padding: 60px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .framework-phase {
        padding: 30px;
    }
    
    .phase-title {
        font-size: 1.5rem;
    }
    
    .phase-description p {
        font-size: 1rem;
    }
    
    .service-item {
        padding: 20px;
    }
}

/* Footer Logos */
.footer-logos {
    padding: 20px 0;
}

.footer-logo {
    max-width: 140px;
    height: auto;
    object-fit: contain;
}

.xpl-logo {
    width: 140px;
}

.iboss-logo {
    width: 120px;
}

@media (max-width: 767.98px) {
    .footer-logos {
        align-items: center !important;
        padding: 10px 0;
    }
    
    .footer-logo {
        max-width: 120px;
    }
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 1000;
}

.whatsapp-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #25D366;
    border-radius: 50%;
    z-index: -1;
    animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    color: white;
    box-shadow: 2px 2px 20px rgba(37, 211, 102, 0.3);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    70% {
        transform: scale(1.3);
        opacity: 0;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

/* Mobile Responsiveness for WhatsApp Button */
@media (max-width: 767.98px) {
    .whatsapp-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
}

/* Footer Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 35px;
    height: 35px;
    background: #880000;
    color: white !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.social-icon:hover {
    background: var(--primary-red);
    color: white;
}

.social-icon i {
    transition: transform 0.3s ease;
}
@media (max-width: 767.98px) {
    .iso-logos {
        padding: 30px 0px
    }
}
