/* Global Styles */

/* Thank You Page Styles */
.thank-you-page {
    padding-top: 70px;
}

.thank-you-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    text-align: center;
    background-color: #f9f9f9;
}

.thank-you-content {
    max-width: 600px;
    padding: 40px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.thank-you-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: #4CAF50;
    color: white;
    font-size: 40px;
    border-radius: 50%;
}

.thank-you-content h1 {
    margin-bottom: 20px;
    color: var(--primary);
}

.thank-you-content p {
    margin-bottom: 30px;
    color: #666;
}

.thank-you-content .btn {
    margin-top: 10px;
}
:root {
    --primary: #3498db; /* Changed to match tech-hub-primary */
    --secondary: #2ecc71; /* Changed to match tech-hub-secondary */
    --accent: #3296e1; /* Changed to match tech-hub-accent */
    --light: #ecf0f1; /* Changed to match tech-hub-light */
    --dark: #0f1a2d; /* Changed to match tech-hub-dark */
    --gradient-primary: linear-gradient(135deg, #3498db, #1a6ba6);
    --gradient-secondary: linear-gradient(135deg, #2ecc71, #27ae60);
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

body, html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
}

body {
    min-height: 100vh;
    background: #f7f7f7; /* or whatever background your main page has */
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent);
}

.nav-links .active {
    color: var(--primary);
    font-weight: 600;
    position: relative;
}

.nav-links .active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 12px 28px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--box-shadow);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    color: white;
}

.btn-light {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
    box-shadow: none;
}

.btn-light:hover {
    background: rgba(52, 152, 219, 0.05);
    color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.2);
}

section {
    padding: 60px 0;
}


.clients {
    padding: 80px 0;
    background-color: #e8eaed;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-title-decoration {
    width: 70px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 0 auto;
    border-radius: 2px;
    max-width: 20px;
}

/* Prevent lines under h3 headings */
h3 {
    margin: 20px 0;
    font-size: 1.8rem;
    font-weight: 600;
}

/* Prevent lines under h3 headings */
h3 {
    margin-bottom: 20px;
    position: relative;
}

h3:after {
    content: none;
}

/* Header Styles */
header {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

nav {
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    /*height: 60px;
    max-height: 100px;*/
    width: auto;
    max-width: 250px; /* Adjust as needed */
    height: auto;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
    position: relative;
}

.nav-links a {
    font-weight: 500;
}

/* Dropdown styles */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 8px 0;
    z-index: 1000;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: var(--dark);
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
}

.dropdown-content a:hover {
    background-color: rgba(52, 152, 219, 0.1);
    color: var(--primary);
}

/* Add dropdown arrow */
.dropdown > a::after {
    content: '▼';
    font-size: 8px;
    margin-left: 5px;
    vertical-align: middle;
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary);
}

 /* Downloads Banner */
#banner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('img/banners/Downloads.jpg') center/cover no-repeat;
    background-attachment: fixed;
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    width: 100%;
    height: 35rem !important;
    min-height: 35rem;
    border-top: 0;
}

#banner h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 20px;
}

#banner p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 30px;
}

@media (max-width: 992px) {
    #banner h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    #banner h1 {
        font-size: 2rem;
    }

    #banner p {
        font-size: 1.1rem;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-background .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: white;
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    color: white;
}

.hero-description {
    font-size: 1.1rem !important;
    margin-bottom: 2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 2rem;
}

.hero .btn {
    padding: 12px 30px;
    font-size: 1.1rem;
    border: 2px solid white;
    transition: all 0.3s ease;
}

.hero .btn {
    background: var(--primary);
    border-color: var(--primary);
    border-radius: 30px !important;
    padding: 12px 28px !important;
    transition: all 0.3s ease !important;
}

.hero .contact-btn {
    background: var(--primary);
    border-color: var(--primary);
    border-radius: 30px !important;
}

.hero .contact-btn:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: white;
    border-radius: 30px !important;
}

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

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }

    .hero-description {
        font-size: 1rem !important;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .hero .btn {
        width: 100%;
    }
}

      #banner input[type="text"]:focus,
      #banner input[type="password"]:focus,
      #banner input[type="email"]:focus,
      #banner input[type="tel"]:focus,
      #banner input[type="search"]:focus,
      #banner input[type="url"]:focus,
      #banner select:focus,
      #banner textarea:focus {
        border-color: #ce1b28;
        box-shadow: 0 0 0 1px #ce1b28; }
    #banner select {
      background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' preserveAspectRatio='none' viewBox='0 0 40 40'%3E%3Cpath d='M9.4,12.3l10.4,10.4l10.4-10.4c0.2-0.2,0.5-0.4,0.9-0.4c0.3,0,0.6,0.1,0.9,0.4l3.3,3.3c0.2,0.2,0.4,0.5,0.4,0.9 c0,0.4-0.1,0.6-0.4,0.9L20.7,31.9c-0.2,0.2-0.5,0.4-0.9,0.4c-0.3,0-0.6-0.1-0.9-0.4L4.3,17.3c-0.2-0.2-0.4-0.5-0.4-0.9 c0-0.4,0.1-0.6,0.4-0.9l3.3-3.3c0.2-0.2,0.5-0.4,0.9-0.4S9.1,12.1,9.4,12.3z' fill='rgba(255, 255, 255, 0.25)' /%3E%3C/svg%3E"); }
      #banner select option {
        color: rgba(255, 255, 255, 0.5);
        background-color: #111111; }

    #banner .highlights .content {
      background: #111111;
      box-shadow: 0px 0px 4px 1px rgba(255, 255, 255, 0.025); }
    #banner .testimonials .content {
      background: #111111;
      box-shadow: 0px 0px 4px 1px rgba(255, 255, 255, 0.025); }
      #banner .testimonials .content .credit strong {
        color: #ce1b28; }
    #banner > .inner {
      -moz-transform: scale(1.0);
      -webkit-transform: scale(1.0);
      -ms-transform: scale(1.0);
      transform: scale(1.0);
      -moz-transition: opacity 1s ease, -moz-transform 1s ease;
      -webkit-transition: opacity 1s ease, -webkit-transform 1s ease;
      -ms-transition: opacity 1s ease, -ms-transform 1s ease;
      transition: opacity 1s ease, transform 1s ease;
      opacity: 1;
      position: relative;
      z-index: 3; }
      #banner > .inner > :last-child {
        margin-bottom: 0; }
    #banner h1 {
      font-size: 4rem;
      margin-bottom: 1rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
      background: linear-gradient(to right, #ffffff, #e0e0e0);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    #banner p {
      font-size: 1.5rem;
    }
    #banner a {
      color: rgba(255, 255, 255, 0.5);
      text-decoration: none; }
      #banner a:hover {
        color: #ffffff; }
    #banner video {
      -moz-transform: translateX(50%) translateY(50%);
      -webkit-transform: translateX(50%) translateY(50%);
      -ms-transform: translateX(50%) translateY(50%);
      transform: translateX(50%) translateY(50%);
      bottom: 50%;
      height: auto;
      min-height: 100%;
      min-width: 100%;
      overflow: hidden;
      position: absolute;
      right: 50%;
      width: auto; }
    #banner:before {
      -moz-transition: opacity 3s ease;
      -webkit-transition: opacity 3s ease;
      -ms-transition: opacity 3s ease;
      transition: opacity 3s ease;
      -moz-transition-delay: 1.25s;
      -webkit-transition-delay: 1.25s;
      -ms-transition-delay: 1.25s;
      transition-delay: 1.25s;
      background: #111111;
      content: '';
      display: block;
      height: 100%;
      left: 0;
      opacity: 0.45;
      position: absolute;
      top: 0;
      width: 100%;
      z-index: 1; }
    #banner:after {
      background: -webkit-linear-gradient(135deg, #00d5ff 0%, #1c1c1c 74%);
      content: ' ';
      display: block;
      height: 100%;
      left: 0;
      opacity: 0.6;
      position: absolute;
      top: 0;
      width: 100%;
      z-index: 1; }
    #banner.small {
      height: 30vh !important;
      min-height: 30vh; }
    @media screen and (max-width: 1280px) {
      #banner video {
        display: none; } }
    @media screen and (max-width: 736px) {
      #banner {
        height: auto !important;
        min-height: 0;
        padding: 4rem 2rem 4rem 2rem; }
        #banner .inner {
          width: 100%; }
        #banner h1 {
          font-size: 1.75rem;
          margin-bottom: 0.5rem;
          padding-bottom: 0; }
        #banner p {
          font-size: 1.25rem; }
        #banner br {
          display: none; }
        #banner .button {
          width: 100%; } }
    @media screen and (max-width: 480px) {
      #banner p {
        font-size: 1rem; } }
    body.is-preload #banner .inner {
      -moz-transform: scale(0.99);
      -webkit-transform: scale(0.99);
      -ms-transform: scale(0.99);
      transform: scale(0.99);
      opacity: 0; }
    body.is-preload #banner:before {
      opacity: 1; }

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/api/placeholder/1200/600') center/cover no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    margin-top: 70px;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(to right, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-description {
    font-size: 0.75rem; /* Default size, but overridden by inline style */
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    line-height: 1.5;
    margin-left: auto;
    margin-right: auto;
}

.hero p {
    font-size: 1px;
    margin-bottom: 30px;
    color: grey;
}

/* Page header */

.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/api/placeholder/1200/400') center/cover no-repeat;
    padding: 100px 0 60px;
    text-align: center;
    color: white;
    margin-top: 70px;
}

.page-header h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(to right, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    list-style: none;
}

.breadcrumb li {
    margin: 0 10px;
    position: relative;
}

.breadcrumb li:not(:last-child):after {
    content: ">";
    position: absolute;
    right: -15px;
}

.breadcrumb a {
    color: white;
    opacity: 0.8;
}

.breadcrumb a:hover {
    opacity: 1;
}

.page-header p {
    color: rgba(255, 255, 255, 0.848); /* Change this to your desired color */
    font-size: 14px; /* Optional: Adjust font size */
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    grid-auto-rows: 1fr; /* Ensure equal-height grid rows */
}

.service-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 25px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card h3 {
    min-height: 3.6em; /* Adjust based on your line-height */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 15px 0;
    padding: 0 10px;
    line-height: 1.2;
}

.service-card p {
    flex-grow: 1;
    margin: 0 0 20px 0;
    padding: 0 10px;
    color: #666;
    line-height: 1.6;
    min-height: 4.8em; /* Ensures consistent height for 3 lines of text */
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card .btn {
    margin-top: auto;
    align-self: center;
}

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

.service-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.05), rgba(46, 204, 113, 0.05));
    transition: height 0.3s ease;
    z-index: -1;
    border-radius: 8px;
}

.service-card:hover:before {
    height: 100%;
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    color: var(--primary);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* Service Detail Styles */
.service-details {
    padding: 40px 0;
}

.service-detail {
    margin-bottom: 80px;
}

.service-detail:last-child {
    margin-bottom: 0;
}

.service-detail-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: center;
}

.service-detail-img {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.service-detail-img img {
    width: 100%;
    height: auto; /* Maintain natural height */
    object-fit: cover; /* Crop to cover without distortion */
    display: block;
}

.service-detail-text h3 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.service-features {
    margin: 20px 0;
    padding-left: 20px;
}

.service-features li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
}

.service-features li:before {
    content: "•";
    color: var(--accent);
    font-weight: bold;
    position: absolute;
    left: -10px;
}

.cta-box {
    background-color: #f5f9ff;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--accent);
    margin-top: 30px;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-img {
    border-radius: 8px;
    overflow: hidden;
}

.about-img img {
    width: 100%;
    height: auto;
    display: block;
}

/* Team Carousel Styles */
#leadership {
    padding: 100px 0;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

#leadership::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(52, 152, 219, 0.08) 0%, rgba(52, 152, 219, 0) 70%);
    pointer-events: none;
}

.team-carousel-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 0 60px;
}

/* Carousel Structure */
.team-carousel {
    display: flex;
    overflow-x: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: 30px;
    padding: 20px 60px;
    margin: 0 -20px;
}

.team-carousel .leader-profile {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 280px;
    scroll-snap-align: center;
    background-color: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    margin: 10px;
}

@media (max-width: 992px) {
    .team-carousel .leader-profile {
        flex: 0 0 calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .team-carousel .leader-profile {
        flex: 0 0 calc(100% - 20px);
    }
}

/* Profile Card Styles */
.leader-profile::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #9b59b6);
    z-index: 2;
}

.leader-profile:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.leader-img {
    position: relative;
    height: 300px;
    overflow: hidden;
    transform-origin: top center;
    transition: transform 0.5s ease;
}

.leader-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.leader-profile:hover .leader-img {
    transform: scale(1.03);
}

.leader-details {
    padding: 30px;
    position: relative;
    background: white;
}

.leader-details h3 {
    margin: 0 0 10px;
    font-size: 1.6rem;
    color: #333;
    position: relative;
    padding-bottom: 15px;
    font-weight: 700;
}

.leader-details h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #3498db;
    transition: width 0.3s ease;
}

.leader-profile:hover .leader-details h3::after {
    width: 70px;
}

.leader-title {
    color: #3498db;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: block;
}

.leader-bio {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

/* Navigation Controls */
.carousel-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    z-index: 10;
    padding: 0 15px;
}

.carousel-control {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    color: #333;
}

.carousel-control:hover {
    background: #3498db;
    color: white;
    transform: scale(1.1);
}

.carousel-control.disabled {
    opacity: 0.5;
    pointer-events: none;
}

/* Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicator.active {
    background: #3498db;
    transform: scale(1.2);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: #3498db;
    color: white;
}

/* Accent elements */
.leader-profile::before {
    content: "";
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(52, 152, 219, 0.1);
    top: -20px;
    right: -20px;
    z-index: -1;
}

/* Hover effects */
.leader-profile:nth-child(odd):hover::before {
    animation: pulse 2s infinite;
}

.leader-profile:nth-child(even)::before {
    background: rgba(155, 89, 182, 0.1);
    top: auto;
    right: auto;
    bottom: -20px;
    left: -20px;
}

.leader-profile:nth-child(even):hover::before {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.3;
    }
    100% {
        transform: scale(1);
        opacity: 0.7;
    }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .contact-container {
        flex-direction: column;
    }
    
    .contact-info-column,
    .form-container {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .leadership-grid {
        grid-template-columns: 1fr;
    }
    
    .leader-profile {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Projects Section 
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.project-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.project-img {
    height: 200px;
    overflow: hidden;
}

.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover .project-img img {
    transform: scale(1.1);
}*/

.project-details {
    padding: 20px;
}

.category-btn {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 12px 20px;
    font-size: 16px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.category-btn:hover {
    box-shadow: 0 0 15px var(--accent);
    transform: scale(1.05);
}

/* Optional: Active button style */
.category-btn.active {
    background: var(--accent);
    color: white;
    box-shadow: 0 0 10px var(--accent);
}

/*Process Section */
.process-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    text-align: center;
}

.process-step {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    position: relative;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.process-icon {
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: white;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 15px;
    font-weight: bold;
}

.process-content h3 {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 10px;
}

.process-content p {
    font-size: 14px;
    color: var(--dark);
    line-height: 1.5;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.team-img {
    height: 250px;
    overflow: hidden;
}

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

.team-details {
    padding: 20px;
}

.team-social {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.team-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 50%;
    margin: 0 5px;
    color: var(--primary);
    transition: all 0.3s ease;
}

.team-social a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.team-social a:hover {
    background-color: var(--primary);
    color: white;
}

/* Enhanced Contact Form Styles */

/* Contact Form Section */
#contact-section {
    background-color: #f7f9fc;
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.contact-container {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: flex-start;
}

.contact-info-column {
    flex: 1;
    padding: 30px 30px 30px 0;
}

.contact-info-item {
    display: flex;
    margin-bottom: 30px;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-item .contact-icon {
    font-size: 24px;
    margin-right: 20px;
    width: 50px;
    height: 50px;
    background-color: #f0f4ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.contact-details {
    flex: 1;
}

.contact-details .btn-sm {
    margin-top: 15px;
    display: inline-block;
}
/* End of contact details */

.form-container {
    flex: 1.2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 40px;
    background-color: white;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.form-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, transparent 50%, rgba(0, 176, 255, 0.1) 50%);
    z-index: 1;
    border-radius: 0 0 12px 0;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header .section-title {
    color: var(--primary);
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.form-header p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    position: relative;
    z-index: 2;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row .form-group {
    flex: 1;
}

.form-row .about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 1.5em;
    line-height: 1.8;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark);
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group select:focus + label {
    color: var(--accent);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    background-color: #fbfbfb;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0, 176, 255, 0.15);
    background-color: white;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--accent);
    cursor: pointer;
}

.checkbox-group label {
    margin-bottom: 0;
    flex: 1;
    font-size: 0.9rem;
    color: #666;
    cursor: pointer;
}

.checkbox-group a {
    color: var(--accent);
    font-weight: 600;
    transition: all 0.3s ease;
}

.checkbox-group a:hover {
    text-decoration: underline;
    color: var(--primary);
}

.btn-full {
    width: 100%;
    padding: 15px;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 176, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-full:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 176, 255, 0.4);
    background: linear-gradient(45deg, var(--accent), var(--primary));
}

.btn-full:active {
    transform: translateY(1px);
    box-shadow: 0 2px 8px rgba(0, 176, 255, 0.3);
}

/* Floating label effect (optional) */
.form-group.floating {
    position: relative;
}

.form-group.floating input,
.form-group.floating textarea,
.form-group.floating select {
    padding: 18px 16px 8px;
}

.form-group.floating label {
    position: absolute;
    top: 15px;
    left: 16px;
    color: #999;
    transition: all 0.2s ease;
    pointer-events: none;
    font-size: 1rem;
}

.form-group.floating input:focus ~ label,
.form-group.floating input:not(:placeholder-shown) ~ label,
.form-group.floating textarea:focus ~ label,
.form-group.floating textarea:not(:placeholder-shown) ~ label,
.form-group.floating select:focus ~ label,
.form-group.floating select:not(:placeholder-shown) ~ label {
    top: 6px;
    font-size: 0.75rem;
    color: var(--accent);
}

/* Success/error states */
.form-group.success input,
.form-group.success textarea,
.form-group.success select {
    border-color: #28a745;
}

.form-group.error input,
.form-group.error textarea,
.form-group.error select {
    border-color: #dc3545;
}

.error-message {
    color: #dc3545;
    font-size: 0.8rem;
    margin-top: 5px;
    display: none;
}

.form-group.error .error-message {
    display: block;
}

/* Loading state */
.btn-full.loading {
    background: #ccc;
    pointer-events: none;
    position: relative;
}

.btn-full.loading::after {
    content: '';
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
    position: absolute;
    top: calc(50% - 10px);
    right: 20px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Success message after form submission */
.form-success-message {
    background-color: rgba(40, 167, 69, 0.1);
    border: 1px solid #28a745;
    border-radius: 6px;
    padding: 15px;
    text-align: center;
    display: none;
}

.form-success-message.show {
    display: block;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .contact-container {
        flex-direction: column;
    }
    
    .contact-info-column,
    .form-container {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .form-container {
        padding: 30px 20px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .form-header .section-title {
        font-size: 1.8rem;
    }
    
    .btn-full {
        padding: 12px;
    }
}

 /* Creative Journey Timeline Section */
 #milestones {
    padding: 100px 0;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

#milestones::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(52, 152, 219, 0.05) 0%, transparent 70%),
                radial-gradient(circle at bottom left, rgba(155, 89, 182, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 70px;
    position: relative;
    color: #333;
    font-weight: 700;
}

.section-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3498db);
    margin: 15px auto 0;
    border-radius: 2px;
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 6px;
    background: linear-gradient(180deg, #3498db);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
    border-radius: 3px;
    box-shadow: 0 0 20px rgba(52, 152, 219, 0.3);
}

.timeline-item { 
    padding: 10px 50px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Add this class with JavaScript when elements enter viewport */
.timeline-item.appear {
    opacity: 1;
    transform: translateY(0);
}

/* Immediate load fallback for static view */
.timeline-item {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-year {
    position: absolute;
    width: 70px;
    height: 70px;
    right: -35px;
    background: linear-gradient(135deg, #3498db, #9b59b6);
    border-radius: 50%;
    top: 0;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: bold;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.timeline-item:nth-child(even) .timeline-year {
    left: -35px;
    right: auto;
}

.timeline-content {
    padding: 30px;
    background: white;
    position: relative;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.timeline-item:nth-child(odd) .timeline-content::after {
    content: '';
    position: absolute;
    top: 20px;
    right: -15px;
    width: 30px;
    height: 30px;
    background: white;
    transform: rotate(45deg);
    box-shadow: 5px -5px 10px rgba(0, 0, 0, 0.05);
}

.timeline-item:nth-child(even) .timeline-content::after {
    content: '';
    position: absolute;
    top: 20px;
    left: -15px;
    width: 30px;
    height: 30px;
    background: white;
    transform: rotate(45deg);
    box-shadow: -5px 5px 10px rgba(0, 0, 0, 0.05);
}

.timeline-content h3 {
    margin-top: 0;
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 12px;
}

.timeline-content h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #3498db, #9b59b6);
}

.timeline-content p {
    margin-bottom: 0;
    line-height: 1.6;
    color: #666;
}

/* Special styles for specific years */
.timeline-item:nth-child(1) .timeline-year {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.timeline-item:nth-child(2) .timeline-year {
    background: linear-gradient(135deg, #2980b9, #8e44ad);
}

.timeline-item:nth-child(3) .timeline-year {
    background: linear-gradient(135deg, #3498db, #9b59b6);
}

.timeline-item:nth-child(4) .timeline-year {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.timeline-item:nth-child(5) .timeline-year {
    background: linear-gradient(135deg, #3498db, #8e44ad);
}

.timeline-item:nth-child(6) .timeline-year {
    background: linear-gradient(135deg, #8e44ad, #2980b9);
}

.timeline-item:nth-child(7) .timeline-year {
    background: linear-gradient(135deg, #8e44ad, #2980b9);
}

/* Icons for each milestone (optional) */
.timeline-content::before {
    font-family: sans-serif;
    position: absolute;
    top: -15px;
    right: 20px;
    font-size: 1.5rem;
    padding: 10px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: #3498db;
}

/* Company Founded - 2009 */
.timeline-item:nth-child(1) .timeline-content::before {
    content: "🚀";
}

/* First Major Project - 2010 */
.timeline-item:nth-child(2) .timeline-content::before {
    content: "🏆";
}

/* Second Major Project - 2011 */
.timeline-item:nth-child(3) .timeline-content::before {
    content: "🏗️";
}

/* Rural Connectivity Initiative - 2023 */
.timeline-item:nth-child(4) .timeline-content::before {
    content: "🥇️";
}

/* 500th Project Milestone - 2024 */
.timeline-item:nth-child(5) .timeline-content::before {
    content: "🌐";
}

/* Expansion to Cybersecurity - 2025 */
.timeline-item:nth-child(6) .timeline-content::before {
    content: "🛡️";
}
/* Expansion to Luna Tech-Hub - 2025 */
.timeline-item:nth-child(7) .timeline-content::before {
    content: "🌱";
}

/* Responsive Timeline */
@media screen and (max-width: 768px) {
    .timeline::after {
        left: 31px; 
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-item:nth-child(even) {
        left: 0;
    }

    .timeline-year {
        left: -4px !important;
        right: auto !important;
        width: 60px;
        height: 60px;
        font-size: 1.1rem;
    }

    .timeline-item:nth-child(odd) .timeline-content::after {
        left: -15px;
        right: auto;
        box-shadow: -5px 5px 10px rgba(0, 0, 0, 0.05);
    }

    .timeline-content::before {
        top: auto;
        bottom: 10px;
        right: 10px;
        font-size: 1.2rem;
    }
}

/* Fancy Animation */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(52, 152, 219, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(52, 152, 219, 0); }
    100% { box-shadow: 0 0 0 0 rgba(52, 152, 219, 0); }
}

.timeline-year {
    animation: pulse 2s infinite;
}


/* Testimonial Slider Styles */
.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}

.testimonial-track {
    position: relative;
    overflow: hidden;
    min-height: 300px; /* Set a minimum height to prevent layout shifts */
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin: 10px;
    transition: all 0.3s ease;
}

.testimonial-quote {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.testimonial-author h4 {
    margin: 0;
    font-size: 1.1rem;
}

.testimonial-author p {
    margin: 5px 0 0;
    color: #777;
}

/* Navigation buttons */
.prev-btn, .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--accent);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s ease;
}

.prev-btn:hover, .next-btn:hover {
    background: var(--accent-dark);
}

.prev-btn {
    left: -20px;
}

.next-btn {
    right: -20px;
}

@media (max-width: 992px) {
    .contact-container {
        flex-direction: column;
    }
    
    .contact-info-column,
    .form-container {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .prev-btn, .next-btn {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    
    .prev-btn {
        left: 0;
    }
    
    .next-btn {
        right: 0;
    }
}

/* Enhanced Call to Action Section with Background Image */
#cta {
    position: relative;
    padding: 0;
    margin: 80px 0 0 0;
    overflow: hidden;
    background: url('') center/cover no-repeat;
}

.cta-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(41, 128, 185, 0.85), rgba(52, 152, 219, 0.9));
    z-index: 1;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    position: relative;
    display: flex;
    align-items: center;
    min-height: 400px;
    z-index: 2;
}

.cta-content {
    width: 100%;
    padding: 80px 60px;
    color: white;
    position: relative;
    z-index: 5;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    position: relative;
    display: inline-block;
}

.cta-content h2:after {
    content: "";
    display: block;
    width: 100px;
    height: 4px;
    background: #ffffff;
    margin: 15px auto 0;
    border-radius: 2px;
}

.cta-content p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 35px;
    line-height: 1.6;
    color: rgba(9, 21, 82, 0.95);
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.cta-button {
    display: inline-block;
    background-color: white;
    color: #2980b9;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 2px solid transparent;
    animation: subtle-bounce 3s infinite;
}

.cta-button:hover {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.cta-button i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(5px);
}

/* Decorative elements */
.cta-accent-circle {
    position: absolute;
    right: -150px;
    top: -150px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    z-index: 1;
}

.cta-accent-dots {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255,255,255,0.15) 2px, transparent 2px);
    background-size: 30px 30px;
    z-index: 1;
}

/* Animation */
@keyframes subtle-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .contact-container {
        flex-direction: column;
    }
    
    .contact-info-column,
    .form-container {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .cta-container {
        min-height: 350px;
    }
    
    .cta-content {
        padding: 60px 20px;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .cta-button {
        padding: 15px 35px;
        font-size: 1.1rem;
    }
}

/* Footer */
footer {
    background-color: var(--dark);
    color: white;
    padding: 60px 0 20px;
    width: 100%; /* Ensure it spans the full width */
}

footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary), var(--secondary), var(--accent));
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-col h3 {
    color: white;
    margin-bottom: 20px;
    position: relative;
}

.footer-col h3:after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background-color: var(--accent);
    margin-top: 10px;
}

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

.footer-col .footer-links li {
    margin-bottom: 10px;
}

/* Only make the social icons horizontal (Stay Connected is the 4th .footer-col) */
.footer-col:nth-child(4) .footer-links {
    display: flex;
    flex-direction: row;
    gap: 18px;
    justify-content: flex-start;
    align-items: center;
}

.footer-col:nth-child(4) .footer-links li {
    margin-bottom: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #bbb;
}

.footer-links a:hover {
    color: white;
}

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

/* Responsive Styles */
@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    /* Responsive styles for service details */
    .service-detail-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-detail-img {
        order: -1;
    }
}

@media (max-width: 992px) {
    .contact-container {
        flex-direction: column;
    }
    
    .contact-info-column,
    .form-container {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .mobile-nav-toggle {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: white;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        z-index: 99;
    }
    
    .nav-links.active {
        transform: translateY(0);
    }
    
    .nav-links li {
        margin: 10px 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    section {
        padding: 40px 0;
    }
}

/* Responsive: Stack items on smaller screens */
@media (max-width: 992px) {
    .contact-container {
        flex-direction: column;
    }
    
    .contact-info-column,
    .form-container {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .process-container {
        grid-template-columns: 1fr;
    }
}

/* === Moved from Index.html === */

/*#about {
    background: linear-gradient(135deg, #ffffff1c 0%, #ffffff1c 100%); /* soft yellow gradient 
}
*/

#services {
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%); /* light blue gradient */
}

#team {
    background: linear-gradient(135deg, #f7f7f7 0%, #e5e5e5 100%); /* light gray gradient */
}

#contact {
    background: linear-gradient(135deg, #f2f2f2 0%, #e9e9e9 100%); /* dark gray gradient */
}

.client-logos {
    background: #4dc7d9; /* Teal background similar to the example */
    padding: 60px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.slider-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    padding: 20px 0;
}

.slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slide-track {
    display: flex;
    width: max-content; /* Allow content to determine width */
    animation: scroll 120s linear infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-250px * 27)); /* Move by one set, then loop */
    }
}

.slide {
    flex: 0 0 auto;
    width: 180px; /* Fixed width for each slide */
    margin: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide img {
    width: 100%;
    height: 80px;
    object-fit: contain;
    filter: brightness(0) invert(1); /* Makes all logos white */
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.9;
}

.slide img:hover {
    transform: scale(1.05);
    opacity: 1;
}

/* Make sure only 4 logos are visible at once on standard screens */
@media (max-width: 992px) {
    .contact-container {
        flex-direction: column;
    }
    
    .contact-info-column,
    .form-container {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .slide {
        width: 140px;
        margin: 0 15px;
    }
    
    .slide img {
        width: 80px;
        height: 80px;
    }
}

/* Enhanced Button Styles for Hero Section */
.hero .btn {
  display: inline-block;
  padding: 14px 28px;
  margin: 15px 10px 15px 0;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 30px;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Primary button - Explore Our Services */
.hero .btn:first-of-type {
  background: linear-gradient(to right, #0077b6, #1a237e); /*var(--accent), var(--secondary)*/
  color: white;
  border: none;
}

.hero .btn:first-of-type:hover {
  background: linear-gradient(to right, #1a237e, #0077b6); /*var(--secondary), var(--accent));*/
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Secondary button - Contact Us */
.hero .btn:last-of-type {
  background: transparent;
  color: white;
  border: 2px solid #0077b6;
}

.hero .btn:last-of-type:hover {
  background: rgba(255, 255, 255, 0.1);
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.form-group textarea {
    height: 150px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-item {
    display: flex;
    margin-bottom: 30px;
}

.contact-icon {
    font-size: 24px;
    margin-right: 15px;
    color: var(--accent);
}
/* Enhanced Projects Section Styles */

.read-more-container{ 
    text-align:center;
    margin-top:20px;
}
.read-more-container .read-more-btn{
    display:inline-block;
    background:var(--primary);
    color:#fff;
    padding:12px 28px;
    border-radius:30px;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
}
.read-more-container .read-more-btn:hover{
    background:var(--accent);
    color:#fff;
}
/* Projects carousel overrides */
.projects-grid .project-card .project-img{
    height:180px;
    overflow:hidden;
}
.projects-grid .project-card .project-img img{
    width:100%;
    height:100%;
    object-fit:cover;
}
.projects-wrapper {
    display: flex;
    align-items: center;
}

.projects-grid {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    overflow: hidden;
    scroll-behavior: smooth;
}

.projects-grid .project-card {
    max-height: 450px;
    min-width: 280px;
    flex: 0 0 350px;
}

.projects-prev,
.projects-next {
    background: var(--primary);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.projects-prev:hover,
.projects-next:hover {
    background: var(--secondary);
}

.projects-prev { margin-right: 15px; }
.projects-next { margin-left: 15px; }

.read-more-container.hidden {
    display: none;
}
#projects {
    padding: 80px 0;
    background-color: #fff;
    position: relative;
}

.projects-grid {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    overflow: hidden;
    scroll-behavior: smooth;
}

.project-card {
    background-color: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.project-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.05), rgba(46, 204, 113, 0.05));
    transition: height 0.3s ease;
    z-index: -1;
    border-radius: 15px;
}

.project-card:hover:before {
    height: 100%;
}

.project-img {
    height: 300px;
    overflow: hidden;
}

.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-img img {
    transform: scale(1.05);
}

.project-details {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.project-details h3 {
    margin-top: 0;
    font-size: 1.3rem;
    color: #1a237e;
    margin-bottom: 12px;
}

.project-details p {
    color: #555;
    line-height: 1.6;
}

.projects-container {
    position: relative;
    padding-bottom: 60px; /* Space for the button at bottom */
}

.read-more-container {
    margin-top: 30px;
    display: flex;
    justify-content: flex-end;
}

.read-more-btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--box-shadow);
}

.read-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    color: white;
}

@media (max-width: 992px) {
    .contact-container {
        flex-direction: column;
    }
    
    .contact-info-column,
    .form-container {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .project-img {
        height: 180px;
    }
}


/* Partners Carousel */
.partners-section {
    padding: 60px 0;
    background-color: #f9f9f9;
    overflow: hidden;
    position: relative;
}

.partners-carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.partners-carousel-track {
    display: flex;
    animation: scroll 120s linear infinite !important; /* Slower animation */
    width: calc(200px * 54); /* Double the width to fit all logos (27 logos × 2) */
    will-change: transform;
    margin: 0;
    padding: 0;
    list-style: none;
    animation-duration: 120s !important; /* Ensure this takes precedence */
}

.partner-logo {
    width: 200px;
    height: 120px;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    margin: 0 10px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.8);
    transition: all 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% / 2)); /* Move by half the total width */
    }
}

/* Pause animation on hover */
.partners-carousel-container:hover .partners-carousel-track {
    animation-play-state: paused;
}

/* Fade edges for better visual effect */
.partners-carousel-container::before,
.partners-carousel-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.partners-carousel-container::before {
    left: 0;
    background: linear-gradient(to right, rgba(249, 249, 249, 1), rgba(249, 249, 249, 0));
}

.partners-carousel-container::after {
    right: 0;
    background: linear-gradient(to left, rgba(249, 249, 249, 1), rgba(249, 249, 249, 0));
}

/* Responsive Design */
@media (max-width: 1200px) {
    .partners-carousel-track {
        animation-duration: 50s; /* Slightly faster on smaller screens */
    }
}

@media (max-width: 992px) {
    .partner-logo {
        width: 180px;
        height: 110px;
        padding: 12px;
        margin: 0 8px;
    }
    
    .partners-carousel-track {
        width: calc(180px * 54);
    }
}

@media (max-width: 768px) {
    .partners-section {
        padding: 30px 0;
    }
    
    .partner-logo {
        width: 160px;
        height: 100px;
        padding: 10px;
        margin: 0 6px;
    }
    
    .partners-carousel-track {
        width: calc(160px * 54);
    }
    
    .partners-carousel-container::before,
    .partners-carousel-container::after {
        width: 50px;
    }
}

@media (max-width: 576px) {
    .partner-logo {
        width: 120px;
        height: 80px;
        padding: 6px;
        margin: 0 4px;
    }
    
    .partners-carousel-track {
        width: calc(120px * 54);
    }
    
    .partners-carousel-container::before,
    .partners-carousel-container::after {
        width: 30px;
    }
}

/* === Moved from services.html === */

        /* Additional styles specific to the services page */
        .service-detail-img {
            width: 100%;
            max-height: 350px; /* Limit maximum height, keeps original aspect ratio */
            overflow: hidden;
            border-radius: 10px;
            position: relative;
        }

        .service-detail-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            position: absolute;
            top: 0;
            left: 0;
            transition: transform 0.3s ease;
        }

        .service-detail-img img:hover {
            transform: scale(1.05);
        }

        .service-detail {
            padding: 60px 0;
            border-bottom: 1px solid #eee;
        }
        
        .service-detail:last-child {
            border-bottom: none;
        }
        
        .service-detail-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }
        
        /* Slideshow container for service images */
        .service-detail-img {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            height: 500px; /* ensures the container has height so images are visible */
        }

        /* Maintain a reasonable height on small screens */
        @media (max-width: 576px) {
            .service-detail-img {
                height: 300px;
            }
        }

        .service-detail-img.slideshow img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0;
            animation: serviceFade 20s linear infinite;
        }

        .service-detail-img.slideshow img:nth-child(1) { animation-delay: 0s; }
        .service-detail-img.slideshow img:nth-child(2) { animation-delay: 10s; }
        
        /* Add more nth-child rules if you include more than 2 images */

        @keyframes serviceFade {
            0%   { opacity: 0; }
            5%   { opacity: 1; }
            50%  { opacity: 1; } /* first image full 10s */
            55%  { opacity: 0; }
            100% { opacity: 0; }
        }

        
        .service-detail-img img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .service-detail-text h3 {
            margin-bottom: 20px;
        }
        
        .service-features {
            margin: 20px 0;
            padding-left: 20px;
        }
        
        .service-features li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 15px;
        }
        
        .service-features li:before {
            content: "•";
            color: var(--accent);
            font-weight: bold;
        }
        
        .cta-box {
            background-color: #f5f7fa;
            border-left: 4px solid var(--accent);
            padding: 20px;
            margin-top: 30px;
            border-radius: 4px;
        }
        
        /* Reverse layout for alternating sections */
        .service-detail:nth-child(even) .service-detail-content {
            grid-template-columns: 1fr 1fr;
            direction: rtl;
        }
        
        .service-detail:nth-child(even) .service-detail-text {
            direction: ltr;
        }
        
        /* Page header */
        .page-header {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('img/banners/pexels-timonreinhard-27756676.jpg') center/cover no-repeat;
            padding: 100px 0 60px;
            text-align: center;
            color: white;
            margin-top: 70px;
        }
        
        .page-header h1 {
            color: white;
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .breadcrumb {
            display: flex;
            justify-content: center;
            list-style: none;
        }
        
        .breadcrumb li {
            margin: 0 10px;
            position: relative;
        }
        
        .breadcrumb li:not(:last-child):after {
            content: ">";
            position: absolute;
            right: -15px;
        }
        
        .breadcrumb a {
            color: white;
            opacity: 0.8;
        }
        
        .breadcrumb a:hover {
            opacity: 1;
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .service-detail-content,
            .service-detail:nth-child(even) .service-detail-content {
                grid-template-columns: 1fr;
                direction: ltr;
            }
            
            .service-detail {
                padding: 40px 0;
            }
        }

/* === ABOUT PAGE CUSTOM STYLES === */

.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('img/banners/african-american-technician-check-maintenance-solar-panels-black-woman-engineer-solar-station.jpg') center/cover no-repeat;
    padding: 100px 0 60px;
    text-align: center;
    color: white;
    margin-top: 70px;
}

.page-header h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(to right, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    list-style: none;
}

.breadcrumb li {
    margin: 0 10px;
    position: relative;
}

.breadcrumb li:not(:last-child):after {
    content: ">";
    position: absolute;
    right: -15px;
}

.breadcrumb a {
    color: white;
    opacity: 0.8;
}

.breadcrumb a:hover {
    opacity: 1;
}

/* Modern Mission & Values Section */
#mission-values {
    padding: 80px 0;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

/* Scoped styles for section title inside Mission & Values */

#mission-values .section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
    color: #333;
    font-weight: 700;
}
#mission-values .section-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3498db);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Generic section title for other About page sections */
.page-section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 150px;
    position: relative;
    color: #333;
    font-weight: 700;
}
.page-section-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3498db);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Section-specific overrides (adjust values as desired) */
#our-story .page-section-title   { margin-bottom: 100px; }
#ppe .page-section-title         { margin-bottom: 1px; margin-top: 50px; }
#milestones .page-section-title  { margin-bottom: 100px; }
#leadership .page-section-title  { margin-bottom: 100px; }
#partners .page-section-title    { margin-bottom: 20px; }

.section-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3498db);
    margin: 15px auto 0;
    border-radius: 2px;
}

.mission-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 60px;
    justify-content: center;
}

.mission-box {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mission-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.mission-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #3498db);
}

.mission-box h3 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.mission-box h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #3498db;
}

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

.values-container {
    margin-top: 40px;
}

.values-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #333;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.value-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.value-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3498db);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: center;
}

.value-card:hover::after {
    transform: scaleX(1);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
    position: relative;
}

.value-icon::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #3498db);
    border-radius: 1px;
}

.value-card h4 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.value-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .contact-container {
        flex-direction: column;
    }
    
    .contact-info-column,
    .form-container {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .mission-container {
        flex-direction: column;
    }

    .mission-box {
        margin-bottom: 20px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== Contact Page Styles ========== */
/* Page header */
        .page-header {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('img/banners/call2.jpg') center/cover no-repeat;
            padding: 100px 0 60px;
            text-align: center;
            color: white;
            margin-top: 70px;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;

        }
        
        .page-header h1 {
            color: rgb(255, 255, 255);
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        
        .breadcrumb {
            display: flex;
            justify-content: center;
            list-style: none;
        }
        
        .breadcrumb li {
            margin: 0 10px;
            position: relative;
        }
        
        .breadcrumb li:not(:last-child):after {
            content: ">";
            position: absolute;
            right: -15px;
        }
        
        .breadcrumb a {
            color: white;
            opacity: 0.8;
        }
        
        .breadcrumb a:hover {
            opacity: 1;
        }

        /* Flexbox Layout for Contact Cards */
        .contact-grid {
        display: flex;
        flex-wrap: wrap; /* Allows wrapping on smaller screens */
        gap: 20px; /* Space between cards */
        justify-content: space-between; /* Distributes items evenly */
        }

    /* Contact Card Styling */
    .contact-card {
        background: #f8f8f8;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
        text-align: center;
        flex: 1; /* Allows each card to be equal width */
        min-width: 250px; /* Ensures cards don't get too small */
        max-width: 300px; /* Limits maximum width */
    }

    /* Contact Icon Styling */
    .contact-icon {
        font-size: 40px;
        margin-bottom: 10px;
    }

    /* Responsive Design */
    @media (max-width: 992px) {
    .contact-container {
        flex-direction: column;
    }
    
    .contact-info-column,
    .form-container {
        width: 100%;
    }
}

@media (max-width: 768px) {
        .contact-grid {
            flex-direction: column; /* Stacks the cards on small screens */
            align-items: center;
        }
    }

/* ========== Projects Page Styles ========== */
/* Generic page header style */
.page-header {
           padding: 100px 0 60px;
           text-align: center;
           color: white;
           margin-top: 70px;
           background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('img/banners/octavian-dan-b21Ty33CqVs-unsplash.jpg') center/cover no-repeat;
       }
       
/* Page-specific header backgrounds */
body.about-page .page-header {
           background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('img/banners/pexels-timonreinhard-27756676.jpg') center/cover no-repeat;
       }
       
body.services-page .page-header {
           background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('img/banners/african-american-technician-check-maintenance-solar-panels-black-woman-engineer-solar-station.jpg') center/cover no-repeat;
       }
       
body.contact-page .page-header {
    background: url('img/banners/call2.jpg') center/cover no-repeat;
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
    padding: 0;
}

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.greeting-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    pointer-events: none;
}

.greeting-text {
    font-size: 3.5rem;
    font-weight: bold;
    opacity: 0;
    transform: scale(0.9);
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

@keyframes fadeInOut {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    15% {
        opacity: 1;
        transform: scale(1);
    }
    85% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(1.1);
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero .inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
}

.hero-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-description {
    font-size: 1.1rem !important;
    margin-bottom: 2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }

    .hero-description {
        font-size: 1rem !important;
    }
}

body.projects-page .page-header {
           background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('img/banners/octavian-dan-b21Ty33CqVs-unsplash.jpg') center/cover no-repeat;
       }
       
       .page-header h1 {
           color: white;
           font-size: 2.5rem;
           margin-bottom: 20px;
       }
       
       .breadcrumb {
           display: flex;
           justify-content: center;
           list-style: none;
       }
       
       .breadcrumb li {
           margin: 0 10px;
           position: relative;
       }
       
       .breadcrumb li:not(:last-child):after {
           content: ">";
           position: absolute;
           right: -15px;
       }
       
       .breadcrumb a {
           color: white;
           opacity: 0.8;
       }
       
       .breadcrumb a:hover {
           opacity: 1;
       }

       /* Featured Projects Section Styling */
#featured-projects {
    padding: 80px 0;
    background-color: #fff;
}

.featured-projects-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
}

.featured-project-card {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 30px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* Fix for image overflow */
.featured-project-img {
    height: 100%;
    position: relative;
    overflow: hidden;
}

.featured-project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* This ensures the image covers the area without distortion */
    object-position: center;
    transition: transform 0.5s ease;
}

.featured-project-card:hover .featured-project-img img {
    transform: scale(1.05);
}

.featured-project-content {
    padding: 30px;
}

.featured-project-content h3 {
    margin-top: 0;
    font-size: 1.6rem;
    color: #1a237e;
    margin-bottom: 15px;
}

.project-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.project-category {
    background: linear-gradient(to right, #0077b6, #1a237e);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 500;
}

.project-date {
    color: #666;
}

.featured-project-content p {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.6;
}

.project-highlights {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.project-highlights h4 {
    margin-top: 0;
    margin-bottom: 12px;
    color: #1a237e;
}

.project-highlights ul {
    margin: 0;
    padding-left: 20px;
}

.project-highlights li {
    margin-bottom: 8px;
    line-height: 1.4;
}

.btn-sm {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(to right, #0077b6, #1a237e);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-sm:hover {
    background: linear-gradient(to right, #1a237e, #0077b6);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Responsive styling for featured projects */
@media (max-width: 992px) {
    .featured-project-card {
        grid-template-columns: 1fr;
    }
    
    .featured-project-img {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .featured-project-img {
        height: 250px;
    }
    
    .project-meta {
        flex-direction: column;
        gap: 8px;
    }
}

/* Downloads Page Styles */
.downloads-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.download-category {
    margin-bottom: 40px;
}

.download-category h2 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.download-list {
    background: #fff;
}

.download-item {
    display: flex;
    align-items: center;
    padding: 15px;
    border: 1px solid #e0e0e0;
    margin-bottom: -1px;
    transition: background-color 0.2s ease;
    cursor: pointer;
}

.download-item:hover {
    background-color: #f5f5f5;
}

.file-icon {
    width: 24px;
    height: 24px;
    margin-right: 15px;
}

.download-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
}

.download-info h3 {
    color: #3c5166;
    font-size: 1rem;
    font-weight: 400;
    margin: 0;
}

.file-size {
    color: #666;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .download-info {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .file-size {
        margin-top: 5px;
    }
}

/* Custom button styles to fix hover issues */
.contact-btn {
    display: inline-block;
    background-color: var(--primary);
    color: white !important;
    padding: 12px 24px;
    border: 2px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 10px;
}

.contact-btn:hover {
    background-color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    color: white !important;
    border-radius: 4px;
    box-shadow: none;
    text-decoration: none;
}

/* Professional Team Section Styling */
.team-container {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* Executive Team Styling */
.executive-team {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.executive-member {
    display: flex;
    max-width: 800px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.exec-img {
    width: 250px;
    height: 300px;
    overflow: hidden;
}

.exec-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.exec-info {
    padding: 30px;
    flex: 1;
}

.exec-info h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.exec-info .position {
    font-size: 1.1rem;
    font-weight: 600;
    color: #555;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.exec-info .bio {
    margin-bottom: 25px;
    line-height: 1.6;
    color: #666;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--secondary);
    transform: translateY(-3px);
}

/* Team Category Heading */
.team-category {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
}

/* Team Table Styling */
.team-table {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.team-row {
    display: grid;
    grid-template-columns: auto 1fr auto 1fr;
    gap: 25px;
    align-items: center;
}

.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.team-info {
    padding-right: 30px;
}

.team-info h4 {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 5px;
}

.team-info .position {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 12px;
    font-weight: 500;
}

.linkedin-link {
    display: inline-flex;
    align-items: center;
    font-size: 0.9rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.linkedin-link i {
    margin-right: 5px;
}

.linkedin-link:hover {
    color: var(--secondary);
}

/* Responsive Team Section */
@media (max-width: 992px) {
    .executive-member {
        flex-direction: column;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .exec-img {
        width: 100%;
        height: 350px;
    }
    
    .team-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .team-col {
        display: flex;
        align-items: center;
    }
    
    .team-photo {
        margin-right: 20px;
        width: 80px;
        height: 80px;
    }
    
    .team-info {
        padding-right: 0;
    }
}

@media (max-width: 576px) {
    .exec-img {
        height: 300px;
    }
    
    .exec-info {
        padding: 20px;
    }
    
    .team-col {
        flex-direction: column;
        text-align: center;
    }
    
    .team-photo {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

/* Download Section Styles */
.downloads-section {
    padding: 80px 0;
    background-color: #f9f9f9;
    min-height: 70vh;
}

#banner {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), var(--banner-bg);
    background-size: cover;
    background-position: center;
    padding: 8em 0 6em 0;
    position: relative;
    text-align: center; 
    overflow: hidden;
}

/* Page-specific banner backgrounds */
#banner.services-banner {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/banners/services.jpg');
}

#banner.about-banner {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/banners/about.jpg');
}

#banner.projects-banner {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/banners/projects.jpg');
}

#banner.contact-banner {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/banners/contact.jpg');
}

#banner.downloads-banner {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/banners/downloads.jpg');
}

/* Partner Logos Slider */
#partners {
    padding: 60px 0;
    overflow: hidden;
}

.partners-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.partners-text {
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
}

.slider {
    display: flex;
    width: 100%;
}

.slide-track {
    display: flex;
    align-items: center;
    gap: 40px;
    animation: scroll 30s linear infinite;
    width: calc(250px * 54); /* 27 logos x 2 for seamless loop */
}

.slide {
    height: 100px;
    width: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.slide img {
    max-width: 100%;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.slide:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-250px * 12)); /* Adjust based on number of slides */
    }
}

/* Pause animation on hover */
.slide-track:hover {
    animation-play-state: paused;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .slide {
        width: 200px;
        height: 90px;
    }
    
    .slide img {
        max-height: 60px;
    }
}

@media (max-width: 768px) {
    .slide {
        width: 180px;
        height: 80px;
        padding: 10px;
    }
    
    .slide img {
        max-height: 50px;
    }
}

.certifications {
    margin-top: 60px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.certifications h3 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 24px;
}

.certifications ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.certifications li {
    background: white;
    padding: 10px 20px;
    border-radius: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    font-size: 15px;
    color: var(--dark);
}

#banner .inner {
    position: relative;
    z-index: 2;
    padding: 0 20px;
    max-width: 800px;
    margin: 0 auto;
}

#banner h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

#banner p {
    font-size: 1.2rem;
    margin: 0 auto 2rem auto;
    color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 768px) {
    #banner {
        padding: 6em 0 4em 0;
    }

    #banner h1 {
        font-size: 2.5rem;
    }

    #banner p {
        font-size: 1.1rem;
    }
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/banners/call2.jpg') center/cover no-repeat;
    padding: 100px 0;
    color: white;
    text-align: center;
    margin-bottom: 50px;
    background-attachment: fixed;
}

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: white;
}

.page-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

.download-category {
    margin-bottom: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.download-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.download-category h2 {
    background: linear-gradient(135deg, var(--primary), #2c3e50);
    padding: 18px 30px;
    margin: 0;
    font-size: 1.3rem;
    color: white;
    font-weight: 600;
    display: flex;
    align-items: center;
    border: none;
}

.download-category h2 i {
    margin-right: 12px;
    font-size: 1.2em;
}

.download-list {
    padding: 20px;
}

.download-item {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-bottom: 15px;
    border-radius: 6px;
    overflow: hidden;
}

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

.download-link {
    display: flex;
    align-items: center;
    padding: 20px 25px;
    text-decoration: none;
    color: #333;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.download-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary);
    transition: all 0.3s ease;
    opacity: 0;
}

.download-link:hover::before {
    opacity: 1;
}

.download-link:hover {
    background-color: #f8f9fa;
    border-color: #d0d0d0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transform: translateX(5px);
}

.download-info {
    flex: 1;
}

.download-info h3 {
    color: #2c3e50;
    margin: 0 0 8px 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.file-size {
    font-size: 0.9rem;
    color: #666;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.download-link:hover .file-size {
    color: var(--primary);
}

.download-action {
    margin-left: 20px;
    color: #999;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.download-link:hover .download-action {
    color: var(--primary);
    transform: scale(1.2);
}

.file-icon {
    width: 40px;
    height: 40px;
    margin-right: 15px;
    object-fit: contain;
}

.download-info h3 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    color: #2c3e50;
}

.file-size {
    font-size: 0.85rem;
    color: #666;
    display: flex;
    align-items: center;
}

.file-size::before {
    content: "↓";
    margin-right: 5px;
    font-size: 0.9em;
    color: #3498db;
}

/* Image size fix for service detail section */
.service-detail-img img {
    height: auto !important;
    width: 100%;
}

/* Back to top button */
.back-to-top {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    width: 50px !important;
    height: 50px !important;
    background: var(--primary) !important;
    color: white !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    font-size: 20px !important;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out !important;
    z-index: 9999 !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2) !important;
    border: none !important;
    outline: none !important;
    cursor: pointer !important;
    padding: 0 !important;
    margin: 0 !important;
}

.back-to-top:hover {
    background: #2980b9 !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3) !important;
}

.back-to-top.visible {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-header {
        padding: 70px 0;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .download-link {
        padding: 15px;
    }
    
    .file-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .download-info h3 {
        font-size: 1rem;
    }
    
    .file-size {
        font-size: 0.8rem;
    }
    
    .download-category h2 {
        padding: 15px 20px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .download-link {
        padding: 12px 15px;
    }
    
    .file-icon {
        width: 36px;
        height: 36px;
        font-size: 18px;
        margin-right: 12px;
    }
    
    .download-action {
        margin-left: 15px;
    }
}

/* === Drive Test subsection (ICT card) === */
.drive-test {
    margin-top: 25px;
}

.drive-test h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2980b9;
}

.drive-test-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.drive-test-columns ul {
    list-style: disc inside;
    padding-left: 0;
}

.drive-test-visual img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* === Fibre Quality Section === */
.fiber-quality-section {
    background-color: #0f1a2d; /* dark theme consistent with sample image */
    color: #ffffff;
    padding: 80px 0;
}

.fiber-quality-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.fiber-image {
    flex: 1 1 45%;
}

.fiber-image img {
    width: 100%;
    height: auto;
    border-radius: 20px 0 0 20px;
    object-fit: cover;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.fiber-content {
    flex: 1 1 55%;
}

.fiber-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.fiber-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.fiber-content ul {
    margin-bottom: 30px;
    list-style: none;
    padding-left: 5px;
}

.fiber-content ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    line-height: 1.6;
    color: #e0e0e0;
}

.fiber-content ul li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #000000;
}

.fiber-content ul li:after {
    content: '';
    position: absolute;
    left: 10px;
    top: 9px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #51a9ff;
}

@media (max-width: 768px) {
    .fiber-quality-wrapper {
        flex-direction: column-reverse;
        text-align: center;
    }

    .fiber-image,
    .fiber-content {
        flex: 1 1 100%;
    }

    .fiber-image img {
        border-radius: 20px;
    }
}