/* Font Scheme */
/* MontserratAlternatives-medium */
@font-face {
    font-family: 'MontserratAlt';
    src: url('./assets/fonts/MontserratAlternates-Medium.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap; /* Ensures text remains visible during font loading */
}
/* MontserratAlternatives-bold */
@font-face {
    font-family: 'MontserratAlt';
    src: url('./assets/fonts/MontserratAlternates-Black.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/* Montserrat-regular */
@font-face {
    font-family: 'Montserrat';
    src: url('./assets/fonts/Montserrat-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
/* Montserrat-bold */
@font-face {
    font-family: 'Montserrat';
    src: url('./assets/fonts/Montserrat-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/* Color Scheme */
:root {
   /* Primary Colors */
   --primary-blue: rgb(17,44,123);   /* Blue */
   --primary-red: rgb(226, 6, 19);    /* Red */
   --primary-gradient: rgb(210,230,250);    /* Blue Angel */
   --primary-btn: rgb(58, 89, 190);    /* Blue Hover */
   
   /* Secondary/Supporting Colors */
   --secondary-dark: rgb(0, 0, 0);
   --secondary-light: rgb(255, 255, 255);
   
   /* Text Colors */
   --text-dark: rgb(0,0,0);
   --text-light: rgb(255,255,255);
   --text-muted: rgb(108, 117, 125);
   
   /* UI Colors */
   --border-color: #ddd;
   --shadow-color: rgba(0, 0, 0, 0.1);
   --hover-overlay: rgba(0, 0, 0, 0.05);
   
   /* Success/Error States */
   --success: #28a745;
   --error: #dc3545;
   --warning: #ffc107;
   --info: #17a2b8;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat';
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

section {
    padding: 80px 0;
}

h1, h2, h3, h4 {
    margin-bottom: 20px;
    color: #222;
    font-weight: 600;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

p {
    margin-bottom: 15px;
}

.btn {
    display: inline-block;
    padding: 6px 15px;
    background-color: var(--primary-blue);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 500;
    transition: background-color 0.3s;
}

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

/* Header and Navigation */
header {
    background: rgba(255, 255, 255, 0.7); /* translucent white */
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(10px); /* for Safari */
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);

    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    font-family: 'MontserratAlt';
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2px 0;
}

/* Update the logo CSS */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

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

.logo span {
    color: #333;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-item {
    margin-left: 30px;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: larger;
    transition: color 0.3s;
    color: var(--primary-blue);
}

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

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #333;
    transition: all 0.3s;
}

    /* Dropdown menu */
    .dropdown {
    position: relative;
  }
  
  .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    padding: 0;
    margin: 0;
    display: none;
    flex-direction: column;
    min-width: 200px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    z-index: 1001;
  }
  
  .dropdown-menu li {
    list-style: none;
  }
  
  .dropdown-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s, color 0.3s;
  }
  
  .dropdown-menu a:hover {
    background-color: #f4f4f4;
    color: var(--primary-red);
  }
  
  /* Show dropdown on hover */
  .dropdown:hover .dropdown-menu {
    display: flex;
  }

    .highlight {
    color: var(--primary-red);
  }

  .highlight-active {
    text-decoration: underline;
    text-decoration-color: var(--primary-red);
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
  }

/* Hero Section */
.hero {
      position: relative;
      height: 100vh;
      width: 100%;
      display: flex;
      flex-direction: row;
      background: url('/assets/images/hero-1.png') no-repeat center center;
      background-size: cover;
    }

    .left-side, .right-side {
      position: relative;
      height: 100%;
    }

    .left-side {
      width: 40%;
      background: url('/assets/images/hero-2.png') no-repeat center center;
      background-size: cover;
      display: flex;
      flex-direction: column;
      justify-content: space-evenly;
      padding: 1rem;
      color: white;
    }

    .left-top-bold {
      font-size: 2.4rem;
      font-weight: 500;
      padding: 0 0.5rem;
      border-radius: 10px;
      color: white;
    }

    .left-top {
      font-size: 2.0rem;
      font-weight: 500;
      padding: 0rem 0.5rem;
      border-radius: 10px;
      color: transparent;      
      -webkit-text-stroke: 0.4px rgb(255, 255, 255);
    }

    .left-bottom {
      padding: 1rem;
      border-radius: 10px;
    }

    .left-bottom h4 {
      font-size: 1.5rem;
      font-weight: 500;
      font-family: "MontserratAlt";
      margin-bottom: 1rem;
      margin-left: 10px;
      color: var(--text-light);
    }

    .buttons {
      display: flex;
      flex-wrap: wrap;
      font-family: "MontserratAlt";
      gap: 0.5rem;
    }

    .btn-hero {
      background: #ffffff33;
      color: white;
      border: 1px solid white;
      padding: 0.3rem 0.5rem;
      border-radius: 11px;
      font-size: 0.9rem;
      cursor: pointer;
      transition: background 0.3s;
    }

    .btn-hero:hover {
      background: #ffffff66;
    }

    .buttons a {
        text-decoration: none;
    }

    .right-side {
      width: 60%;
      background: url('/assets/images/hero-3.png') no-repeat center center;
      background-size: cover;
    }

/* About Section */
.about {
    background: linear-gradient(to right, var(--primary-gradient), #ffffff);
}
.about-content-home {
    align-items: center;
}
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about h2 {
    color: var(--primary-blue);
}

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

.about-image img {
    width: 80%;
    display: block;
}

.services-list {
            list-style-type: none;
            padding: 0;
        }
        
        .service-item {
            background: rgba(255, 255, 255, 0);
            padding: 3px 10px;
            margin-bottom: 0px;
            border-radius: 6px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.0);
            color: #2c3e50;
            font-weight: 500;
            transition: all 0.3s ease;
            cursor: default;
        }
        
        .service-item:hover {
            transform: scale(1.03);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
.highlight-arrow {
    color: var(--primary-red);
    font-size: 1.5rem;
}

.intro {
    max-width: 1200px;
    justify-self: center;
    margin: 10px;
}

.intro h3 {
    font-size: 2rem;
    color: var(--primary-blue);
}

.portfolio-intro {
    background: linear-gradient(to right, #ffffff, var(--primary-gradient));
}

/* Featured services */
.featured-bg {
    background: linear-gradient(to right, #ffffff, var(--primary-gradient));
}
.featured {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 15px;
}

.section-title {
    text-align: center;
    color: var(--primary-blue);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
}

.card1 {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}
.card1:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.08);
}

.card1-flex {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card1-img {
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: background-image 1s ease-in-out;
}

.card1-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
        
.card1-title {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.card1-title h2 {
    color: #0a3b7c;
    font-size: 20px;
    font-weight: 600;
}

.card1-title span {
    color: #ff3e41;
    font-weight: 700;
    margin-left: 8px;
}

.card1 p {
    color: #666;
    margin-bottom: 15px;
    font-size: 15px;
    flex-grow: 1;
}
/* DOOH card1 - Feature card1 */
.dooh-card1 {
    grid-column: span 12;
    background: linear-gradient(135deg, #0a3b7c 0%, #072a58 100%);
    color: #fff;
    margin-bottom: 10px;
}

.dooh-card1 .card1-flex {
    display: grid;
    grid-template-columns: 45% 55%;
    min-height: 320px;
}

.dooh-card1 .card1-img {
    height: 100%;
    /* background-image: url('./assets/images/project-5.png'); */
}

.dooh-card1 .card1-content {
    padding: 30px;
}

.dooh-card1 .card1-title h2 {
    color: #fff;
    font-size: 28px;
}

.dooh-card1 p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin-bottom: 20px;
}

.dooh-card1 .btn {
    background-color: var(--primary-red);
    color: #fff;
    padding: 10px 20px;
    font-weight: 600;
}

.dooh-card1 .btn:hover {
    background-color: #e83538;
}

.feature-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-blue);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 12px;
    z-index: 1;
}
        
/* OOH card1 */
.ooh-card1 {
    grid-column: span 12;
}

.ooh-card1 .card1-flex {
    flex-direction: row;
}

.ooh-card1 .card1-img {
    width: 200%; /* Changed from 40% to 50% */
    height: auto;
    /* background-image: url('./assets/images/project-3.jpg'); */
}

/* Individual Service card1s */
.service-card1 {
    grid-column: span 6;
}

.service-card1 .card1-flex {
    display: grid;
    grid-template-columns: 50% 50%; /* Changed from 35% 65% to 50% 50% */
    height: 100%;
}

.service-card1 .card1-img {
    height: 100%;
}

/* Individual images for each service card1 */
.signages-card1 .card1-img {
    /* background-image: url('./assets/images/service-3.png'); */
}
        
.retail-card1 .card1-img {
    /* background-image: url('./assets/images/retail4.jpg'); */
}

.printing-card1 .card1-img {
    /* background-image: url('./assets/images/service-2.jpg'); */
}

.engineering-card1 .card1-img {
    /* background-image: url('./assets/images/service-4.png'); */
}

.service-card1 .card1-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card1 .content-top {
    margin-bottom: 15px;
}

/* Homepage-slider */
.image-slides {
    position: absolute;
    width: 100%;
    height: 100%;
}
.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: imageAnimation 10s linear infinite 0s;
}

.slide:nth-child(1) { animation-delay: 0s; }
.slide:nth-child(2) { animation-delay: 2s; }
.slide:nth-child(3) { animation-delay: 4s; }
.slide:nth-child(4) { animation-delay: 6s; }
.slide:nth-child(5) { animation-delay: 8s; }

@keyframes imageAnimation {
    0% { opacity: 0; }
    10% { opacity: 1; }
    20% { opacity: 1; }
    30% { opacity: 0; }
    100% { opacity: 0; }
}

/* Services-capabilities */
.capabilities {
    background: linear-gradient(to right, var(--primary-gradient), #ffffff);
}

.capabilities .section-title {    
    color: var(--primary-blue);
    text-align: center;
    padding: 0%;
    margin-top: -50px;
}
.media-section {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 20px;
    height: 600px;
}
.left-column {
    flex: 1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.right-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
/* Right column specific proportions */
.right-column .video-card {
    height: 70%;
}

.right-column .image-card {
    height: 30%;
}

.video-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    height: 100%;
}

.video-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.video-text {
    flex: 1;
}

.video-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: white;
}

.video-tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}
.glass-button {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    color: white;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.glass-button:hover {
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.image-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.capabilities-image-container {
    flex: 1;
    background-image: url('./assets/images/core-3.png');
    background-size: cover;
    background-position: center;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.image-title {
    font-size: 20px;
    font-weight: 600;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.circles-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 20px;
}

.profile-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid white;
    margin-right: -20px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Clients Section */
.clients-section {
    background: linear-gradient(to right, #ffffff, var(--primary-gradient));
    /* max-width: 1200px; */
    margin: 0px auto;
    padding: 20px;
    text-align: center;
    position: relative;
}

.clients-section .section-title {
    color: var(--primary-blue);
    /* font-size: 2.5rem; */
    margin-bottom: 20px;
    /* font-weight: bold; */
}

.section-description {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #333;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(11, 1fr);
    gap: 15px;
    margin: 30px auto 30px auto;
    max-width: 1200px;
    justify-items: center;
}

.client-item {
    position: relative;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: float 3s ease-in-out infinite;
    animation-delay: calc(var(--delay) * 1s);
    aspect-ratio: 1;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-7px);
    }
    100% {
        transform: translateY(0px);
    }
}

.client-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.client-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0%;
    transition: transform 0.5s ease;
}

.client-item:hover .client-logo {
    transform: scale(1.1);
}

.bg-pattern {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background-image: radial-gradient(#e0e5f0 1px, transparent 2px);
    background-size: 30px 30px;
    opacity: 0.5;
    z-index: -1;
    pointer-events: none;
}

/* Projects Section */
.main-services {
    background: linear-gradient(to right, #ffffff, var(--primary-gradient));
}
.main-services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 30px auto;
  }  

.main-services-grid h3 {
    color: var(--text-light);
}

.main-services-grid h1 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-light);
}

.main-service-card {
    flex: 1 1 calc(33.33% - 30px);
    max-width: calc(33.33% - 30px);
    min-width: 280px;
    height: 320px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.main-service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 15px;
    transition: height 0.3s ease;
    height: 60px;
    overflow: hidden;
}

.service-title {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: bold;
}

.service-description {
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
    line-height: 1.5;
}

.main-service-card:hover .card-content {
    height: 180px;
}

.main-service-card:hover .service-description {
    opacity: 1;
}

/* Vision & Mission */
.vision-mission-section {
    background: url('./assets/images/stretched.png') center/cover no-repeat;
    padding: 4rem 2rem;
    color: #fff;
  }
  
  .vision-mission-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    max-width: 1200px;
    margin: auto;
  }
  
  .vm-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    padding: 2rem;
    flex: 1 1 45%;
    min-width: 280px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
  }
  
  .vm-card:hover {
    transform: translateY(-5px);
  }
  
  .vm-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
  }
  
  .vm-card-header img {
    width: 50px;
    height: 50px;
    object-fit: contain;
  }
  
  .vm-card h3 {
    font-size: 1.5rem;
    margin: 0;
    color: var(--primary-blue);
  }
  
  .vm-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 1rem;
    color: var(--text-dark);
    font-family: "MontserratAlt";
  }

  /* company profile */
  .qr-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
  }
  .qr-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
  }
  .qr-card-header img {
    width: 150px;
    height: 150px;
    object-fit: contain;
  }
  .qr-card-header p {
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1.6;
    margin-top: 1rem;
    color: var(--text-dark);
    font-family: "Montserrat";
  }

/* Contact Section */
.contact {
    background: linear-gradient(to right, var(--primary-gradient), #ffffff);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

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

.contact-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}


.contact h2 {
    color: var(--primary-blue);
}

.contact-info-icon {
    margin-right: 15px;
    color: #0056b3;
    font-size: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

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


/* Map Section */
.location-map {
    padding: 0rem 0rem;
    background: linear-gradient(to right, #ffffff, var(--primary-gradient));
    text-align: center;
  }
  
  .map-title {
    font-size: 2rem;
    padding-top: 1rem;
    color: var(--primary-blue);
  }
  
  .map-container {
    width: 100%;
    /* max-width: 1000px; */
    margin: auto;
    overflow: hidden;
    /* border-radius: 12px; */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }
  
  .map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
    /* border-radius: 12px; */
  }


/* SubDivision */
.division1 {
    background: linear-gradient(to right, var(--primary-gradient), #ffffff);
}
.division-header {
    background-color: #2c3e50;
    color: white;
    padding: 100px 0 50px;
    position: relative;
    overflow: hidden;
}

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

.division-header::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('./assets/images/hero-bg.png') center/cover no-repeat;
    opacity: 0.2;
    z-index: 1;
}

.division-header h1 {
    font-family: "MontserratAlt";
    color: var(--text-light);
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
    justify-self: start;
}

.division-header p {
    font-size: 20px;
    max-width: 700px;
}

.overview h2, .features h2, .portfolio h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--primary-blue);
    position: relative;
    padding-bottom: 15px;
}

.overview h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 4px;
    background-color: var(--primary-red);
}
.features h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 4px;
    background-color: var(--primary-red);
}
.portfolio h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 4px;
    background-color: var(--primary-red);
}

.overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.overview-content {
    font-size: 18px;
}

.overview-image video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}


.features {
    background-color: #fff;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.feature-item {
    padding: 20px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 20px;
    color: #3498db;
}

/* Carousel Styles */
.carousel-container {
    position: relative;
    margin-top: 40px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.carousel {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-item {
    min-width: 100%;
    position: relative;
}

.carousel-item img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
}

.carousel-caption h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--text-light);
}

.carousel-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
    z-index: 10;
}

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

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

.carousel-dots {
    display: flex;
    justify-content: center;
    background-color: rgb(72, 74, 75);
    padding-bottom: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    background: #ccc;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: #3498db;
}

.cta {
    background: linear-gradient(to right, #ffffff, var(--primary-gradient));
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta h2 {
    color: var(--primary-blue);
}
.cta p {
    color: var(--primary-blue);
}

.cta h2::after {
    background-color: rgb(5, 5, 5);
    margin: 0 auto;
    left: 0;
    right: 0;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    font-size: 18px;
}

/* Main Portfolio */
/* Our Work */
.work-section-bg {
    margin-top: -50px;
    background: linear-gradient(to right, #ffffff, var(--primary-gradient));
}
.work-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.work-section-header {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 40px;
    font-size: 2.2rem;
    color: var(--primary-blue);
}

.content-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.left-side-portfolio, .right-side-portfolio {
    flex: 1;
    min-width: 300px;
}

/* Image Card Styles */
.image-card {
    position: relative;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background-image: url('./assets/images/engineering4.png'); /* Replace with the path to your local image */
    background-size: cover;
    background-position: center;
}

.slide-portfolio {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
    transform: scale(0.9);
    background-size: cover;
    background-position: center;
}

.slide-portfolio.active {
    opacity: 1;
    transform: scale(1);
}

/* Text Content Styles */
.right-side h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-blue);
}

.right-side p {
    margin-bottom: 20px;
    line-height: 1.6;
}

/* News */
        .hero-section {
            background-image: url('./assets/images/hero-bg.png');
            background-size: cover;
            background-position: center;
            height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            position: relative;
            text-align: center;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 32, 0.6);
        }
        .hero-content {
            position: relative;
            z-index: 1;
        }
        
        .hero-title {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--text-light);
        }

        .news-section {
            background: linear-gradient(to right, var(--primary-gradient), #ffffff);
        }

        .news-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        .news-card {
            background-color: white;
            border-radius: 0;
            margin-bottom: 20px;
            overflow: hidden;
            border-left: 5px solid var(--primary-blue);
        }
        
        .news-card-content {
            display: flex;
            padding: 20px;
        }
        .news-thumbnail {
            width: 150px;
            min-width: 150px;
            height: 120px;
            margin-right: 20px;
            background-size: cover;
            background-position: center;
        }
        
        .news-details {
            flex: 1;
        }
        
        .news-title {
            font-size: 20px;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 10px;
        }
        
        .news-date {
            font-size: 14px;
            color: #666;
            margin-bottom: 10px;
        }
        
        .news-excerpt {
            color: #333;
            line-height: 1.6;
            margin-bottom: 15px;
        }
        
        .news-full-content {
            display: none;
            padding: 0 20px 20px 190px;
            color: #444;
            line-height: 1.8;
        }
        
        .read-more-btn {
            background-color: var(--primary-blue);
            color: var(--text-light);
            font-weight: 600;
            padding: 5px 15px;
            border-radius: 6px;
            border: none;
            /* border: 2px solid #152b8c; */
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            font-size: 12px;
            display: inline-block;
        }
        
        .read-more-btn:hover {
            background-color: var(--primary-btn);
            color: white;
        }
/* Portfolio */

/* Modern Secondary navigation with glassmorphism */
.secondary-nav1 {
    position: sticky;
    top: 5rem;
    display: flex;
    justify-content: center;
    padding: 0;
    z-index: 99;
    /* backdrop-filter: blur(10px); */
    background: transparent;

    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05); */
}
.secondary-nav1-container {
    max-width: 1200px;
    margin: 0px;
    width: 95%;
    display: flex;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
    border-radius: 9999px; /* Full radius at ends */
    padding: 0.5rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05), 
                inset 0 1px 1px rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.secondary-nav1 a {
    color: #555;
    text-decoration: none;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
    margin: 0 0.25rem;
}
.secondary-nav1 a.active {
    color: #fff;
    background-color: #4361ee;
    box-shadow: 0 4px 10px rgba(67, 97, 238, 0.3);
}

/* Content */
.content {
    margin-top: 2rem;
    padding: 0;
}

/* section {
    min-height: 100vh;
    padding: 4rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
} */

h1 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-blue);
    justify-self: center;
}

/* Section specific styling */
/* Our work */


/* Testimonials */
#testimonials {
    background: linear-gradient(to right, var(--primary-gradient), rgb(255, 255, 255));
}
.testimonials-box {
    max-width: 1200px;
    justify-self: center;
    margin: 10px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.testimonial-quote {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: bold;
}

/* Gallery */
#gallery {
    background: linear-gradient(to right, rgb(255, 255, 255), var(--primary-gradient));
    padding: 10px;
}

.gallery-box {
    margin: 0 auto;
    max-width: 1200px;
    width: 100%;
    margin-bottom: 10px;
}

.filter-container {
    margin: 20px 0;
    position: relative;
    font-family: 'Montserrat';
}

.filter-button {
    padding: 12px 18px;
    background: linear-gradient(135deg, #f9fafb, #ffffff);
    border: 1px solid #d1d5db;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    color: #111827;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 220px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
    cursor: pointer;
    font-family: 'Montserrat';
}

.filter-button:hover {
    background: linear-gradient(135deg, #f3f4f6, #ffffff);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.dropdown-arrow {
    margin-left: 12px;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.filter-button.open .dropdown-arrow {
    transform: rotate(180deg);
}

.filter-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 220px;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
    display: none;
    z-index: 1000;
    overflow: hidden;
    animation: fadeIn 0.2s ease;
}

.filter-menu.active {
    display: block;
}

.filter-option {
    padding: 12px 18px;
    font-size: 15px;
    color: #1f2937;
    transition: background 0.2s, color 0.2s;
    cursor: pointer;
}

.filter-option:hover {
    background: #f9fafb;
    color: #111827;
}

/* Optional animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}

.gallery-item {
    border-radius: 7px;
    overflow: hidden;
    height: 250px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    cursor: pointer;
}

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

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Clients */
/* Reused */
.portfolio-clients-section {
    background: linear-gradient(to right, var(--primary-gradient), #ffffff);
    /* max-width: 1200px; */
    margin: 0px auto;
    padding: 20px;
    text-align: center;
    position: relative;
}

.portfolio-clients-section .section-title {
    color: var(--primary-blue);
    /* font-size: 2.5rem; */
    margin-bottom: 20px;
    /* font-weight: bold; */
}


/* Book-Now Form */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;

    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.modal-content::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
}

.modal-content {
    background: white;
    padding: 0rem;
    border-radius: 12px;
    max-height: 90vh;
    overflow-y: auto;
    width: 90%;
    max-width: 500px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background-color: white;
    width: 100%;
    max-width: 500px;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    transition: all 0.3s ease;
    position: relative;
}

.modal-overlay.active .modal-container {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #4361ee;
}

.modal-header {
    margin-bottom: 1.5rem;
}

.modal-title {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 0.5rem;
}

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

/* Form styling */
.form-group {
    margin-bottom: 1.25rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

input, select, textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #4361ee;
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.1);
}

textarea {
    resize: vertical;
    min-height: 100px;
}

button[type="submit"] {
    background-color: #4361ee;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 500;
    cursor: pointer;
    width: 100%;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(67, 97, 238, 0.3);
    transition: all 0.3s ease;
}

button[type="submit"]:hover {
    background-color: #3651d4;
    box-shadow: 0 6px 15px rgba(67, 97, 238, 0.4);
}

/* Success message */
.success-message {
    display: none;
    text-align: center;
    padding: 2rem 1rem;
}

.success-message .checkmark {
    color: #22c55e;
    font-size: 4rem;
    margin-bottom: 1rem;
}

.success-message h3 {
    margin-bottom: 1rem;
    color: #333;
}


/* Case Studies */
.case-study-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.case-study-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('./assets/images/gallery/g3.jpg') center/cover no-repeat;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.case-study-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--text-light);
}

.case-study-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
}

/* Case Studies Grid2 */
.case-study-grid2 {
    padding: 80px 0;
    background: linear-gradient(to right, var(--primary-gradient), #ffffff);
}

.grid2-title {
    text-align: center;
    margin-bottom: 50px;
}

.grid2-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.grid2-title p {
    max-width: 700px;
    margin: 0 auto;
}

.grid2 {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Case Study Cards */
.case-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.case-card:hover {
    transform: translateY(-5px);
}

.card-img {
    height: 200px;
    background-position: center;
    background-size: cover;
}

.case-card.expanded {
    transform: none;
}

.case-card.expanded .card-img {
    height: 300px;
}

.case-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
}

.case-card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary-blue);
}

.expanded-content {
    display: none;
    margin-top: 20px;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.case-card.expanded .expanded-content {
    display: block;
}

.case-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.tag {
    background: var(--primary-gradient);
    color: var(--primary-blue);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.case-card-content p {
    margin-bottom: 20px;
}

.case-btn {
    display: inline-block;
    padding: 10px 20px;
    background: var(--primary-blue);
    color: var(--text-light);
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: background 0.3s ease;
}

.case-btn:hover {
    background: #004494;
}

/* Case Study Details */
.case-study-details {
    background: white;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: none;
}

.case-study-details.active {
    display: block;
}

.details-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.details-header h3 {
    font-size: 1.8rem;
}

.close-case-btn {
    background: var(--primary-red);
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray);
}

.details-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.details-text h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.details-text p {
    margin-bottom: 20px;
}

.details-img {
    height: 300px;
    background-position: center;
    background-size: cover;
    border-radius: 8px;
}

.results {
    margin-top: 30px;
    background: var(--primary-gradient);
    padding: 20px;
    border-radius: 8px;
}

.results h4 {
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.metric {
    text-align: center;
}

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    font-family: "MontserratAlt";
}

.metric-label {
    font-size: 1rem;
}


/* DOOH Network-Maps */
.network-section {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      display: flex;
      width: 100%;
      max-width: 1200px;
      overflow: hidden;
      padding: 20px;
      gap: 40px;
      margin-bottom: 40px;
    }
    
    .network-left-side {
      flex: 1;
      position: relative;
      min-height: 400px;
    }
    
    .main-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 6px;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
      position: absolute;
      bottom: 0;
    }

    .map-icon {
      position: absolute;
      width: 32px;
      height: 32px;
      animation: float 3s infinite ease-in-out;
      filter: drop-shadow(0 0 8px rgba(255, 107, 107, 0.6));
    }
    
    .icon-1 {
      top: 15%;
      left: 20%;
      animation-delay: 0s;
    }
    
    .icon-2 {
      top: 45%;
      left: 50%;
      animation-delay: 0.5s;
    }
    
    .icon-3 {
      top: 75%;
      left: 80%;
      animation-delay: 1s;
    }
    
    .icon-4 {
      top: 60%;
      left: 30%;
      animation-delay: 1.5s;
    }
    
    .icon-5 {
      top: 25%;
      left: 65%;
      animation-delay: 2s;
    }
    
    @keyframes float {
      0%, 100% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(-15px);
      }
    }
    
    .network-right-side {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 20px 0;
    }
    
    .network-right-side h2 {
      color: var(--primary-blue);
      font-size: 2.5rem;
      margin-bottom: 24px;
      line-height: 1.2;
    }
    
    .network-right-side p {
      color: #000000;
      font-size: 1.1rem;
      line-height: 1.6;
      margin-bottom: 40px;
    }
    
    .explore-button {
      background: linear-gradient(45deg, #3498db, var(--primary-blue));
      color: white;
      border: none;
      border-radius: 10px;
      padding: 14px 32px;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
      width: fit-content;
      text-decoration: none;
      box-shadow: 0 6px 15px rgba(41, 128, 185, 0.4);
    }
    
    .explore-button:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(41, 128, 185, 0.6);
    }
    .explore-button::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
      transform: translateX(-100%);
    }
    
    .explore-button:hover::after {
      animation: glow 1.5s infinite;
    }
    
    @keyframes glow {
      0% {
        transform: translateX(-100%);
      }
      100% {
        transform: translateX(100%);
      }
    }

/* Our Reach Section-About page */
.carrossel-container {
    position: relative;
    display: flex;
    flex-direction: row; /* In case you're stacking items */
    min-height: 100vh;
    background-image: url('/assets/images/core-3.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    color: white;
    overflow: hidden;
}

        .left-section-carrossel {
            flex: 1;
            padding: 4rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 2rem;
            position: relative;
            margin: -100px 0;
        }

        .glass-effect {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-right: 1px solid rgba(255, 255, 255, 0.2);
            z-index: 0;
        }

        .content-carrossel {
            position: relative;
            z-index: 1;
            max-width: 600px;
        }

        .content-carrossel h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: white;
            position: relative;
        }

        .content-carrossel h1::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 200px;
            height: 4px;
            background: linear-gradient(90deg, #ffffff, transparent);
        }

        .content-carrossel p {
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 1rem;
            opacity: 0.9;
        }

        .metrics-container {
            display: flex;
            justify-content: space-between;
            margin: 2rem 0;
        }

        .metric-item {
            text-align: center;
        }

        .metric-number {
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
        }

        .metric-label {
            font-size: 1rem;
            opacity: 0.8;
        }

        .buttons-carrossel {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .buttons-carrossel  a {
            text-decoration: none;
        }

        .carrossel-btn {
            padding: 0.8rem 2rem;
            border: none;
            border-radius: 2rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1rem;
        }

        .carrossel-btn-primary {
            background: linear-gradient(to right, #3a7bd5, #3a6073);
            color: white;
        }

        .carrossel-btn-secondary {
            background: transparent;
            border: 2px solid white;
            color: white;
        }

        .carrossel-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .right-section-carrossel {
            flex: 1;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            overflow: hidden;            
            margin: -80px 0;
            height: 100vh;
        }

        .grid-column-carrossel {
            display: flex;
            flex-direction: column;
            overflow: hidden;
            position: relative;
        }

        .grid-column-carrossel:hover .image-container-carrossel {
            animation-play-state: paused;
        }

        .image-container-carrossel {
            display: flex;
            flex-direction: column;
            animation-duration: 20s;
            animation-timing-function: linear;
            animation-iteration-count: infinite;
            will-change: transform;
        }

        .grid-column-carrossel:nth-child(odd) .image-container-carrossel {
            animation-name: scrollUp;
        }

        .grid-column-carrossel:nth-child(even) .image-container-carrossel {
            animation-name: scrollDown;
        }

        .grid-image {
            width: 100%;
            aspect-ratio: 1/1.3;
            object-fit: contain;
            margin-top: 50px;
        }

        @keyframes scrollUp {
            0% {
                transform: translateY(0);
            }
            100% {
                transform: translateY(-50%);
            }
        }

        @keyframes scrollDown {
            0% {
                transform: translateY(-50%);
            }
            100% {
                transform: translateY(0);
            }
        }


/* Footer */
footer {
    background: linear-gradient(to bottom right, rgb(16, 60, 192), #001020);
    color: white;
    padding: 80px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.footer-column h3 {
    color: white;
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.footer-about p {
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.9rem;
}

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

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

.social-links li {
    margin-right: 15px;
}

.social-links a {
    color: white;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #0056b3;
}

a i {
  font-size: 1.5rem;
  color: var(--text-light);
  margin-right: 1rem;
  transition: color 0.3s ease;
}

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


.logo-footer {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-footer img {
    max-height: 15vh;
    width: auto;
}

.logo-footer span {
    color: #333;
}

.footer-links a i {
    font-size: 1rem;
}

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

/* Animation classes */
.service-card.animate,
.project-card.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .main-services-grid,
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        gap: 0;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav-item {
        margin: 0;
        padding: 20px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .about-content,
    .contact-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    section {
        padding: 60px 0;
    }

    /* hero */
    
    .hero {
        flex-direction: column-reverse;
        min-height: 100vh;
    }

      .left-side {
        width: 100%;
        height: 60vh;
      }
      .right-side {
        width: 100%;
        height: 40vh;
        margin-left: 0px;
      }

      .left-top, .left-top-bold {
        font-size: 1.2rem;
        text-align: center;
      }

      .left-bottom {
        text-align: center;
      }

      .left-bottom h2 {
        margin-left: 0;
      }

      .buttons {
        justify-content: center;
      }
    .service-card {
      flex-direction: column;
      text-align: center;
    }
       .service-card.reverse {
      flex-direction: column;
    }
       .service-content h3 {
      font-size: 1.3rem;
    }

    .clients-grid {
        grid-template-columns: repeat(6, 1fr);
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1.1rem;
        padding: 0 20px;
    }

    /* products */
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .card-content {
        height: 140px;
    }
    
    .service-description {
        opacity: 1;
    }

    /* Vision  Mission */
    .vision-mission-container {
        flex-direction: column;
        gap: 2rem;
      }
    
      .vm-card {
        flex: 1 1 100%;
      }

      .vision-mission-section {
        padding: 1rem;
      }

    /* Nav- */
    .dropdown-menu {
        position: static;
        box-shadow: none;
        background: none;
        display: none;
      }
    
      .dropdown:hover .dropdown-menu {
        display: block;
      }
    
      .dropdown-menu a {
        padding-left: 2rem;
        background: none;
        color: #333;
      }


    /* SubDivision */
    .division-header h1 {
        font-size: 36px;
    }
    .overview {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .carousel-item img {
        height: 350px;
    }
    .overview h2, .features h2, .portfolio h2 {
        font-size: 23px;
    }

    /* Main Portfolio */
    /* our work */
    .work-section-header {
        font-size: 2rem;
    }
    
    .content-wrapper {
        flex-direction: column;
    }
    
    .left-side, .right-side {
        width: 100%;
    }
    
    .image-card {
        height: 300px;
    }

    /* News */
    .hero-title {
        font-size: 24px;
    }
    
    .news-card-content {
        flex-direction: column;
    }
    
    .news-thumbnail {
        width: 100%;
        height: 180px;
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .news-full-content {
        padding: 0 20px 20px 20px;
    }

    /* company profile */
    .qr-card-header {
        flex-direction: column;
    }
    .qr-card-header p {
      font-size: 1rem;
      text-align: center;
    }


    /* Core capabilities */
    .media-section {
        flex-direction: column;
        height: auto;
    }
        .left-column {
        height: 400px;
    }
        .right-column .video-card {
        height: 300px;
    }
        .right-column .image-card {
        height: 200px;
    }
    .profile-circle {
        width: 60px;
        height: 60px;
    }


    /* Featured Services */    
    .service-card1 {
        grid-column: span 12;
    }
    
    .service-card1 .card1-flex {
        grid-template-columns: 40% 60%; /* Adjusted for better mobile view */
    }
    
    .card1-content {
        padding: 15px;
    }
    
    .card1-title h2 {
        font-size: 18px;
    }
    
    .card1 p {
        font-size: 14px;
    }
    
    .dooh-card1 .card1-title h2 {
        font-size: 24px;
    }

    /* Portfolio */
    .secondary-nav1 {
        top: 4rem;
        display: flex;
        justify-content: center;
        padding: 0;
        /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05); */
    }
    .secondary-nav1-container {        
        overflow-x: auto;
        justify-content: flex-start;
        padding: 0.5rem;

        max-width: 1200px;
        margin: 10px;
        width: 100%;
        display: flex;
        justify-content: center;
        background-color: rgba(255, 255, 255, 0.5);
        backdrop-filter: blur(5px);
        border-radius: 9999px; /* Full radius at ends */
        padding: 0.1rem;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05), 
                    inset 0 1px 1px rgba(255, 255, 255, 0.9);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    .secondary-nav1 a {        
        white-space: nowrap;
        font-size: 0.75rem;

        color: #555;
        text-decoration: none;
        padding: 0.5rem 0.6rem;
        border-radius: 9999px;
        transition: all 0.3s ease;
        font-weight: 500;
        position: relative;
        margin: 0 0.25rem;
    }
    .secondary-nav1 a.active {
        color: #fff;
        background-color: #4361ee;
        box-shadow: 0 4px 10px rgba(67, 97, 238, 0.3);
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
        gap: 0.5rem;
        margin-bottom: 20px;
    }

    .gallery-item {
        border-radius: 3px;
        height: 70px;
    }
    
    .filter-button {
        font-size: 14px;
        padding: 8px 12px;
    }
    
    .filter-menu {
        width: 180px;
    }
    
    .filter-option {
        padding: 8px 12px;
        font-size: 14px;
    }


    /* Book-Now Form */
    .modal-container {
        width: 100%;
        padding: 1.5rem;
    }


    /* Case Studies */
    .case-study-hero h1 {
        font-size: 2.2rem;
    }
    
    .grid2 {
        grid-template-columns: 1fr;
    }
    
    .details-content {
        grid-template-columns: 1fr;
    }
    
    .metrics {
        grid-template-columns: 1fr;
    }


    /* DOOH Network Section-maps */
    .network-section {
        flex-direction: column;
        padding: 15px;
      }
      
      .network-left-side {
        min-height: 300px;
        margin-bottom: 0px;
      }
    

      /* Our Reach Section-About page */
      .carrossel-container {
                /* flex-direction: column;
                height: auto; */

                background-position: top center;
                background-size: cover;
                min-height: 130vh; /* Safe viewport height on mobile */
            }
            
            .left-section-carrossel {
                padding: 1rem;
            }
            
            .metrics-container {
                flex-direction: column;
                gap: 0.5rem;
            }

            .metric-number {
                font-size: 2rem;
                margin-bottom: 0;
            }
            
            .right-section-carrossel {
                grid-template-columns: repeat(0, 0fr);
            }

            .left-section-carrossel {
                margin-top: -60px;
            }

            .right-section-carrossel {
                /* visibility: hidden; */
            }

            .carrossel-btn {
                padding: 0.5rem 2rem;
                border-radius: 2rem;
                font-weight: bold;
                cursor: pointer;
                transition: all 0.3s ease;
                font-size: 1rem;
            }
    
}

@media (max-width: 992px) {
    .dooh-card1 .card1-flex {
        grid-template-columns: 1fr;
    }
    
    .dooh-card1 .card1-img {
        height: 220px;
    }
    
    .ooh-card1 .card1-flex {
        flex-direction: column;
    }
    
    .ooh-card1 .card1-img {
        width: 100%;
        height: 220px;
    }
}

@media (max-width: 576px) {
    .service-card1 .card1-flex {
        grid-template-columns: 1fr;
    }
    
    .service-card1 .card1-img {
        height: 180px;
    }
}

@media (max-width: 576px) {
    .main-services-grid,
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .hero {
        height: 70vh;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
}



/* Initial state for animations */
.service-card,
.project-card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}