/* Reset some basics */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
}

/* Header Styles */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: white;
  transition: padding 0.3s ease, box-shadow 0.3s ease;
  z-index: 9999;
  will-change: transform;
}

/* Header when scrolled */
header.shrink {
  padding: 2px 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Container inside header */
header .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 5px; /* Reduced side padding */
  transition: padding 0.3s ease;
}

/* Container when header shrinks */
header.shrink .container {
  padding: 10px 5px; /* Also reduced side padding */
}


.logo img {
  height: 40px;
  max-height: 60px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Navigation styles */
nav {
  display: flex;
  align-items: center;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  position: relative;
  text-decoration: none;
  color: #333;
  padding: 5px 0;
  transition: color 0.3s ease;
}

/* Hover underline effect */
.nav-links li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: #058ED2;
  transition: width 0.3s ease;
}

.nav-links li a:hover {
  color: #058ED2;
}

.nav-links li a:hover::after {
  width: 100%;
}

/* Hamburger menu icon */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  width: 24px;
  height: 18px;
  justify-content: space-between;
}

.hamburger span {
  height: 3px;
  background: #333;
  border-radius: 2px;
  transition: 0.3s;
}

/* Hamburger toggle to X */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu hidden by default */
.mobile-menu {
  display: none;
  background: white;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.mobile-menu ul {
  list-style: none;
  padding: 10px 15px;
}

.mobile-menu ul li {
  margin-bottom: 10px;
}

.mobile-menu ul li a {
  text-decoration: none;
  color: #333;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .mobile-menu.active {
    display: block;
  }
  .logo img {
    height: 35px;
  }
}

/* Video section styles */
/* Video section */
.video-section {
  width: 100%;
  overflow: hidden;
}
.video-section video {
  width: 100%;
  height: auto;
  display: block;
}





/* Tech Section */
.tech-section {
    padding: 6vw 4vw; /* Desktop padding */
    background: #fff ;
}

.tech-container {
    max-width: 80vw; /* Desktop max-width */
    margin: 0 auto;
    padding: 0 3vw; /* Desktop side padding */
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3vw; /* Desktop gap */
    flex-wrap: wrap; /* Important for allowing wrapping on smaller screens */
}

.tech-left {
    flex: 1 1 40vw; /* Desktop flex basis */
}

.tech-slogan {
    font-style: italic;
    font-weight: 500;
    font-size: 2.5vw; /* Desktop font size */
    margin-bottom: 2vw; /* Desktop margin */
    color: #333;
}

.tech-slogan::after {
    content: "";
    display: block;
    width: 8vw; /* Desktop width */
    height: 0.4vw; /* Desktop height */
    margin-top: 1.5vw; /* Desktop margin */
    background: #058ED2;
    border-radius: 0.3vw;
}

.tech-text {
    font-size: 1.6vw; /* Desktop font size */
    font-weight: 400;
    color: #333;
    margin-bottom: 3vw; /* Desktop margin */
    line-height: 1.5;
}

/* Right image - (re-adding this as it's part of the tech section in your HTML) */
.tech-right {
    flex: 1 1 30vw; /* Desktop flex basis */
    display: flex;
    justify-content: center;
}
.tech-image-wrapper {
    border: 0.3vw solid #058ED2;
    padding: 0.3vw;
    border-radius: 0.6vw;
}
.tech-image-wrapper img {
    display: block;
    width: 100%;
    height: 30vw; /* Desktop height */
    object-fit: cover;
    border-radius: 0.4vw;
}
.cta-button {
  display: inline-block;
  padding: 1vw 2vw;
  background: #058ED2;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0.4vw;
  transition: all 0.3s ease;
  font-size: 1.2vw;
}
.cta-button:hover {
  background: transparent;
  border: 0.2vw solid #058ED2;
  color: #058ED2;
}


/* --- Phone Layout for Tech Section (max-width: 768px) --- */
@media (max-width: 768px) {
    .tech-section {
        padding: 30px 20px; /* Use fixed pixels for predictable padding on mobile */
    }

    .tech-container {
        display: flex; /* Ensure flexbox is active */
        flex-direction: row; /* FORCE row direction */
        flex-wrap: wrap; /* Allow wrapping if space runs out, but aim for row */
        align-items: center; /* Vertically align items in the row */
        justify-content: center; /* Center items horizontally if not enough space */
        gap: 15px; /* Reduced gap for side-by-side items */
        max-width: 100%;
        padding: 0;
    }

    .tech-left {
        /* This will be the text part, place it after the image visually */
        order: 1; /* Place text second in visual order */
        flex: 1 1 55%; /* Allocate more space to text, but still side-by-side */
        text-align: left;
        min-width: 150px; /* Ensure text block doesn't get too narrow */
    }

    .tech-right {
        /* This will be the image part, place it before the text visually */
        order: 1; /* Place image first in visual order */
        flex: 0 0 40%; /* Fixed width for image to ensure it fits, won't grow */
        display: flex; /* Keep flex for centering image inside */
        justify-content: center; /* Center the image */
        align-self: flex-start; /* Align image to top if text block is taller */
        min-width: 100px; /* Minimum width for the image */
    }

    .tech-slogan {
        font-size: 0.8rem; /* Adjusted for smaller screen, might still be small if side-by-side */
        margin-bottom: 10px;
    }

    .tech-slogan::after {
        width: 40px; /* Smaller underline */
        height: 2px;
        margin-top: 5px;
        margin-bottom: 10px;
        border-radius: 2px;
    }

    .tech-text {
        font-size: 0.5rem; /* Adjusted for smaller screen, might be very small if side-by-side */
        font-weight: 400;
        color: #333;
        margin-bottom: 15px;
        line-height: 1.4;
    }

    .cta-button {
        padding: 5px 8px; /* CTA button a little bigger (from 10px 24px) */
        font-size: 0.5rem; /* Adjusted font for bigger button */
        border-radius: 4px; /* Slightly larger border-radius for aesthetic */
    }
    .cta-button:hover {
      border-width: 2px;
    }

    .tech-image-wrapper {
        width: 70%; /* Image wrapper takes full width of its flex item (.tech-right) */
        margin: 0; /* Remove auto margin as flex item handles positioning */
        border-width: 2px; /* Slightly thinner border */
        padding: 2px;
        border-radius: 8px;
    }
    .tech-image-wrapper img {
        height: auto; /* Maintain aspect ratio */
        max-height: 500px; /* **Significantly reduced max-height for image** to try and fit side-by-side */
        border-radius: 6px;
        object-fit: contain; /* Ensure entire image is visible */
    }
}




/* Digital Backbone */
/* Digital Backbone */
.digital-backbone-section {
    position: relative;
    width: 100%;
    max-height: 80vh; /* Desktop max-height */
    background: url('assets/stock images/smallabout.webp') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8vw 3vw; /* Desktop padding */
    color: white;
    /* Removed the duplicate rule from previous analysis to keep CSS clean */
}

.digital-backbone-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}

.digital-backbone-content {
    position: relative;
    z-index: 2;
    max-width: 60vw; /* Desktop max-width */
}

.digital-backbone-content h2 {
    font-size: 3vw; /* Desktop font size */
    margin-bottom: 2vw; /* Desktop margin */
}

.digital-backbone-content p {
    font-size: 1.4vw; /* Desktop font size */
    line-height: 1.6;
    margin-bottom: 3vw; /* Desktop margin */
}

.know-more-button {
    display: inline-block;
    padding: 1vw 2vw; /* Desktop padding */
    background: #058ED2;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 0.4vw;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 1.2vw; /* Desktop font size */
}
.know-more-button:hover {
    background: #046aa0;
    transform: translateY(-0.3vw);
}

/* --- Phone Layout for Digital Backbone Section (max-width: 768px) --- */
@media (max-width: 768px) {
    .digital-backbone-section {
        padding: 20px 20px; /* Fixed pixel padding for consistent mobile spacing */
        min-height: 35vh; /* Ensure a minimum height for the section */
        /* max-height: auto; or remove max-height to let content dictate height */
        max-height: unset; /* Allow height to adjust based on content */
    }

    .digital-backbone-content {
        max-width: 95%; /* Content takes almost full width on mobile */
    }

    .digital-backbone-content h2 {
        font-size: 1rem; /* Readable heading font size for mobile */
        margin-bottom: 1rem; /* Adjusted margin */
    }

    .digital-backbone-content p {
        font-size: 0.5rem; /* Readable paragraph font size for mobile */
        line-height: 1.6;
        margin-bottom: 1.5rem; /* Adjusted margin */
    }

    .know-more-button {
        padding: 8px 8px; /* CTA button a little bigger (from 10px 24px) */
        font-size: 0.8rem; /* Adjusted font for bigger button */
        border-radius: 4px; /* Slightly larger border-radius for aesthetic */
    }
    .know-more-button:hover {
      transform: translateY(-2px); /* Adjust transform for fixed units */
    }
}



/* Solutions Section */
.solutions-section {
    width: 100%;
    height: auto;
    background: #ffffff;
    padding: 6vw 4vw; /* Desktop padding */
}

.solutions-container {
    max-width: 80vw; /* Desktop max-width */
    margin: 0 auto;
    text-align: center;
}

/* Title */
.title {
    font-size: 2.0vw; /* Desktop font size */
    font-weight: 600;
    color: #333;
    margin-bottom: 2vw; /* Desktop margin */
}

.title span {
    display: inline-block;
    border-bottom: 0.4vw solid #058ED2; /* Desktop border thickness */
}

/* Subtitle */
.subtitle {
    font-size: 1.4vw; /* Desktop font size */
    color: #555;
    margin-bottom: 4vw; /* Desktop margin */
}

/* Grid Layout */
.solutions-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2vw; /* Desktop gap */
    justify-content: center;
}

/* Card */
.solution-card {
    background: #fff;
    border: 0.1vw solid #ddd; /* Desktop border thickness */
    border-radius: 1vw; /* Desktop border-radius */
    padding: 2vw; /* Desktop padding */
    flex: 1 1 22vw; /* Desktop flex basis (about 4 cards per row) */
    max-width: 22vw; /* Desktop max-width */
    box-shadow: 0 0.5vw 1vw rgba(0,0,0,0.05); /* Desktop shadow */
    transition: transform 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-0.5vw); /* Desktop transform */
}

/* Icon */
.icon-wrapper {
    font-size: 3vw; /* Desktop font size */
    margin-bottom: 1.5vw; /* Desktop margin */
}

/* Card Heading */
.solution-card h3 {
    font-size: 1.2vw; /* Desktop font size */
    font-weight: 600;
    margin-bottom: 1vw; /* Desktop margin */
    color: #333;
}

/* Card Text */
.solution-card p {
    font-size: 1.2vw; /* Desktop font size */
    color: #555;
    line-height: 1.4;
}

/* --- Phone Layout for Solutions Section (max-width: 768px) --- */
@media (max-width: 768px) {
    .solutions-section {
        padding: 20px 20px; /* Fixed pixel padding for consistent mobile spacing */
    }

    .solutions-container {
        max-width: 100%; /* Allow container to take full width */
    }

    .title {
        font-size: 1rem; /* Readable heading font size for mobile */
        margin-bottom: 20px; /* Adjusted margin */
    }

    .title span {
        border-bottom: 2px solid #058ED2; /* Fixed border thickness for mobile */
    }

    .subtitle {
        font-size: 0.8rem; /* Readable subtitle font size for mobile */
        margin-bottom: 30px; /* Adjusted margin */
    }

    .solutions-grid {
        flex-direction: row; /* Stack cards vertically */
        gap: 20px; /* Fixed pixel gap between stacked cards */
    }

    .solution-card {
        flex: none; /* Disable flex distribution for stacking */
        max-width: 90%; /* Cards take up more width on mobile, but not full edge-to-edge */
        margin: 0 auto; /* Center individual cards */
        border: 1px solid #ddd; /* Fixed border thickness */
        border-radius: 10px; /* Larger border-radius for touch-friendliness */
        padding: 25px; /* Increased internal padding for tap targets */
        box-shadow: 0 5px 10px rgba(0,0,0,0.05); /* Fixed shadow size */
    }

    .solution-card:hover {
        transform: translateY(-5px); /* Adjusted transform for fixed units */
    }

    .icon-wrapper {
        font-size: 2.5rem; /* Larger icon size for mobile */
        margin-bottom: 15px; /* Adjusted margin */
    }

    .solution-card h3 {
        font-size: 0.8rem; /* Readable card heading font size for mobile */
        margin-bottom: 8px; /* Adjusted margin */
    }

    .solution-card p {
        font-size: 0.6rem; /* Readable card text font size for mobile */
        line-height: 1.4;
    }
}

/* Industries Section */
.industries-section {
    width: 100%;
    background: #fff;
    padding: 6vw 4vw; /* Desktop padding */
}

.industries-container {
    max-width: 80vw; /* Desktop max-width */
    margin: 0 auto;
    text-align: center;
}

/* Title */
.industries-title {
    font-size: 2vw; /* Desktop font size */
    font-weight: 600;
    color: #333;
    margin-bottom: 1vw; /* Desktop margin */
}
.industries-title span {
    display: inline-block;
    border-bottom: 0.4vw solid #058ED2; /* Desktop border thickness */
}

/* Subtitle */
.industries-subtitle {
    font-size: 1.4vw; /* Desktop font size */
    color: #555;
    margin-bottom: 4vw; /* Desktop margin */
}

/* Grid */
.industries-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1vw; /* Desktop gap */
    justify-content: center;
}

/* Card */
.industry-card {
    position: relative;
    flex: 1 1 16vw; /* Desktop flex basis */
    max-width: 14vw; /* Desktop max-width */
    height: 22vw; /* Desktop height */
    background-size: cover;
    background-position: center;
    border-radius: 1vw; /* Desktop border-radius */
    overflow: hidden;
    box-shadow: 0 0.5vw 1vw rgba(0,0,0,0.1); /* Desktop shadow */
    transition: transform 0.3s ease;
}
.industry-card:hover {
    transform: translateY(-0.5vw); /* Desktop transform */
}

/* Overlay */
.industry-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0,0,0,0.6);
    color: white;
    padding: 1vw; /* Desktop padding */
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Icon */
.industry-icon {
    font-size: 2vw; /* Desktop font size */
    margin-bottom: 0.5vw; /* Desktop margin */
}

/* Label */
.industry-overlay h3 {
    font-size: 1.2vw; /* Desktop font size */
    font-weight: 500;
}

/* Caption */
.industries-caption {
    font-size: 1.3vw; /* Desktop font size */
    color: #333;
    font-style: italic;
    margin-top: 4vw; /* Desktop margin */
}

/* --- Phone Layout for Industries Section (max-width: 768px) --- */
@media (max-width: 768px) {
    .industries-section {
        padding: 20px 20px; /* Fixed pixel padding for consistent mobile spacing */
    }

    .industries-container {
        max-width: 100%; /* Allow container to take full width */
    }

    .industries-title {
        font-size: 1.2rem; /* Readable heading font size for mobile */
        margin-bottom: 15px; /* Adjusted margin */
    }
    .industries-title span {
        border-bottom: 4px solid #058ED2; /* Fixed border thickness for mobile */
    }

    .industries-subtitle {
        font-size: 0.8rem; /* Readable subtitle font size for mobile */
        margin-bottom: 30px; /* Adjusted margin */
    }

    .industries-grid {
        gap: 15px; /* Fixed pixel gap between cards */
        /* Flex-wrap is already on the desktop rule, which is good */
        justify-content: center; /* Ensures cards are centered if they don't fill the row */
    }

    .industry-card {
        flex: 1 1 calc(50% - 15px); /* Two cards per row with a 15px gap */
        max-width: calc(50% - 15px); /* Ensures two columns */
        height: 140px; /* Fixed height for consistent look and tappability */
        /* height: 40vw; Use this if you prefer height to scale with viewport width */
        border-radius: 10px; /* Larger border-radius for touch-friendliness */
        box-shadow: 0 5px 10px rgba(0,0,0,0.1); /* Fixed shadow size */
    }
    .industry-card:hover {
        transform: translateY(-5px); /* Adjusted transform for fixed units */
    }

    .industry-overlay {
        padding: 5px; /* Fixed padding for overlay */
    }

    .industry-icon {
        font-size: 1.3rem; /* Larger icon size for mobile */
        margin-bottom: 5px; /* Adjusted margin */
    }

    .industry-overlay h3 {
        font-size: 0.6rem; /* Readable label font size for mobile */
        font-weight: 500;
    }

    .industries-caption {
        font-size: 0.7rem; /* Readable caption font size for mobile */
        margin-top: 30px; /* Adjusted margin */
    }
}

html.lenis {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto;
}
.lenis.lenis-smooth [data-lenis-scroll] {
  will-change: transform;
}


/* About Us - Intro Section */
.about-intro-section {
    padding: 6vw 4vw; /* Consistent desktop padding */
    background: #ffffff;
    color: #333;
}

.about-intro-container {
    max-width: 1200px; /* Wider container for this layout */
    margin: 0 auto;
    text-align: center; /* Center all block-level content within the container */
    display: flex; /* Make container a flex parent */
    flex-direction: column; /* Stack main title/tagline, then the image/text block */
    align-items: center; /* Center items horizontally in the column */
    gap: 2vw; /* Gap between stacked elements */
}

.about-intro-title {
    font-size: 2vw; /* Desktop font size */
    font-weight: 600;
    color: #333;
    margin-bottom: 1vw; /* Reduced margin, as span adds bottom border */
    display: inline-block; /* Allows span to work correctly for border-bottom */
}
.about-intro-title span {
    display: inline-block;
    border-bottom: 0.4vw solid #058ED2; /* Underline effect */
    
}

.about-intro-tagline {
    font-size: 1.4vw; /* Desktop font size */
    color: #555;
    
}

.about-intro-content-wrapper {
    width: 100%; /* Take full width of parent container */
    display: flex; /* Flex container for image and text block */
    align-items: center; /* Vertically align image and text */
    justify-content: center; /* Center the image and text block within the wrapper */
    gap: 3vw; /* Gap between image and text */
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.about-intro-image-wrapper {
    flex: 0 0 40%; /* Image takes 40% of content wrapper width on desktop */
    max-width: 400px; /* Max width for image itself for very large screens */
    order: 1; /* Image appears first (left) */
    display: flex; /* For centering image within its own flex item */
    justify-content: center;

    /* Applying tech-image-wrapper styles */
    border: 0.3vw solid #058ED2;
    padding: 0.3vw;
    border-radius: 0.6vw;
}

.about-intro-image-wrapper img {
    display: block;
    width: 100%;
    height: 25vw; /* Slightly adjusted height for visual balance with text */
    object-fit: cover;
    border-radius: 0.4vw;
}

.about-intro-text-block {
    flex: 1 1 50%; /* Text takes remaining space on desktop */
    text-align: left; /* Text remains left-aligned within its block */
    order: 2; /* Text appears second (right) */
}

.about-intro-text-block p {
    font-size: 1.1vw; /* Responsive desktop paragraph */
    line-height: 1.7;
    margin-bottom: 1.5vw;
    text-align: justify;
}
.about-intro-text-block p:last-of-type {
    margin-bottom: 0; /* Remove bottom margin for the last paragraph */
}


/* --- Phone Layout for About Us - Intro Section (max-width: 768px) --- */
@media (max-width: 768px) {
    .about-intro-section {
        padding: 20px 20px; /* Fixed pixel padding for mobile */
    }

    .about-intro-container {
        gap: 20px; /* Fixed pixel gap for mobile */
    }

    .about-intro-title {
        font-size: 1.2rem; /* Readable mobile heading */
        margin-bottom: 10px;
        /* No need for display: inline-block here as it's already on desktop and will stack */
    }
    .about-intro-title span {
        border-bottom: 4px solid #058ED2; /* Fixed thickness for mobile underline */
        padding-bottom: 2px;
    }

    .about-intro-tagline {
        font-size: 0.8rem; /* Readable mobile tagline */
        margin-bottom: 25px; /* Adjusted margin */
    }

    .about-intro-content-wrapper {
        flex-direction: column; /* Stack image and text vertically */
        gap: 30px; /* Fixed pixel gap when stacked */
    }

    .about-intro-image-wrapper {
    order: 1; /* Image always on top when stacked */
    flex: none; /* Reset desktop flex */
    width: 100%; /* Full width for image wrapper */
    max-width: 300px; /* Max width for image itself on mobile */
    margin: 0 auto; /* Center image wrapper */

    /* Mobile specific border/padding for consistency with desktop's vw values */
    border: 3px solid #058ED2;
    padding: 0; /* Remove padding from the wrapper */
    border-radius: 10px;
    overflow: hidden; /* Clip any potential image overflow */
}

.about-intro-image-wrapper img {
    display: block;
    width: 100%; /* Make image fill the wrapper */
    height: auto; /* Maintain aspect ratio */
    max-height: 200px; /* Limit max height for mobile image */
    border-radius: inherit; /* Inherit the border-radius from the wrapper */
    object-fit: cover; /* Ensure the image covers the area without gaps */
}


    .about-intro-text-block {
        order: 2; /* Text comes second (below image) */
        flex: none; /* Reset desktop flex */
        width: 100%; /* Full width for text content */
        text-align: left; /* Keep text left-aligned */
    }

    .about-intro-text-block p {
        font-size: 0.7rem; /* Readable paragraph font size for mobile */
        line-height: 1.6;
        margin-bottom: 15px;
    }
}

/* Our Mission Section */
.mission-section {
    padding: 6vw 4vw; /* Consistent desktop padding */
    background: #f2f6fa; /* A slightly different background for contrast */
    color: #333;
}

.mission-container {
    max-width: 900px; /* Max width for content readability */
    margin: 0 auto;
    display: flex;
    align-items: flex-start; /* Align items to the top (icon and text start at same height) */
    justify-content: center; /* Center the whole block */
    gap: 2vw; /* Gap between icon and content */
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.mission-icon-wrapper {
    flex: 0 0 auto; /* Icon wrapper takes only necessary space, doesn't grow */
    padding: 0.5vw; /* Small padding around icon */
    
    border-radius: 0.8vw; /* Slightly rounded corners */
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 5vw; /* Minimum size for the icon background */
    min-height: 5vw; /* Minimum size for the icon background */
}

.mission-icon {
    font-size: 5vw; /* Large icon size for desktop */
    line-height: 1; /* Ensure icon doesn't add extra line height */
    color: white; /* Icon color */
}

.mission-content {
    flex: 1 1 65%; /* Content takes majority of space */
    text-align: left;
}

.mission-title {
    font-size: 2vw; /* Reuse font size from .industries-title for consistency */
    font-weight: 600;
    color: #0a3d62; /* Slightly darker blue for headings */
    margin-bottom: 0.8vw;
    /* If you want an underline, you would add a span in HTML and style it here */
}

.mission-text {
    font-size: 1.1vw; /* Reuse font size from paragraphs in About Intro for consistency */
    line-height: 1.6;
    color: #555;
}


/* --- Phone Layout for Our Mission Section (max-width: 768px) --- */
@media (max-width: 768px) {
    .mission-section {
        padding: 20px 20px; /* Fixed pixel padding for mobile */
    }

    .mission-container {
        /* *** CRITICAL CHANGE: Force row direction to maintain desktop alignment *** */
        flex-direction: row;
        align-items: flex-start; /* Keep alignment to top */
        gap: 15px; /* Reduced gap to try and fit side-by-side */
        /* Removed max-width: 100% here as the flex items will try to fit */
        justify-content: center; /* Center the row if there's extra space */
    }

    .mission-icon-wrapper {
        padding: 8px; /* Slightly reduced padding */
        border-radius: 10px;
        /* *** Adjust min-width/height to be small enough to fit in a row *** */
        min-width: 50px; /* Smaller fixed min size for icon background */
        min-height: 50px; /* Smaller fixed min size for icon background */
        /* Flex properties to make it take fixed space */
        flex: 0 0 auto;
    }

    .mission-icon {
        font-size: 1.8rem; /* Adjusted icon size to fit smaller wrapper */
    }

    .mission-content {
        /* Allow content to take remaining space, but prevent excessive shrinking */
        flex: 1 1 60%; /* Allow it to grow/shrink, starting at 60% of container */
        min-width: 180px; /* Ensure content block doesn't get too narrow */
        text-align: left; /* Keep text left-aligned */
    }

    .mission-title {
        font-size: 1rem; /* Further reduced heading size for horizontal layout */
        margin-bottom: 5px; /* Reduced margin */
    }

    .mission-text {
        font-size: 0.6rem; /* VERY SMALL: As requested, font size for paragraph */
        line-height: 1.5; /* Slightly adjusted line height for very small text */
    }
}

/* Why Clients Section */
.why-clients-section {
    position: relative;
    width: 100%;
    background: url('assets/stock images/why-choose.webp') center/cover no-repeat;
    padding: 6vw 4vw; /* Desktop padding */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: white;
    /* REMOVED the duplicate .why-clients-section rule here */
}

.why-clients-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 51, 92, 0.374); /* Soft blue overlay */
    backdrop-filter: blur(5px); /* Background blur */
    z-index: 1;
}

/* Container */
.why-clients-container {
    max-width: 80vw; /* Desktop max-width */
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Title */
.why-clients-title {
    font-size: 2vw; /* Desktop font size */
    font-weight: 600;
    color: white;
    margin-bottom: 1vw; /* Desktop margin */
}
.why-clients-title span {
    display: inline-block;
    border-bottom: 0.4vw solid #058ED2; /* Desktop border thickness */
}

/* Subtitle */
.why-clients-subtitle {
    font-size: 1.4vw; /* Desktop font size */
    color: #eee;
    margin-bottom: 4vw; /* Desktop margin */
}

/* Grid */
.why-cards-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2vw; /* Desktop gap */
}

/* Card */
.why-card {
    display: flex; /* Desktop flex */
    align-items: center; /* Desktop alignment */
    background: rgba(255, 255, 255, 0.9);
    padding: 1.2vw 1.5vw; /* Desktop padding */
    border-radius: 1vw; /* Desktop border-radius */
    box-shadow: 0 0.5vw 1vw rgba(0, 0, 0, 0.1); /* Desktop shadow */
    width: 32vw; /* Desktop width */
    max-width: 100%;
    transition: transform 0.3s ease;
    text-align: left; /* Desktop text alignment */
}
.why-card:hover {
    transform: translateY(-0.5vw); /* Desktop transform */
}

/* Icon */
.why-icon {
    font-size: 2vw; /* Desktop font size */
    margin-right: 1vw; /* Desktop margin */
}

/* Text */
.why-text {
    font-size: 1.2vw; /* Desktop font size */
    color: #333;
    font-weight: 500;
}

/* --- Phone Layout for Why Clients Section (max-width: 768px) --- */
@media (max-width: 768px) {
    .why-clients-section {
        padding: 40px 20px; /* Fixed pixel padding for consistent mobile spacing */
    }

    .why-clients-container {
        max-width: 100%; /* Allow container to take full width */
    }

    .why-clients-title {
        font-size: 1.2rem; /* Readable heading font size for mobile */
        margin-bottom: 15px; /* Adjusted margin */
    }
    .why-clients-title span {
        border-bottom: 2px solid #058ED2; /* Fixed border thickness for mobile */
    }

    .why-clients-subtitle {
        font-size: 0.8rem; /* Readable subtitle font size for mobile */
        margin-bottom: 30px; /* Adjusted margin */
    }

    .why-cards-grid {
        flex-direction: column; /* Stack cards vertically */
        gap: 20px; /* Fixed pixel gap between stacked cards */
    }

    .why-card {
        flex-direction: column; /* Stack icon and text within each card */
        text-align: center; /* Center content within each card */
        width: 100%; /* Make cards take full width on mobile */
        padding: 25px; /* Increased internal padding for tap targets */
        border-radius: 10px; /* Larger border-radius for touch-friendliness */
        box-shadow: 0 5px 10px rgba(0,0,0,0.1); /* Fixed shadow size */
    }
    .why-card:hover {
        transform: translateY(-5px); /* Adjusted transform for fixed units */
    }

    .why-icon {
        font-size: 1.5rem; /* Larger icon size for mobile */
        margin-right: 0; /* Remove right margin */
        margin-bottom: 10px; /* Add bottom margin to separate from text */
    }

    .why-text {
        font-size: 0.8rem; /* Readable text font size for mobile */
        font-weight: 500;
    }
}

/* Our Core Values Section */
.core-values-section {
    position: relative;
    width: 100%;
    /* Background changed to white as requested */
    background: #ffffff; /* This is the white background */
    padding: 6vw 4vw; /* Consistent desktop padding from .why-clients-section */
    color: #333; /* Default text color for light background */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* No ::after pseudo-element for this section, as there's no background image overlay */

.core-values-container {
    max-width: 80vw; /* Consistent max-width from .why-clients-container */
    margin: 0 auto;
    text-align: center; /* Center the title and overall content */
    position: relative; /* From .why-clients-container */
    z-index: 2; /* From .why-clients-container */
}

/* Title with span underline - styled like .why-clients-title */
.core-values-title {
    font-size: 2vw; /* Consistent heading size */
    font-weight: 600;
    color: #000000; /* Dark color for light background */
    margin-bottom: 1vw; /* Consistent margin from .why-clients-title */
    display: inline-block; /* Essential for span underline to work on the H2 */
}
.core-values-title span {
    display: inline-block;
    border-bottom: 0.4vw solid #058ED2; /* Underline effect */
    padding-bottom: 0.2vw; /* Small padding below text, above line */
}

/* Slogan as Subtitle - styled like .why-clients-subtitle */
.values-slogan {
    font-size: 1.3vw; /* Consistent subtitle font size from .why-clients-subtitle */
    color: #555; /* Darker color for light background */
    margin-top: 1vw; /* Space after title */
    margin-bottom: 4vw; /* Consistent margin from .why-clients-subtitle */
    font-style: normal; /* No italic for subtitle */
}

.values-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Center items in the grid */
    gap: 2vw; /* Consistent gap from .why-cards-grid */
    /* margin-bottom removed as slogan is now a subtitle *before* the list */
}

.value-item {
    /* Card styling from .why-card */
    display: flex;
    align-items: center; /* Align icon and text horizontally */
    background: rgba(255, 255, 255, 0.9); /* Card background, slightly transparent white */
    padding: 1.2vw 1.5vw; /* Consistent padding from .why-card */
    border-radius: 1vw; /* Consistent border-radius from .why-card */
    box-shadow: 0 0.5vw 1vw rgba(0, 0, 0, 0.1); /* Consistent shadow from .why-card */
    /* REMOVED: border-left: 5px solid #058ED2; */
    
    /* Adjusting flex for 3 cards in a row with a 2vw gap (as previously requested) */
    flex: 1 1 calc(33.33% - (2 * 2vw / 3)); /* For 3 items and 2 gaps (2vw each) */
    max-width: calc(33.33% - (2 * 2vw / 3)); /* Ensures max width for 3 columns */
    
    transition: transform 0.3s ease;
    text-align: left; /* Text within card is left-aligned */
}
.value-item:hover {
    transform: translateY(-0.5vw);
}

/* Icon within card - styled like .why-icon */
.value-item .value-icon {
    font-size: 2vw; /* Consistent icon size from .why-icon */
    margin-right: 1vw; /* Consistent margin from .why-icon */
    color: #058ED2; /* Specific color for the icons */
}

/* Text within card - styled like .why-text */
.value-item .value-text {
    font-size: 1vw; /* Consistent text size from .why-text */
    color: #333;
    font-weight: 500;
    line-height: 1.5; /* Ensure consistent line-height */
    flex: 1; /* Allow text to take remaining space */
}


/* --- Phone Layout for Our Core Values Section (max-width: 768px) --- */
@media (max-width: 768px) {
    .core-values-section {
        padding: 60px 20px; /* Fixed pixel padding for mobile */
    }

    .core-values-title {
        font-size: 1.2rem; /* Readable mobile heading */
        margin-bottom: 10px; /* Adjusted margin */
    }
    .core-values-title span {
        border-bottom: 4px solid #058ED2; /* Fixed thickness for mobile underline */
        padding-bottom: 2px;
    }

    .values-slogan {
        font-size: 0.8rem; /* Readable mobile subtitle */
        margin-top: 10px; /* Adjusted margin */
        margin-bottom: 30px; /* Adjusted margin */
    }

    .values-list {
        flex-direction: column; /* Stack values vertically */
        gap: 20px; /* Fixed pixel gap between stacked items */
    }

    .value-item {
        flex: none; /* Disable desktop flex distribution */
        width: 100%; /* Take full width on mobile */
        max-width: none; /* Remove max-width constraint */
        padding: 10px; /* Increased internal padding for tap targets */
        border-radius: 10px; /* Larger border-radius for touch-friendliness */
        box-shadow: 0 5px 10px rgba(0,0,0,0.1); /* Fixed shadow size */
    }
    .value-item:hover {
        transform: translateY(-5px); /* Adjusted transform for fixed units */
    }

    /* Mobile Icon within card - styled like .why-icon */
    .value-item .value-icon {
        font-size: 1.5rem; /* Larger icon size for mobile */
        margin-right: 0; /* Remove right margin */
        margin-bottom: 15px; /* Add bottom margin to separate from text */
        color: #058ED2; /* Consistent color for mobile icons */
    }

    /* Mobile Text within card - styled like .why-text */
    .value-item .value-text {
        font-size: 0.6rem; /* Readable text font size for mobile */
        font-weight: 500;
        color: #333;
        line-height: 1.5;
    }
}
/* Partners Section */
.partners-section {
    width: 100%;
    background: #f9f9f9;
    padding: 6vw 4vw; /* Desktop padding */
}

.partners-container {
    max-width: 80vw; /* Desktop max-width */
    margin: 0 auto;
    text-align: center;
}

/* Title */
.partners-title {
    font-size: 2vw; /* Desktop font size */
    font-weight: 600;
    color: #222;
    margin-bottom: 4vw; /* Desktop margin */
}
.partners-title span {
    display: inline-block;
    border-bottom: 0.4vw solid #058ED2; /* Desktop border thickness */
}

/* Grid */
.partners-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2vw; /* Desktop gap */
    justify-content: center;
}

/* Card */
.partner-card {
    background: #fff;
    border-radius: 1vw; /* Desktop border-radius */
    box-shadow: 0 0.5vw 1vw rgba(0, 0, 0, 0.05); /* Desktop shadow */
    padding: 2vw; /* Desktop padding */
    width: 14vw; /* Desktop width */
    height: 10vw; /* Desktop height */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}
.partner-card:hover {
    transform: translateY(-0.5vw); /* Desktop transform */
}

.partner-card img {
    max-width: 100%;
    max-height: 6vw; /* Desktop max-height */
    object-fit: contain;
}

/* --- Phone Layout for Partners Section (max-width: 768px) --- */
@media (max-width: 768px) {
    .partners-section {
        padding: 60px 20px; /* Fixed pixel padding for consistent mobile spacing */
    }

    .partners-container {
        max-width: 100%; /* Allow container to take full width */
    }

    .partners-title {
        font-size: 1.2rem; /* Readable heading font size for mobile */
        margin-bottom: 30px; /* Adjusted margin */
    }
    .partners-title span {
        border-bottom: 2px solid #058ED2; /* Fixed border thickness for mobile */
    }

    .partners-grid {
        gap: 15px; /* Fixed pixel gap between cards */
        /* flex-wrap is already on the desktop rule, which is good */
        justify-content: center;
    }

    .partner-card {
        flex: 1 1 calc(50% - 15px); /* Two cards per row with a 15px gap */
        max-width: calc(50% - 15px); /* Ensures two columns */
        height: 80px; /* Fixed height for consistent card appearance */
        /* padding: 15px; Consider fixed padding here if you want more control */
        border-radius: 10px; /* Larger border-radius for touch-friendliness */
        box-shadow: 0 5px 10px rgba(0,0,0,0.05); /* Fixed shadow size */
    }
    .partner-card:hover {
        transform: translateY(-5px); /* Adjusted transform for fixed units */
    }

    .partner-card img {
        max-width: 80%; /* Ensure logo doesn't fill entire card on mobile */
        max-height: 50px; /* Fixed max-height for logos on mobile */
    }
}




/* Let's Build Your Digital Future Section */
.build-digital-future-section {
    background: #0a3d62; /* A dark, prominent background, similar to footer */
    color: white;
    padding: 4vw 0vw; /* Consistent desktop padding */
    text-align: center; /* Center all content */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column; /* Ensure content stacks for centering */
}

.build-digital-future-container {
    max-width: 1000px; /* Max width for readability of text content */
    margin: 0 auto;
}

.build-digital-future-title {
    font-size: 2vw; /* Prominent desktop title */
    font-weight: 600;
    line-height: 1.2;
}

.build-digital-future-text {
    font-size: 1vw; /* Readable desktop text */
    line-height: 1.6;

    max-width: 700px; /* Optional: limit width of paragraph for better readability */
    margin-left: auto;
    margin-right: auto;
}



/* --- Phone Layout for Let's Build Your Digital Future Section (max-width: 768px) --- */
@media (max-width: 768px) {
    .build-digital-future-section {
        padding: 20px 20px; /* Fixed pixel padding for mobile */
    }

    .build-digital-future-container {
        max-width: 100%; /* Allow container to take full width */
    }

    .build-digital-future-title {
        font-size: 0.8rem; /* Readable mobile title */
    }
    

    .build-digital-future-text {
        font-size:0.5rem; /* Readable mobile text */
        line-height: 1.6;
    }
}

/* Contact Section */
.contact-section {
    background: #f2f6fa;
    padding: 4vw 6vw; /* Desktop padding */
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-title {
    font-size: 2.5vw; /* Desktop font size */
    text-align: center;
    color: #0a3d62;
    margin-bottom: 3vw; /* Desktop margin */
}

/* New styles for office cards in contact section */
.contact-grid-offices {
    display: flex;
    flex-wrap: wrap;
    gap: 3vw; /* Desktop gap */
    justify-content: center;
    margin-bottom: 4vw; /* Space between office cards and common email */
}

.office-card {
    background: white;
    border: 1px solid #ddd;
    border-radius: 1vw; /* Desktop border-radius */
    box-shadow: 0 0.5vw 1vw rgba(0,0,0,0.05); /* Desktop shadow */
    flex: 1 1 calc(33.33% - 2vw); /* 3 cards per row with gap */
    max-width: calc(33.33% - 2vw);
    overflow: hidden; /* Ensures image corners are rounded with card */
    display: flex;
    flex-direction: column;
    text-align: left;
    transition: transform 0.3s ease;
}

.office-card:hover {
    transform: translateY(-0.5vw);
}

.office-image-wrapper {
    width: 100%;
    height: 15vw; /* Desktop image height */
    overflow: hidden;
}

.office-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.office-card h3 {
    font-size: 1.5vw; /* Desktop font size */
    color: #0a3d62;
    margin: 1.5vw 1.5vw 1vw; /* Top, horizontal, bottom margin */
    padding-bottom: 0.5vw;
    border-bottom: 1px solid #eee;
}

.office-card p {
    font-size: 1vw; /* Desktop font size */
    color: #555;
    line-height: 1.6;
    margin: 0 1.5vw 1vw; /* Horizontal margin, bottom margin */
}

.office-card p:last-of-type {
    margin-bottom: 1.5vw; /* More space before map link */
}

.office-card a {
    color: #058ED2;
    text-decoration: none;
}

.office-card .map-link {
    display: inline-block;
    background: #058ED2;
    color: white;
    padding: 0.8vw 1.5vw;
    border-radius: 0.3vw;
    margin: 0 1.5vw 1.5vw; /* Keep it aligned with text, add bottom margin */
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 1vw;
    font-weight: 500;
}

.office-card .map-link:hover {
    background: #046aa0;
    transform: translateY(-0.2vw);
}

.common-email {
    text-align: center;
    background: #e6f0f7; /* Light background for the email section */
    padding: 2vw;
    border-radius: 1vw;
    box-shadow: 0 0.3vw 0.6vw rgba(0,0,0,0.03);
}

.common-email h3 {
    font-size: 1.8vw; /* Desktop font size */
    color: #0a3d62;
    margin-bottom: 1vw;
}

.common-email p {
    font-size: 1.2vw; /* Desktop font size */
    color: #555;
    margin-bottom: 0.5vw;
}

.common-email .email-link {
    font-size: 1.4vw; /* Desktop font size */
    font-weight: 600;
    color: #058ED2;
    text-decoration: none;
    transition: color 0.3s ease;
}

.common-email .email-link:hover {
    color: #046aa0;
}

/* --- Phone Layout for Contact Section (max-width: 768px) --- */
@media (max-width: 768px) {
    .contact-section {
        padding: 40px 20px; /* Adjusted padding for mobile */
    }

    .contact-container {
        max-width: 100%;
    }

    .contact-title {
        font-size: 1.5rem; /* Readable heading font size for mobile */
        margin-bottom: 30px; /* Adjusted margin */
    }

    .contact-grid-offices {
        flex-direction: column; /* Stack office cards vertically */
        gap: 25px; /* Fixed pixel gap between stacked cards */
        margin-bottom: 30px; /* Space before common email */
    }

    .office-card {
        flex: none; /* Disable flex sizing for mobile */
        width: 100%; /* Make card full width on mobile */
        max-width: none; /* Remove desktop max-width restriction */
        border-radius: 10px; /* Larger border-radius for touch-friendliness */
        box-shadow: 0 5px 10px rgba(0,0,0,0.05); /* Fixed shadow size */
    }

    .office-image-wrapper {
        height: 150px; /* Fixed height for mobile image */
    }

    .office-card h3 {
        font-size: 1rem; /* Readable font size for office titles */
        margin: 15px 15px 10px;
        padding-bottom: 8px;
    }

    .office-card p {
        font-size: 0.75rem; /* Readable font size for addresses and phone numbers */
        margin: 0 15px 8px;
    }
    
    .office-card p:last-of-type {
        margin-bottom: 15px; /* Space before map link */
    }

    .office-card .map-link {
        padding: 8px 15px;
        border-radius: 5px;
        margin: 0 15px 15px;
        font-size: 0.8rem;
    }

    .common-email {
        padding: 20px;
        border-radius: 10px;
    }

    .common-email h3 {
        font-size: 1.1rem; /* Readable font size for email heading */
        margin-bottom: 10px;
    }

    .common-email p {
        font-size: 0.8rem; /* Readable font size for email text */
        margin-bottom: 5px;
    }

    .common-email .email-link {
        font-size: 1rem; /* Readable font size for email link */
    }
}

/* Site Footer */
.site-footer {
    background: #0a3d62;
    color: white;
    padding: 3vw 6vw 1.5vw; /* Desktop padding */
    font-family: 'Segoe UI', sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 3vw; /* Desktop gap */
    justify-content: space-between;
    margin-bottom: 2vw; /* Desktop margin */
}

.footer-about,
.footer-links,
.footer-contact,
.footer-social {
    flex: 1 1 200px; /* Desktop flex basis */
}

.footer-about h3 {
    font-size: 1.5vw; /* Desktop font size */
    margin-bottom: 0.5vw; /* Desktop margin */
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
    font-size: 1.2vw; /* Desktop font size */
    margin-bottom: 1vw; /* Desktop margin */
    color: #00d2ff;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li a {
    color: #dfe6e9;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5vw; /* Desktop margin */
}

.footer-social .social-icons a {
    margin-right: 1vw; /* Desktop margin */
    color: #00d2ff;
}

.footer-social .social-icons a:hover {
    color: #058ED2; /* Change to your desired hover color */
}

.footer-social img {
    /* This rule is for <img> tags. If you're using inline SVGs, this can be removed or ignored. */
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #40739e;
    padding-top: 1vw; /* Desktop padding */
    font-size: 0.9vw; /* Desktop font size */
}

/* --- Phone Layout for Site Footer (max-width: 768px) --- */
@media (max-width: 768px) {
    .site-footer {
        padding: 60px 20px 30px; /* Fixed pixel padding: top/bottom more, sides fixed */
    }

    .footer-container {
        flex-direction: column; /* Stack footer sections vertically */
        gap: 30px; /* Fixed pixel gap between stacked sections */
        margin-bottom: 20px; /* Adjusted margin */
    }

    .footer-about,
    .footer-links,
    .footer-contact,
    .footer-social {
        flex: none; /* Disable desktop flex basis */
        width: 100%; /* Make each section take full width */
        text-align: center; /* Center text content within each stacked section */
    }

    .footer-about h3 {
        font-size: 1.2rem; /* Readable heading font size for mobile */
        margin-bottom: 10px; /* Adjusted margin */
    }

    .footer-about p {
        font-size: 0.5rem; /* Readable paragraph font size for mobile */
    }

    .footer-links h4,
    .footer-contact h4,
    .footer-social h4 {
        font-size: 0.9rem; /* Readable subheading font size for mobile */
        margin-bottom: 10px; /* Adjusted margin */
    }

    .footer-links ul {
        padding: 0; /* Ensure no extra padding */
    }

    .footer-links ul li {
        margin-bottom: 8px; /* Slightly more space between list items */
    }

    .footer-links ul li a {
        font-size: 0.6rem; /* Readable link font size for mobile */
        /* display: block; is already on desktop rule, good */
    }

    .footer-social .social-icons {
        display: flex; /* Ensure flex for centering icons */
        justify-content: center; /* Center social icons horizontally */
        gap: 20px; /* Fixed pixel gap between icons */
        margin-top: 10px; /* Add some space above icons */
    }

    .footer-social .social-icons a {
        margin-right: 0; /* Remove desktop margin-right */
        /* If using inline SVGs with fill="currentColor", adjust font-size here */
        font-size: 1.8rem; /* Larger icon size for easier tapping */
        color: #00d2ff; /* Ensure color is applied */
    }
    .footer-social .social-icons a:hover {
        color: #058ED2; /* Hover color */
    }

    .footer-social img {
        /* If you still have these <img> tags, adjust their size for mobile */
        width: 32px; /* Larger icons for touch */
        height: 32px;
        /* filter: brightness(0) invert(1); is okay if needed for images */
    }

    .footer-bottom {
        padding-top: 20px; /* Adjusted padding above copyright */
        font-size: 0.6rem; /* Readable copyright font size for mobile */
        /* border-top: 1px solid #40739e; is okay, fixed pixel border */
    }
}

/* Fixed Social Media Icons (Left Side, Colored Circles) */
.fixed-social-icons {
    transform: translateY(-50%);
    position: fixed;
    top: 50%;
    left: 20px; /* Fixed on the left side */
    display: flex;
    flex-direction: column; /* Stack icons vertically */
    gap: 12px; /* Space between icons */
    z-index: 10000; /* Ensure it's above other content */
   
}

.fixed-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: rgb(255, 255, 255);
    font-size: 1.5rem;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.321);
    
}

.fixed-social-icons a:hover {
    transform: translateY(-3px); /* Slight lift effect */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); /* More prominent shadow on hover */
}

/* Specific icon colors applied directly to the Font Awesome icon element (<i>) */
.fixed-social-icons a:nth-child(1) i { /* Facebook */
    color: #3b5998;
}
.fixed-social-icons a:nth-child(2) i { /* Instagram */
    color: #E1306C;
}
.fixed-social-icons a:nth-child(3) i { /* LinkedIn */
    color: #0077B5;
}
.fixed-social-icons a:nth-child(4) i { /* Mail */
    color: #D44638;
}

/* Mobile adjustments for fixed social icons */
@media (max-width: 768px) {
    .fixed-social-icons {
        bottom: 15px;
        left: 15px; /* Fixed on the left side for mobile too */
        gap: 8px;
    }
    .fixed-social-icons a {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}



/* Main Content Styling */
.main-content {
    padding: 40px 0;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #058ED2; /* Changed to blue */
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    
    border-radius: 2px;
}

/* About Section */
.about-section {
    background-color: #fff;
    padding: 60px 0;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 60px;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.about-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    border: 5px solid #058ED2; /* Changed to blue */
}

.about-text {
    flex: 2;
    min-width: 300px;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #555;
    text-align: justify;
}

.sectors-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.sectors-list li {
    background-color: #EBF8FF; /* Very light blue */
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    color: #058ED2; /* Changed to blue */
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sectors-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.sectors-list .icon {
    color: #046CB0; /* Darker shade of blue */
    font-size: 1.2rem;
}

/* Team Section */
.team-section {
    padding: 60px 0;
    background-color: #F8FAFC; /* Light gray */
    margin-bottom: 60px;
}

.team-cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.team-card {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #D0EEFF; /* Lighter border */
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.team-member-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 4px solid #058ED2; /* Changed to blue */
    box-shadow: 0 0 0 5px rgba(5, 142, 210, 0.2); /* Subtle glow with new color */
}

.team-member-name {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.team-member-name a {
    color: #058ED2; /* Changed to blue */
    text-decoration: none;
    transition: color 0.2s ease;
}

.team-member-name a:hover {
    color: #046CB0; /* Darker shade of blue */
    text-decoration: underline;
}

.team-member-title {
    font-size: 1rem;
    color: #777;
    margin-bottom: 15px;
}

.team-member-bio {
    font-size: 0.95rem;
    color: #666;
}

/* Timeline Section */
.timeline-section {
    padding: 60px 0;
    background-color: #fff;
    margin-bottom: 60px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: #058ED2; /* Changed to blue */
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
    border-radius: 3px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
    box-sizing: border-box;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    right: -17px;
    background-color: #EBF8FF; /* Very light blue circle */
    border: 4px solid #046CB0; /* Darker shade of blue border */
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-item.left {
    left: 0;
}

.timeline-item.right {
    left: 50%;
}

.timeline-item.right::after {
    left: -16px;
}

.timeline-content {
    padding: 20px 30px;
    background-color: #EBF8FF; /* Very light blue */
    position: relative;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #D0EEFF;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.timeline-content h3 {
    font-size: 1.8rem;
    color: #058ED2; /* Changed to blue */
    margin-bottom: 5px;
}

.timeline-content h4 {
    font-size: 1.1rem;
    color: #046CB0; /* Darker shade of blue */
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 1rem;
    color: #555;
}

/* Arrows for timeline content */
.timeline-item.left .timeline-content::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    right: -15px;
    border: medium solid #EBF8FF; /* Very light blue */
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent #EBF8FF;
}

.timeline-item.right .timeline-content::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    left: -15px;
    border: medium solid #EBF8FF; /* Very light blue */
    border-width: 10px 10px 10px 0;
    border-color: transparent #EBF8FF transparent transparent;
}


/* People, Vision, Mission Section */
.pvm-section {
    padding: 60px 0;
    background-color: #F8FAFC; /* Light gray */
    margin-bottom: 60px;
}

.pvm-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.pvm-card {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    flex: 1;
    min-width: 280px;
    max-width: 380px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #D0EEFF;
}

.pvm-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.pvm-card .icon-large {
    font-size: 3.5rem;
    color: #058ED2; /* Changed to blue */
    margin-bottom: 20px;
    display: block;
}

.pvm-card h3 {
    font-size: 2rem;
    color: #058ED2; /* Changed to blue */
    margin-bottom: 15px;
}

.pvm-card .tagline {
    font-style: italic;
    color: #777;
    margin-bottom: 10px;
    font-weight: 600;
}

.pvm-card p {
    font-size: 1rem;
    color: #555;
}

/* Director's Desk Section - Adjusted for Image Style */
.director-desk-section {
    padding: 40px 0;
    background-color: #fff; /* White background as in the image */
    font-family: Arial, sans-serif; /* A common sans-serif font */
}

.director-desk-section .container {
    max-width: 1000px; /* Adjust container width as needed */
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 2.5rem;
    color: #333;
    text-align: left; /* Align left as in the image */
    margin-bottom: 20px;
   
    padding-bottom: 10px;
    font-weight: bold;
    letter-spacing: 1px;
}

.director-content {
    display: flex;
    flex-wrap: wrap; /* Allows wrapping on smaller screens */
    gap: 30px; /* Space between columns */
}

.director-left-column,
.director-right-column {
    flex: 1;
    min-width: 45%; /* Ensures two columns on larger screens */
    color: #555;
    font-size: 0.95rem; /* Slightly smaller text for body */
    line-height: 1.6;
    text-align: justify;
}

.director-left-column {
    border-right: 1px solid #eee; /* Light separator line */
    padding-right: 20px;
}

.company-further h3 {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 15px;
     /* Underline similar to the image */
    padding-bottom: 8px;
    font-weight: normal;
}

.quote-box {
    margin: 20px 0;
    text-align: center;
}

.quote {
    font-size: 1.2rem;
    font-style: italic;
    font-weight: bold;
    color: #333;
    padding: 10px 0;
    border-top: 1px solid #ccc;
    
    display: inline-block; /* To apply borders closely to text */
    padding: 5px 0;
}

.director-image-container {
    text-align: center;
    margin-bottom: 20px;
}

.director-main-image {
    max-width: 100%;
    height: auto;
    display: block; /* Remove extra space below image */
    margin: 0 auto; /* Center the image */
}

.director-right-column p {
    margin-bottom: 15px;
}

.signature-line {
    margin-top: 30px;
    text-align: left; /* Align signature to the left */
    border-top: 1px solid #ccc; /* Line above signature */
    padding-top: 10px;
}

.signature-text {
    font-weight: bold;
    font-size: 1.1rem;
    color: #333;
    display: block; /* New line for CEO & Founder */
    margin-bottom: 5px; /* Space between name and title */
}

.signature-title {
    font-size: 0.9rem;
    color: #777;
    text-transform: uppercase;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .director-content {
        flex-direction: column;
        gap: 20px;
    }

    .director-left-column {
        border-right: none;
        border-bottom: 1px solid #eee; /* Add bottom border for separation */
        padding-right: 0;
        padding-bottom: 20px;
    }
}



/* Responsive Design */
@media (max-width: 992px) {
    .section-title {
        font-size: 2.2rem;
    }

    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about-image {
        order: -1; /* Image appears above text on smaller screens */
    }

    .timeline::after {
        left: 31px; /* Adjust timeline line for smaller screens */
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-item.right {
        left: 0%;
    }

    .timeline-item.left::after,
    .timeline-item.right::after {
        left: 15px;
    }

    .timeline-item.left .timeline-content::before {
        content: " ";
        height: 0;
        position: absolute;
        top: 22px;
        width: 0;
        z-index: 1;
        right: -15px;
        border: medium solid #EBF8FF; /* Very light blue */
        border-width: 10px 0 10px 10px;
        border-color: transparent transparent transparent #EBF8FF;
    }

    .timeline-item.right .timeline-content::before {
        content: " ";
        height: 0;
        position: absolute;
        top: 22px;
        width: 0;
        z-index: 1;
        left: -15px;
        border: medium solid #EBF8FF; /* Very light blue */
        border-width: 10px 10px 10px 0;
        border-color: transparent #EBF8FF transparent transparent;
    }

  
}

@media (max-width: 768px) {
   
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }

    .about-text p, .pvm-card p, .director-statement p {
        font-size: 1rem;
    }

    .team-card, .pvm-card {
        min-width: unset;
        width: 100%;
        max-width: 400px; /* Limit width for better readability on small screens */
    }

    .sectors-list {
        grid-template-columns: 1fr; /* Stack items vertically */
    }
}

@media (max-width: 480px) {
  

    .section-title {
        font-size: 1.6rem;
    }

    .team-member-name {
        font-size: 1.5rem;
    }

    .timeline-content h3 {
        font-size: 1.5rem;
    }

    .timeline-content h4 {
        font-size: 1rem;
    }

    .pvm-card h3 {
        font-size: 1.8rem;
    }

    .director-statement h3 {
        font-size: 1.8rem;
    }
}
/* CSS for the Simple Full-Width Image Section */
.full-width-image-banner {
    width: 100vw; /* Ensures the section spans the full viewport width */
    height: 300px; /* Set a desired height for the banner */
    margin-left: calc(50% - 50vw); /* This trick centers the element and makes it span full width */
    margin-right: calc(50% - 50vw); /* This trick centers the element and makes it span full width */
    background-image: url('assets/stock images/about_cover.webp'); /* Placeholder image URL */
    background-size: cover; /* Ensures the image covers the entire area */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents the image from repeating */
    display: block; /* Ensures it behaves as a block element */
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .full-width-image-banner {
        height: 200px; /* Adjust height for smaller screens */
    }
}

@media (max-width: 480px) {
    .full-width-image-banner {
        height: 150px; /* Further adjust height for very small screens */
    }
}


.full-width-image-container {
    position: relative;
    width: 100%;
    height: 300px; /* Adjust height as needed */
    overflow: hidden;
    margin-bottom: 2rem;
}
.full-width-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the area without distortion */
    object-position: center;
}

