:root {
    --primary-navy: #003980;
    --accent-red: #DE0002;
    --text-gray: #515151;
    --white: #FFFFFF;
}

* {
    font-family: 'Roboto', sans-serif;
}

/* Typography System - Following Theme Guidelines */
h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-navy);
    line-height: 1.2;
    margin-bottom: 1rem;
}

h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--accent-red);
    line-height: 1.3;
    margin-bottom: 0.8rem;
}

h3 {
    font-size: 36px;
    font-weight: 700;
    color: var(--accent-red);
    line-height: 1.3;
    margin-bottom: 0.6rem;
}

h4 {
    font-size: 24px;
    font-weight: 400;
    color: var(--primary-navy);
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

p {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Navbar Styles */
.navbar {
    background-color: var(--white);
    padding: 1rem 0;
}

.navbar-brand img {
    width: 300px;
}

.navbar-nav .nav-link {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-navy) !important;
    margin: 0 1rem;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--accent-red) !important;
}

.btn-quote {
    background-color: var(--accent-red);
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    border-radius: 25px;
    padding: 0.8rem 2rem;
    border: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    cursor: pointer;
}

.btn-quote:hover {
    background-color: #b30002;
    transform: translateY(-1px);
    color: var(--white);
}

.btn-quote:active {
    transform: translateY(0);
}

/* Animated Navbar Toggler (Hamburger to X) */
.navbar-toggler {
    border: none;
    padding: 0.375rem 0.75rem;
    background: transparent;
    position: relative;
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: none;
    position: relative;
    width: 24px;
    height: 2px;
    background-color: var(--primary-navy);
    display: block;
    transition: all 0.3s ease;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--primary-navy);
    transition: all 0.3s ease;
    left: 0;
}

.navbar-toggler-icon::before {
    top: -8px;
}

.navbar-toggler-icon::after {
    top: 8px;
}

/* Active state (X icon) - when NOT collapsed (menu is open) */
.navbar-toggler:not(.collapsed) .navbar-toggler-icon {
    background-color: transparent;
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon::before {
    transform: rotate(45deg);
    top: 0;
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon::after {
    transform: rotate(-45deg);
    top: 0;
}

/* Banner Section */
.banner-section {
    background-color: var(--white);
    padding-top: 80px;
    position: relative;
}

.banner-content {
    position: relative;
}

.banner-content h1 {
    margin-bottom: 2rem;
}

.btn-enterprise {
    background-color: var(--accent-red);
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    border-radius: 25px;
    padding: 0.8rem 2rem;
    border: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    cursor: pointer;
}

.btn-enterprise:hover {
    background-color: #b30002;
    transform: translateY(-1px);
    color: var(--white);
}

.btn-enterprise:active {
    transform: translateY(0);
}

/* Banner Image Section */
.banner-image-section {
    background-color: var(--white);
    padding: 0;
    margin-top: -300px;
    margin-bottom: 0;
}

.banner-image-container {
    width: 100%;
    overflow: hidden;
}

.banner-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 100%;
}

/* Count Cards Section */
.count-cards-section {
    background-image: url('../assets/img_count-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
    position: relative;
}

.count-cards-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: linear-gradient(135deg, var(--primary-navy) 0%, rgba(0, 57, 128, 0.9) 100%); */
    z-index: 1;
}

.count-cards-section .container {
    position: relative;
    z-index: 2;
}

.count-card {
    background-color: var(--white);
    border-radius: 15px;
    padding: 20px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 2px solid transparent;
    min-height: 140px;
    position: relative;
    overflow: hidden;
}

.count-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-navy);
}

.count-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 57, 128, 0.1), transparent);
    transition: left 0.5s ease;
}

.count-card:hover::before {
    left: 100%;
}

.count-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--accent-red);
    line-height: 1;
    margin-bottom: 0.3rem;
    display: block;
}

.count-label {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    color: var(--primary-navy);
}





/* Clients Section */
.clients-section {
    background-color: #F7FAFF;
    padding: 60px 0;
    position: relative;
}

.clients-header h2 {
    margin-bottom: 0;
    line-height: 1.1;
}

.clients-tagline {
    display: flex;
    align-items: center;
    height: 100%;
}

.clients-tagline .banner-tagline {
    font-size: 20px;
    margin-bottom: 0;
    text-align: left;
    line-height: 1.3;
}

.clients-grid-container {
    position: relative;
    padding: 20px 0;
}

.clients-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0;
}

.clients-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
}

.client-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.client-item img {
    width: auto;
    height: 105px;
    object-fit: contain;
    display: block;
}

/* Mobile Carousel Styles */
.clients-carousel-container {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.clients-carousel {
    display: flex;
    gap: 40px;
    padding: 0 60px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    user-select: none;
}

.clients-carousel::-webkit-scrollbar {
    display: none;
}

.clients-carousel:active {
    cursor: grabbing;
}

.clients-carousel .client-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.clients-carousel .client-item img {
    width: auto;
    height: 80px;
    object-fit: contain;
}

/* Blur overlays for mobile carousel */
.carousel-blur-left,
.carousel-blur-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    pointer-events: none;
    z-index: 2;
}

.carousel-blur-left {
    left: 0;
    background: linear-gradient(to right,
            #F7FAFF 0%,
            rgba(247, 250, 255, 0.8) 30%,
            rgba(247, 250, 255, 0.4) 60%,
            rgba(247, 250, 255, 0) 100%);
}

.carousel-blur-right {
    right: 0;
    background: linear-gradient(to left,
            #F7FAFF 0%,
            rgba(247, 250, 255, 0.8) 30%,
            rgba(247, 250, 255, 0.4) 60%,
            rgba(247, 250, 255, 0) 100%);
}

/* Enquiry Section */
.enquiry-section {
    background: #F7FAFF 0% 0% no-repeat padding-box;
    opacity: 1;
    padding: 60px 0;
    position: relative;
}

.enquiry-header h2 {
    margin-bottom: 0;
    font-size: 42px;
    line-height: 1.1;
    color: var(--primary-navy);
}

.enquiry-tagline {
    display: flex;
    align-items: center;
    height: 100%;
}

.enquiry-tagline .banner-tagline {
    margin-bottom: 0;
    text-align: left;
    font-size: 20px;
    line-height: 1.3;
    color: var(--text-gray);
}

.enquiry-form {
    padding: 0;
}

.enquiry-form .form-control {
    font-size: 24px;
    font-weight: 400;
    color: var(--text-gray);
    border: 1px solid #707070;
    border-radius: 10px;
    opacity: 1;
    padding: 1rem 1.5rem;
    background-color: var(--white);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    height: auto;
    width: 100%;
}

.enquiry-form .form-control:focus {
    border-color: var(--primary-navy);
    box-shadow: 0 0 0 3px rgba(0, 57, 128, 0.1);
    outline: none;
}

.enquiry-form .form-control::placeholder {
    color: #999999;
    font-weight: 400;
    font-size: 18px;
    opacity: 1;
}

.enquiry-form textarea.form-control {
    resize: vertical;
    max-height: 120px;
}

.btn-enquiry {
    background-color: var(--accent-red);
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    border-radius: 20px;
    padding: 0.8rem 2rem;
    border: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    cursor: pointer;
}

.btn-enquiry:hover {
    background-color: #b30002;
    transform: translateY(-2px);
    color: var(--white);
}

.btn-enquiry:active {
    transform: translateY(0);
}

/* ===============================
   OUR SERVICES SECTION
================================ */

.services-section {
  background-color: #ffffff;
  padding: 70px 0;
}

/* Subtitle */
.services-subtitle {
  font-size: 23px;
  font-weight: 700;
  color: #0a58ca;
  margin-bottom: 8px;
}

/* Main Title */
.services-title {
  font-size: 32px;
  font-weight: 800;
  color: #d32f2f;
  max-width: 900px;
  line-height: 1.3;
}

/* Image */
.services-image {
  display: flex;
  align-items: flex-start;
}

.services-image img {
  width: 100%;
  max-width: 380px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Content */
.services-content {
  padding-left: 10px;
}

/* Paragraphs */
.services-description {
  font-size: 19px;
  line-height: 1.5;
  color: var(--primary-navy);
  margin-bottom: 18px;
}

/* Section Heading inside content */
.services-content-header {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 10px;
}

/* Responsive Fix */
@media (max-width: 991px) {
  .services-title {
    font-size: 26px;
  }

  .services-image {
    margin-bottom: 25px;
  }

  .services-content {
    padding-left: 0;
  }
}

/* About Us Section */
.about-section {
    background-color: var(--white);
    padding-top: 31px;
    /* padding-bottom: 60px; */
    position: relative;
}

.about-image {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 0;
    position: relative;
    z-index: 3;
}

.about-image img {
    width: 100%;
    max-width: 380px;
    height: 460px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-content {
    padding: 0;
    padding-left: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    height: 100%;
}

.about-subtitle {
    text-align: left;
    font-weight: 700;
}

.about-title {
    text-align: left;
}

.about-divider {
    width: 60px;
    height: 4px;
    background-color: var(--primary-navy);
    margin-bottom: 0.8rem;
}

.about-description {
    color: var(--primary-navy);
    line-height: 1.2;
    margin-bottom: 0;
    text-align: left;
}

.about-row {
    transform: translateY(50px);
    position: relative;
    z-index: 4;
}

/* Why Choose Us Section */
.why-choose-section {
    background-image: url('../assets/img_bg2.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 0;
    position: relative;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    
    z-index: 1;
}

.why-choose-section .container {
    position: relative;
    z-index: 2;
    padding-top: 50px;
}

.why-choose-title {
    text-align: left;
    color: var(--white);
    margin-bottom: 2rem;
}

.why-choose-description {
    color: var(--white);
    margin-bottom: 1.5rem;
    text-align: left;
}

.why-choose-description:last-child {
    margin-bottom: 0;
}

/* Areas of Expertise Section */
.expertise-section {
    background-image: url('../assets/img_areas_of_expertise_bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 0;
    position: relative;
}

.expertise-header h2 {
    margin-bottom: 0;
    line-height: 1.1;
    color: var(--white);
}

.expertise-tagline {
    display: flex;
    align-items: center;
    height: 100%;
}

.expertise-tagline .banner-tagline {
    font-size: 20px;
    margin-bottom: 0;
    text-align: left;
    line-height: 1.3;
    color: var(--white);
}

.expertise-tabs {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.expertise-tab {
    background-color: var(--white);
    border: 1px solid #707070;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.expertise-tab-btn {
    background-color: var(--white);
    border: none;
    padding: 20px 30px;
    width: 100%;
    text-align: left;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.expertise-tab-btn:hover {
    background-color: #f8f9fa;
}

.expertise-tab-btn.active {
    color: var(--accent-red);
    font-weight: 700;
    background-color: #f8f9fa;
}

.tab-arrow {
    float: right;
    font-size: 16px;
    transition: transform 0.3s ease;
    color: var(--primary-navy);
}

.expertise-tab-btn.active .tab-arrow {
    color: var(--accent-red);
}

.expertise-tab-content {
    display: none;
    padding: 0;
}

.expertise-tab-content.active {
    display: block;
}

.expertise-separator {
    border-top: 1px solid #707070;
    margin: 0;
}

.expertise-tab-content .row {
    padding: 30px;
    margin: 0;
    align-items: flex-start;
}

.expertise-tab-content .col-lg-5 {
    padding-right: 20px;
}

.expertise-tab-content .col-lg-7 {
    padding-left: 20px;
}

.expertise-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.expertise-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0;
    line-height: 1.4;
}

.expertise-list li::before {
    content: '•';
    color: var(--text-gray);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 20px;
    line-height: 1.2;
}

.expertise-image {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0;
    padding-right: 20px;
    padding-bottom: 20px;
}

.expertise-image img {
    width: 460px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Google Maps Section */
.map-section {
    background-color: var(--white);
    padding: 0;
    margin: 0;
}

.fullscreen-map {
    width: 100%;
    height: 400px;
    border: 0;
    display: block;
}

/* Footer Section */
.footer-section {
    background-color: var(--primary-navy);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-logo {
    width: 250px;
    height: auto;
}

.footer-contact {
    margin-top: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.contact-icon {
    font-size: 18px;
    margin-right: 10px;
    margin-top: 2px;
    min-width: 20px;
}

.contact-icon-svg {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    margin-top: 2px;
    min-width: 20px;
    filter: brightness(0) invert(1);
}

.mobile-text {
    margin: 0;
    font-size: 16px;
    color: var(--white) !important;
    line-height: 1.4;
}

.contact-text p {
    margin: 0;
    font-size: 16px;
    color: var(--white);
    line-height: 1.4;
}

.footer-title {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    position: relative;
    padding-left: 1rem;
    margin-bottom: 0.8rem;
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
    line-height: 1.4;
}

.footer-list li::before {
    content: '•';
    color: var(--accent-red);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 30px;
    line-height: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    /* margin-top: 3rem; */
    padding-top: 2rem;
}

.copyright-text {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.social-links {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-2px);
}

.social-icon {
    width: 30px;
    height: 30px;
    transition: all 0.3s ease;
}

.social-link:hover .social-icon {
    filter: brightness(1.2);
}



/* Large Tablet Responsive */
@media (min-width: 992px) and (max-width: 1200px) {
    .clients-grid-container {
        padding: 20px 0;
    }

    .clients-grid {
        gap: 18px;
        padding: 0 10px;
    }

    .clients-row {
        gap: 8px;
        justify-content: space-between;
    }

    .client-item img {
        height: 90px;
    }
}

/* Tablet Responsive - 768px to 991px */
@media (min-width: 768px) and (max-width: 991px) {
    .about-description {
        margin-bottom: 60px;
    }
}

/* Responsive Design - Exclude 768px-991px range */
@media (min-width: 992px) and (max-width: 1100px) {
    h1 {
        font-size: 42px;
    }

    h2 {
        font-size: 28px;
    }

    h3 {
        font-size: 24px;
    }

    h4 {
        font-size: 18px;
    }

    p {
        font-size: 16px;
    }

    .banner-tagline {
        font-size: 18px;
    }

    .btn-enterprise {
        font-size: 16px;
        padding: 0.7rem 1.8rem;
    }

    .navbar-nav .nav-link {
        font-size: 16px;
        margin: 0 0.5rem;
    }

    .navbar-brand img {
        width: 200px;
    }

    .fullscreen-map {
        height: 400px;
    }

    .footer-section {
        padding: 50px 0 20px;
    }

    .footer-title {
        font-size: 20px;
    }

    .footer-list li {
        font-size: 14px;
    }

    .contact-text p {
        font-size: 15px;
    }

    /* Count Cards Responsive - Tablet */
    .count-cards-section {
        padding: 50px 0;
    }

    .count-card {
        padding: 18px 15px;
        margin-bottom: 15px;
        min-height: 120px;
    }

    .count-number {
        font-size: 36px;
        margin-bottom: 0.3rem;
    }

    .count-label {
        font-size: 20px;
    }

    /* Solutions Section Responsive - Tablet */
    .solutions-section {
        padding: 50px 0;
    }

    .solutions-header h2 {
        font-size: 36px;
    }

    .solutions-tagline .banner-tagline {
        text-align: left;
        margin-top: 20px;
        font-size: 16px;
    }

    .solution-card {
        padding: 30px 25px;
        margin-bottom: 30px;
    }

    .solution-title {
        font-size: 20px;
        margin-bottom: 0.4rem;
    }

    .solution-description {
        font-size: 16px;
        margin-bottom: 1.2rem;
    }

    .solution-features li {
        font-size: 16px;
        margin-bottom: 0.6rem;
    }

    .solution-icon img {
        width: 50px;
        height: 50px;
    }

    /* Methodology Section Responsive - Tablet */
    .methodology-section {
        padding: 50px 0;
    }

    .methodology-header h2 {
        font-size: 36px;
    }

    .methodology-tagline .banner-tagline {
        text-align: left;
        margin-top: 20px;
        font-size: 16px;
    }

    .methodology-card {
        margin-bottom: 30px;
        min-height: 350px;
    }

    .methodology-image {
        height: 160px;
    }

    .methodology-content {
        padding: 20px 18px;
    }

    .methodology-title {
        font-size: 20px;
        margin-bottom: 0.8rem;
    }

    .methodology-description {
        font-size: 16px;
    }

    .methodology-section .owl-dots {
        margin-top: 30px;
    }

    .methodology-item {
        padding: 0 10px;
    }

    /* Clients Section Responsive - Tablet */
    .clients-section {
        padding: 50px 0;
    }

    .clients-header h2 {
        font-size: 36px;
    }

    .clients-tagline .banner-tagline {
        text-align: left;
        margin-top: 20px;
        font-size: 16px;
    }

    .client-item img {
        height: 85px;
    }

    /* Our Services Section Responsive - Tablet */
    .services-section {
        padding: 50px 0;
    }

    .services-subtitle {
        text-align: left;
        font-weight: 700;
    }

    .services-title {
        text-align: left;
    }

    .services-content-header {
        margin-bottom: 0.2rem;
        text-align: left;
        font-weight: 700;
    }

    .services-description {
        font-size: 16px;
        margin-bottom: 1.2rem;
    }

    .services-image {
        padding-right: 20px;
        margin-bottom: 20px;
    }

    .services-image img {
        max-width: 350px;
    }

    /* About Us Section Responsive - Tablet */
    .about-section {
        padding-top: 25px;
        padding-bottom: 50px;
    }

    .about-row {
        transform: translateY(40px);
        position: relative;
        z-index: 4;
    }

    .about-image {
        padding: 0;
        margin-bottom: 20px;
    }

    .about-image img {
        max-width: 320px;
        height: 380px;
    }

    .about-content {
        padding: 0;
        padding-left: 20px;
    }

    .why-choose-section .container {
        padding-top: 40px;
    }

    .about-description {
        color: var(--primary-navy);

        margin-bottom: 0;
        text-align: left;
    }

    /* Why Choose Us Section Responsive - Tablet */
    .why-choose-section {
        padding: 50px 0;
    }

    .why-choose-description {
        font-size: 16px;
        margin-bottom: 1.2rem;
    }

    /* Areas of Expertise Section Responsive - Tablet */
    .expertise-section {
        padding: 50px 0;
    }

    .expertise-header h2 {
        font-size: 36px;
    }

    .expertise-tagline .banner-tagline {
        text-align: left;
        margin-top: 20px;
        font-size: 16px;
        color: var(--white);
    }

    .expertise-tab-btn {
        font-size: 20px;
        padding: 15px 25px;
    }

    .tab-arrow {
        font-size: 14px;
    }

    .expertise-tab-content .row {
        padding: 25px;
    }

    .expertise-list li {
        font-size: 16px;
        margin-bottom: 0;
    }

    .expertise-image {
        padding: 0;
        padding-right: 15px;
        padding-bottom: 15px;
    }

    .expertise-image img {
        width: 350px;
        height: 180px;
    }

    /* Enquiry Section Responsive - Tablet */
    .enquiry-section {
        padding: 50px 0;
    }

    .enquiry-header h2 {
        font-size: 36px;
    }

    .enquiry-tagline .banner-tagline {
        text-align: left;
        margin-top: 20px;
        font-size: 16px;
    }

    .enquiry-form {
        padding: 0;
    }

    .enquiry-form .form-control {
        font-size: 20px;
        padding: 0.8rem 1.2rem;
        border-radius: 8px;
    }

    .enquiry-form textarea.form-control {
        max-height: 100px;
    }

    .btn-enquiry {
        font-size: 16px;
        padding: 0.7rem 1.8rem;
        border-radius: 18px;
    }
}

/* Small Tablet/Large Mobile - 540px to 767px */
@media (min-width: 540px) and (max-width: 767px) {
}

@media (max-width: 539px) {
    h1 {
        font-size: 42px;
    }

    h2 {
        font-size: 28px;
    }

    h3 {
        font-size: 24px;
    }

    h4 {
        font-size: 18px;
    }

    p {
        font-size: 16px;
    }

    .banner-section {
    padding-top: 40px;
}

    .banner-image-section {
    margin-top: -150px;
}

    .banner-tagline {
        font-size: 18px;
    }

    .btn-enterprise {
        font-size: 16px;
        padding: 0.6rem 1.6rem;
    }

    .navbar-nav .nav-link {
        font-size: 16px;
        margin: 0 0.5rem;
    }

    .navbar-brand img {
        width: 200px;
    }

    .banner-image {
        max-height: 100%;
    }

    /* Count Cards Responsive - Mobile */
    .count-cards-section {
        padding: 40px 0;
    }

    .count-card {
        padding: 15px 12px;
        margin-bottom: 12px;
        min-height: 100px;
    }

    .count-number {
        font-size: 32px;
        margin-bottom: 0.2rem;
    }

    .count-label {
        font-size: 18px;
    }





    /* Clients Section Responsive - Mobile */
    .clients-section {
        padding: 40px 0;
    }

    .clients-header h2 {
        font-size: 32px;
    }

    .clients-tagline .banner-tagline {
        text-align: left;
        margin-top: 15px;
        font-size: 15px;
    }

    /* Our Services Section Responsive - Mobile */
    .services-section {
        padding: 40px 0;
    }

    .services-subtitle {
        text-align: left;
        font-weight: 700;
    }

    .services-title {
        text-align: left;
    }

    .services-content-header {
        margin-bottom: 0.2rem;
        text-align: left;
        font-weight: 700;
    }

    .services-description {
        font-size: 15px;
        margin-bottom: 1rem;
    }

    .services-image {
        padding-right: 15px;
        margin-bottom: 20px;
    }

    .services-image img {
        max-width: 300px;
    }

    /* About Us Section Responsive - Mobile */
    .about-section {
        padding-top: 20px;
        padding-bottom: 40px;
    }

    .about-row {
        transform: translateY(30px);
        position: relative;
        z-index: 4;
    }

    .about-image {
        padding: 0;
        margin-bottom: 20px;
    }

    .about-image img {
        max-width: 280px;
        height: 320px;
    }

    .about-content {
        padding: 0;
        padding-left: 15px;
    }

    .why-choose-section .container {
        padding-top: 30px;
    }

    .about-description {
        color: var(--primary-navy);

        margin-bottom: 0;
        text-align: left;
    }

    /* Why Choose Us Section Responsive - Mobile */
    .why-choose-section {
        padding: 40px 0;
    }

    .why-choose-description {
        font-size: 15px;
        margin-bottom: 1rem;
    }

    /* Areas of Expertise Section Responsive - Mobile */
    .expertise-section {
        padding: 40px 0;
    }

    .expertise-header h2 {
        font-size: 32px;
    }

    .expertise-tagline .banner-tagline {
        text-align: left;
        margin-top: 15px;
        font-size: 15px;
        color: var(--white);
    }

    .expertise-tab-btn {
        font-size: 18px;
        padding: 12px 20px;
    }

    .tab-arrow {
        font-size: 12px;
    }

    .expertise-tab-content .row {
        padding: 20px;
    }

    .expertise-list li {
        font-size: 15px;
        margin-bottom: 0;
    }

    .expertise-image {
        padding: 0;
        padding-right: 10px;
        padding-bottom: 10px;
        margin-top: 15px;
    }

    .expertise-image img {
        width: 300px;
        height: 160px;
    }

    /* Enquiry Section Responsive - Mobile */
    .enquiry-section {
        padding: 40px 0;
    }

    .enquiry-header h2 {
        font-size: 32px;
    }

    .enquiry-tagline .banner-tagline {
        text-align: left;
        margin-top: 15px;
        font-size: 15px;
    }

    .enquiry-form {
        padding: 0;
    }

    .enquiry-form .form-control {
        font-size: 18px;
        padding: 0.8rem 1rem;
        border-radius: 8px;
    }

    .enquiry-form textarea.form-control {
        min-height: 65px;
    }

    .btn-enquiry {
        font-size: 16px;
        padding: 0.6rem 1.6rem;
        border-radius: 16px;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 24px;
    }

    h3 {
        font-size: 20px;
    }

    h4 {
        font-size: 16px;
    }

    p {
        font-size: 14px;
    }

    .banner-tagline {
        font-size: 16px;
    }

    .btn-enterprise {
        font-size: 14px;
        padding: 0.6rem 1.4rem;
    }

    .tagline-right {
        text-align: left;
        padding-top: 1rem;
    }

    .banner-image {
        max-height: 100%;
    }

    .fullscreen-map {
        height: 300px;
    }

    .footer-section {
        padding: 40px 0 20px;
    }

    .footer-title {
        font-size: 18px;
        margin-bottom: 1rem;
    }

    .footer-list li {
        font-size: 12px;
        margin-bottom: 0.6rem;
    }

    .contact-text p {
        font-size: 14px;
    }

    .social-links {
        justify-content: center;
        margin-top: 1rem;
    }

    .copyright-text {
        text-align: center;
        margin-bottom: 1rem;
    }

    /* Count Cards Responsive - Small Mobile */
    .count-cards-section {
        padding: 30px 0;
    }

    .count-card {
        padding: 12px 8px;
        margin-bottom: 10px;
        border-radius: 10px;
        min-height: 85px;
    }

    .count-number {
        font-size: 28px;
        margin-bottom: 0.2rem;
    }

    .count-label {
        font-size: 16px;
        line-height: 1.1;
    }

    /* Solutions Section Responsive - Small Mobile */
    .solutions-section {
        padding: 30px 0;
    }

    .solutions-header h2 {
        text-align: center;
        margin-bottom: 15px;
        font-size: 28px;
    }

    .solutions-tagline .banner-tagline {
        text-align: center;
        margin-top: 0;
        font-size: 12px;
    }

    .solution-card {
        padding: 20px 15px;
        margin-bottom: 20px;
        border-radius: 10px;
    }





    /* Clients Section Responsive - Small Mobile */
    .clients-section {
        padding: 30px 0;
    }

    .clients-header h2 {
        text-align: center;
        margin-bottom: 15px;
        font-size: 28px;
    }

    .clients-tagline .banner-tagline {
        text-align: center;
        margin-top: 0;
        font-size: 12px;
    }

    /* Our Services Section Responsive - Small Mobile */
    .services-section {
        padding: 30px 0;
    }

    .services-subtitle {
        text-align: left;
        font-weight: 700;
    }

    .services-title {
        text-align: left;
    }

    .services-content-header {
        margin-bottom: 0.2rem;
        text-align: left;
        font-weight: 700;
    }

    .services-description {
        font-size: 14px;
        margin-bottom: 1rem;
        line-height: 1.4;
    }

    .services-image {
        padding-right: 10px;
        margin-bottom: 15px;
    }

    .services-image img {
        max-width: 250px;
    }

    /* About Us Section Responsive - Small Mobile */
    .about-section {
        padding-top: 15px;
        padding-bottom: 30px;
    }

    .about-row {
        transform: translateY(20px);
        position: relative;
        z-index: 4;
    }

    .about-image {
        padding: 0;
        margin-bottom: 15px;
    }

    .about-image img {
        max-width: 240px;
        height: 280px;
    }

    .about-content {
        padding: 0;
        padding-left: 10px;
    }

    .why-choose-section .container {
        padding-top: 20px;
    }

    .about-divider {
        width: 50px;
        height: 3px;
        margin-bottom: 0.8rem;
    }

    .about-description {
        color: var(--primary-navy);

        margin-bottom: 0;
        text-align: left;
    }

    /* Why Choose Us Section Responsive - Small Mobile */
    .why-choose-section {
        padding: 30px 0;
    }

    .why-choose-description {
        font-size: 14px;
        margin-bottom: 1rem;
        line-height: 1.4;
    }

    /* Areas of Expertise Section Responsive - Small Mobile */
    .expertise-section {
        padding: 30px 0;
    }

    .expertise-header h2 {
        text-align: center;
        margin-bottom: 15px;
        font-size: 28px;
    }

    .expertise-tagline .banner-tagline {
        text-align: center;
        margin-top: 0;
        font-size: 12px;
        color: var(--white);
    }

    .expertise-tab-btn {
        font-size: 16px;
        padding: 10px 15px;
        text-align: center;
    }

    .tab-arrow {
        font-size: 10px;
    }

    .expertise-tab-content .row {
        padding: 15px;
    }

    .expertise-list li {
        font-size: 14px;
        margin-bottom: 0;
        line-height: 1.3;
    }

    .expertise-image {
        padding: 0;
        padding-right: 10px;
        padding-bottom: 10px;
        margin-top: 10px;
    }

    .expertise-image img {
        width: 250px;
        height: 140px;
    }

    /* Enquiry Section Responsive - Small Mobile */
    .enquiry-section {
        padding: 30px 0;
    }

    .enquiry-header h2 {
        text-align: center;
        margin-bottom: 15px;
        font-size: 28px;
    }

    .enquiry-tagline .banner-tagline {
        text-align: center;
        margin-top: 0;
        font-size: 12px;
    }

    .enquiry-form {
        padding: 0;
    }

    .enquiry-form .form-control {
        font-size: 16px;
        padding: 0.6rem 1rem;
        border-radius: 8px;
    }

    .enquiry-form textarea.form-control {
        min-height: 60px;
    }

    .btn-enquiry {
        font-size: 14px;
        padding: 0.6rem 1.4rem;
        border-radius: 15px;
        width: 80%;
        max-width: 300px;
    }
}