        :root {
    --primary-color: #f1237a;
    --dark-color: #282a2b;
    --light-color: #f4f2f2;
    --gray-color: #363839;
    --text-color: #747474;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-color);
    font-size: 18px;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    color: var(--dark-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Top Bar - UPDATED */
.top-bar {
    background-color: var(--primary-color) !important;
    color: var(--light-color);
    padding: 10px 0;
    font-size: 14px;
    transition: all 0.3s ease;
}

@media (min-width: 992px) {
    .top-bar.scrolled {
        transform: translateY(-100%);
    }
}

.contact-info span {
    margin-right: 20px;
}

.contact-info i {
    transform: scaleX(-1); 
    margin-right: 5px;
    color: var(--light-color);
}

.social-icons {
    text-align: right;
}

.social-icons a {
    color: var(--light-color);
    margin-left: 15px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: var(--dark-color);
}

.language-switch {
    display: inline-block;
    margin-left: 20px;
}

.language-switch button {
    background: none;
    border: none;
    color: var(--light-color);
    padding: 0 5px;
    cursor: pointer;
    font-weight: bold;
}

.language-switch button.active {
    color: var(--dark-color);
}

/* Navigation - UPDATED */
.navbar {
    background-color: #333333 !important;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: #ffffff !important;
}

.navbar-brand img {
        height: 85px;
        margin-left: -28px;
}

.nav-link {
    color: var(--light-color) !important;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    margin: 0 10px;
    position: relative;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.nav-link:hover:after,
.nav-link.active:after {
    width: 100%;
}

 /* Hero Section - FIXED */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/hero-image-new.png') no-repeat center center;
            background-size: cover;
            min-height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            padding: 60px 0;
        }
        
        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
            padding: 0 20px;
        }
        
        .hero-content {
            max-width: 700px;
            margin-left: 0;
            margin-right: auto;
            text-align: left;
        }
        
        .hero-title {
            color: white;
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .hero-subtitle {
            color: white;
            font-size: 1.8rem;
            margin-bottom: 40px;
            font-weight: 400;
        }
        
        .video-container {
            background: rgba(0, 0, 0, 0.7);
            padding: 20px;
            max-width: 600px;
            margin-left: 0;
            margin-right: auto;
        }
        
        .video-wrapper {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
        }
        
        .video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }
        
        .video-caption {
            color: white;
            font-style: italic;
            margin: 15px 0;
            text-align: center;
        }
        
        .cta-btn {
            display: block;
            background-color: var(--primary-color);
            color: white;
            text-transform: uppercase;
            font-family: 'Oswald', sans-serif;
            font-weight: 500;
            letter-spacing: 1px;
            padding: 15px 40px;
            border: none;
            border-radius: 0;
            margin: 20px auto 0;
            transition: all 0.3s ease;
            width: fit-content;
        }
        
        .cta-btn:hover {
            background-color: #d11a68;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(241, 35, 122, 0.3);
            color: white;
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.4rem;
            }
            
            .video-container {
                margin: 0 auto;
            }
            
            .hero-content {
                text-align: center;
                margin: 0 auto;
            }
            
            .cta-btn {
                margin: 20px auto 0;
            }
        }

/* Full Width Photo Section */
.full-width-photo {
    position: relative;
}

.full-width-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: linear-gradient(to right, rgba(40, 42, 43, 0.85) 0%, rgba(40, 42, 43, 0.6) 50%, transparent 100%);
    padding: 0 15px;
}

.overlay-content {
    max-width: 50%;
    padding: 40px;
    color: var(--light-color);
}

.overlay-content h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--light-color);
    text-transform: uppercase;
}

.overlay-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--light-color);
}

.overlay-content .btn {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 12px 30px;
    border-radius: 0;
    transition: all 0.3s ease;
}

.overlay-content .btn:hover {
    background-color: #d11a68;
    border-color: #d11a68;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(241, 35, 122, 0.3);
}

@media (max-width: 992px) {
    .overlay-content {
        max-width: 70%;
        padding: 30px;
    }
    .overlay-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .full-width-photo {
        height: 400px;
    }
    .full-width-photo img {
        height: 400px;
    }
    .photo-overlay {
        justify-content: center;
        background: rgba(40, 42, 43, 0.85);
        text-align: center;
        padding: 30px 20px;
    }
    .overlay-content {
        max-width: 100%;
        padding: 20px;
    }
    .overlay-content h2 {
        font-size: 1.7rem;
    }
    .overlay-content p {
        font-size: 1rem;
    }
    .overlay-content .btn {
        padding: 10px 25px;
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .full-width-photo {
        height: 450px;
    }
    .full-width-photo img {
        height: 450px;
    }
    .overlay-content h2 {
        font-size: 1.5rem;
    }
    .overlay-content p {
        font-size: 0.95rem;
    }
    .overlay-content {
        padding: 15px;
    }
}

/* Contact Info Box Logo */
.info-logo {
    max-height: 180px;
    max-width: 240px;
    transition: all 0.3s ease;
}

@media (max-width: 767.98px) {
    .info-logo {
        max-height: 120px;
        max-width: 180px;
        display: block;
        margin: 10px auto 0;
    }
}

/* Services Section - UPDATED */
.services-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    bottom: 0;
    left: 0;
}

.services-list {
    background: white;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.services-list h3 {
    font-size: 1.5rem;
    margin-top: 30px;
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
    margin-bottom: 20px;
    display: inline-block;
}

.services-list ul {
    list-style: none;
    padding-left: 0;
    columns: 2;
    column-gap: 30px;
}

.services-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: -5px;
    break-inside: avoid;
}

.services-list li:before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    line-height: 1;
}

@media (max-width: 767px) {
    .services-list ul {
        columns: 1;
    }
}

.services-list {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
}

.list-block {
    margin-bottom: 40px;
}

.services-list h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #222;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    border-left: 4px solid var(--primary-color);
    padding-left: 15px;
}

.services-list ul {
    list-style: none;
    padding-left: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 30px;
    font-size: 1rem;
    color: #444;
}

.services-list li {
    position: relative;
    padding-left: 18px;
}

.services-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

/* Mobile responsiveness */
@media (max-width: 767px) {
    .services-list ul {
        grid-template-columns: 1fr;
    }
}

/* Benefits Section */
.benefits-section {
  padding: 80px 0;
  background: white;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 50px;
  font-weight: bold;
  color: #222;
}

.benefits-row {
  margin-top: 30px;
}

/* Card Styles */
.benefit-card {
  position: relative;
  background-color: #ebebeb;
  padding: 60px 25px 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  border-radius: 8px;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

/* Circle icon wrapper */
.icon-wrapper {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
}

.icon-circle {
  width: 80px;
  height: 80px;
  background-color: #ec1379;
  color: white;
  font-size: 1.7rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: background-color 0.3s ease;
}

.benefit-card:hover .icon-circle {
  background-color: #000;
}

/* Content Styles */
.benefit-card h3 {
  margin-top: 30px;
  font-size: 1.25rem;
  font-weight: 600;
  color: #222;
}

.benefit-card p {
  font-size: 0.95rem;
  color: #444;
  margin: 15px 0 25px;
}

.benefit-card a.btn {
  border-radius: 0;
  font-weight: 500;
  padding: 10px 20px;
}

/* Responsive Enhancements */
@media (max-width: 767px) {
  .card-bottom {
    margin-bottom: 80px;
  }

  .icon-wrapper {
    top: -35px;
  }
}

@media (max-width: 450px) {
  .card-bottom {
    margin-bottom: 100px;
  }
}

/* Dual Section */
.dual-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.dual-col {
    padding: 30px;
}

.dual-content {
    margin-bottom: 30px;
}

.dual-image {
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.dual-image img {
    transition: transform 0.5s ease;
    width: 100%;
}

.dual-image:hover img {
    transform: scale(1.05);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/cta-bg.jpg') no-repeat center center;
    background-size: cover;
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cta-section .section-title {
    color: white;
}

.cta-section .section-title:after {
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
}

.btn {
    padding: 12px 30px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 0 !important;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #d11a68;
    border-color: #d11a68;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(241, 35, 122, 0.3);
}

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 50px 0 20px;
}

.footer-logo {
    height: 85px;
    margin-bottom: 20px;
    margin-left: -28px;
}

.footer-social a {
    color: white;
    font-size: 1.2rem;
    margin-left: 15px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    margin-top: 30px;
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .footer-social {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 767.98px) {
    .top-bar .contact-info,
    .top-bar .social-icons {
        text-align: center;
    }
    
    .top-bar .contact-info span {
        display: block;
        margin: 5px 0;
    }
    
    .hero {
        text-align: center;
        padding: 80px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .video-container {
        margin-top: 30px;
    }
    
    .services-list {
        margin-top: 40px;
    }
    
    .dual-col {
        margin-bottom: 40px;
    }
}

.breadcrumb-section {
    padding: 30px 0;
    background-color: #f8f9fa;
}

.breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--dark-color);
}

.breadcrumb-title {
    font-family: 'Oswald', sans-serif;
    color: var(--dark-color);
    text-transform: uppercase;
    margin: 0;
}

@media (max-width: 768px) {
    .breadcrumb-title {
        margin-top:-30px;
        text-align: right;
    }
}


.intro-section {
    padding: 80px 0;
    background-color: white;
}

.intro-content h2 {
    font-family: 'Oswald', sans-serif;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* On small devices: left-right layout */
@media (max-width: 768px) {
  .top-bar .row {
    flex-direction: row;
  }

  .top-bar .col-md-6 {
    flex: 1;
  }

  .contact-info {
    text-align: left;
  }

  .social-icons {
    text-align: right;
  }
}


/* Language link style */
.language-link {
    color: white;
    margin-left: 20px;
    font-weight: bold;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

.language-link:hover {
    color: var(--dark-color);
}
       
        /* Floating Mini Video */
        .mini-video {
            position: fixed;
            bottom: 20px;
            left: 20px;
            width: 320px;
            height: 180px;
            padding-bottom: 0;
            background: #000;
            border-radius: 8px;
            z-index: 9999;
            display: none;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
        }

        .mini-video .video-inner {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .mini-video iframe {
            z-index: 1;
        }

        /* Professional Close Button */
        .close-btn {
            position: absolute;
            top: 10px;
            right: 10px;
            background: rgba(0,0,0,0.7);
            color: white;
            border: none;
            border-radius: 50%;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            transition: all 0.2s ease;
            padding: 0;
        }

        .close-btn:hover {
            background: rgba(0,0,0,0.9);
            transform: scale(1.1);
        }

        .close-btn svg {
            width: 16px;
            height: 16px;
        }
        
        #section-title::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 3px;
            background: var(--primary-color);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2rem;
            }
            .hero-subtitle {
                font-size: 1.2rem;
            }
            .hero-content {
                max-width: 100%;
            }
            .cta-btn {
                margin: 0 auto;
            }
        }
        
        /* Full Width Photo Section */
        .full-width-photo {
            position: relative;
        }
        
        .full-width-photo img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .photo-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            background: linear-gradient(to right, rgba(40, 42, 43, 0.85) 0%, rgba(40, 42, 43, 0.6) 50%, transparent 100%);
            padding: 0 15px;
        }
        
        .overlay-content {
            max-width: 50%;
            padding: 40px;
            color: var(--light-color);
        }
        
        .overlay-content h2 {
            font-family: 'Oswald', sans-serif;
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--light-color);
            text-transform: uppercase;
        }
        
        .overlay-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: var(--light-color);
        }
        
        .overlay-content .btn {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            color: white;
            font-family: 'Oswald', sans-serif;
            text-transform: uppercase;
            font-weight: 500;
            letter-spacing: 1px;
            padding: 12px 30px;
            border-radius: 0;
            transition: all 0.3s ease;
        }
        
        .overlay-content .btn:hover {
            background-color: #d11a68;
            border-color: #d11a68;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(241, 35, 122, 0.3);
        }
        
        @media (max-width: 992px) {
            .overlay-content {
                max-width: 70%;
                padding: 30px;
            }
            .overlay-content h2 {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 768px) {
            .full-width-photo {
                height: 400px;
            }
            .full-width-photo img {
                height: 400px;
            }
            .photo-overlay {
                justify-content: center;
                background: rgba(40, 42, 43, 0.85);
                text-align: center;
                padding: 30px 20px;
            }
            .overlay-content {
                max-width: 100%;
                padding: 20px;
            }
            .overlay-content h2 {
                font-size: 1.7rem;
            }
            .overlay-content p {
                font-size: 1rem;
            }
            .overlay-content .btn {
                padding: 10px 25px;
                font-size: 0.95rem;
            }
        }
        
        @media (max-width: 576px) {
            .full-width-photo {
                height: 450px;
            }
            .full-width-photo img {
                height: 450px;
            }
            .overlay-content h2 {
                font-size: 1.5rem;
            }
            .overlay-content p {
                font-size: 0.95rem;
            }
            .overlay-content {
                padding: 15px;
            }
        }
        
        /* Contact Info Box Logo */
        .info-logo {
            max-height: 400px;
            max-width: 310px;
            transition: all 0.3s ease;
        }
        
        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .mini-video {
                width: 240px;
                height: 135px;
                bottom: 15px;
                left: 15px;
            }
            
            .close-btn {
                width: 28px;
                height: 28px;
                top: 8px;
                right: 8px;
            }
            
            .close-btn svg {
                width: 14px;
                height: 14px;
            }
        }

        @media (max-width: 480px) {
            .mini-video {
                width: 250px;
                height: 160px;
                bottom: 10px;
                left: 10px;
            }
            
            .close-btn {
                width: 24px;
                height: 24px;
                top: 6px;
                right: 6px;
            }
            
            .close-btn svg {
                width: 12px;
                height: 12px;
            }
            .footer-logo{
                text-align:center;
            }
        }

        /* Language link style */
        .language-link {
            color: white;
            margin-left: 20px;
            font-weight: bold;
            text-decoration: none;
            font-family: 'Oswald', sans-serif;
            text-transform: uppercase;
        }

        .language-link:hover {
            color: var(--dark-color);
        }

        .developer-credit {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            margin-top: 10px;
        }

        .developer-credit a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .developer-credit a:hover {
            color: var(--primary-color);
            text-decoration: underline;
        }
        
        @media (min-width: 1500px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1500px;
    }
}