.horizontal-items-container {
    display: flex;
    flex-wrap: wrap; /* Allows items to wrap to next row */
    justify-content: space-between; /* Distributes items evenly */
    gap: 30px; /* Reduced gap for better 3-column layout */
    padding: 30px;
    max-width: 1200px;
    margin: 0 auto 20px;
  }
  
  .keyimage-text-item {
    display: flex;
  flex-direction: row;
  align-items: flex-start;
  width: calc(33.33% - 20px); /* Forces 3 items per row accounting for gap */
  min-width: 250px; /* Minimum width before wrapping */
  }
  
  .keycircle-image {
    width: 70px; /* Slightly smaller for better proportion */
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    flex-shrink: 0;
    border: 2px solid #f0f0f0; /* Optional subtle border */
  }
  
  .keycircle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .keytext-content {
    flex: 1;
   
  }
  
  .keytext-content h3 {
    margin: 0 0 8px 0;
    font-size: 18px;
    color: #ffff;
  }
  
  .keytext-content p {
    margin: 0;
    font-size: 14px;
    color: #ffffff;
    line-height: 1.4;
  }
  
  /* Responsive adjustments */
  @media (max-width: 1024px) {
    .horizontal-items-container {
      flex-wrap: wrap;
      justify-content: center;
    }
    .keyimage-text-item {
      min-width: 45%;
      margin-bottom: 20px;
    }
  }
  
  @media (max-width: 600px) {
    .keyimage-text-item {
      min-width: 100%;
    }
  }
.IBS-header {
    background-color: #0623b1;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.IBS-nav {
    display: flex;
    justify-content: center;
    background-color: #444;
    padding: 10px;
}

.IBS-nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
}

.IBS-hero {
background-image: url('landing.jpg');
background-size: cover;
background-position: center;
color: #fff;
text-align: center;
padding: 100px 20px;
position: relative; /* Required for absolute positioning of the image box */
height: 400px; /* Adjust height as needed */
}


.IBS-hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
    font-family: 'Orbitron', sans-serif;
    color:#004d9f
}

.IBS-hero p {
    font-size: 1.2em;
    margin-bottom: 40px;
}

.IBS-hero button {
    background-color: #007BFF;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 1em;
    cursor: pointer;
}

.IBS-hero-content {
position: relative;
z-index: 2;
}


.IBS-video-container {
position: relative;
width: 100%;
aspect-ratio: 16 / 9; /* 16:9 aspect ratio */
margin: 20px auto;
border-radius: 10px;
overflow: hidden;
}

.IBS-video-container video {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
border-radius: 10px;
}
.unmute-button {
position: absolute;
bottom: 10px;
right: 10px;
background: rgba(0, 0, 0, 0.5);
border: none;
color: #fff;
padding: 8px;
border-radius: 50%;
cursor: pointer;
z-index: 2;
}

.unmute-button:hover {
background: rgba(0, 0, 0, 0.8);
}

.IBS-section {
    padding: 50px 200px;
    text-align: left;
    background-color: #f9f9f9;
    position: relative; /* Ensure the section is a positioning context */
    overflow: hidden; /* Prevent video from overflowing */

}

.IBS-section h2 {
    font-size: 1.5em;
    margin-bottom: 40px;
    font-family: 'Orbitron', sans-serif;
    color:#0623b1;
    font-weight: bold; /* Bold header */
    border-bottom: none;
}

.IBS-section p {
    font-size: 1em;
    padding: 100,100px;
    line-height: 1.6;
    position: left;
    max-width: 250%; /* Limit paragraph width for better readability */
    margin-bottom: 30px;
}

/* Small phones (400px and up) */
@media (min-width: 400px) {
    .IBS-section {
        padding: 20px;
    }
    
    .IBS-section h2 {
        font-size: 1.25rem;
    }
    
    .IBS-section p {
        font-size: 1rem;
    }
}

/* Phablets (550px and up) */
@media (min-width: 550px) {
    .IBS-section {
        padding: 25px 30px;
    }
    
    .IBS-section h2 {
        font-size: 1.3rem;
    }
    
    .IBS-section p {
        font-size: 1rem;
    }
}

/* Tablets (768px and up) */
@media (min-width: 768px) {
    .IBS-section {
        padding: 40px 80px;
    }
    
    .IBS-section h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .IBS-section p {
        text-align: justify;
        line-height: 1.6;
    }
}

/* Desktops (992px and up) */
@media (min-width: 992px) {
    .IBS-section {
        padding: 50px 200px;
    }
    
    .IBS-section h2 {
        font-size: 1.7rem;
    }
    
    .IBS-section p {
        font-size: 1.5rem;
    }
}

.IBS-card-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 30px;
}

.IBS-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 30%;
    padding: 20px;
    margin: 10px;
    text-align: left;
}

.IBS-card h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    font-family: 'Orbitron', sans-serif;
    color:#004d9f
}

.IBS-card p {
    font-size: 1em;
    line-height: 1.5;
}

.IBS-footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

.IBS-footer a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
}
/* Tablet Styles */
@media (min-width: 768px) {
    .IBS-hero h1 {
        font-size: 3em;
    }
    
    .IBS-section {
        padding: 50px 40px;
    }
    
    .IBS-card {
        width: 45%;
        margin: 10px;
    }
    
    .IBS-section p {
        max-width: 80%;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .IBS-section {
        padding: 50px 300px;
    }
    
    .IBS-card {
        width: 30%;
    }
    .IBS-section h2 {
        font-size: 2em;
    }
    .IBS-section p {
        max-width: 90%;
    }
    
    .IBS-nav {
        flex-wrap: nowrap;
    }
}

/* Large Desktop Styles */
@media (min-width: 1440px) {
    .IBS-section {
        padding: 50px 300px;
    }
}

/* Mobile-specific adjustments */
@media (max-width: 480px) {
    .IBS-hero {
        padding: 60px 20px;
        min-height: 300px;
    }
    
    .IBS-hero h1 {
        font-size: 2em;
    }
    
    .IBS-hero p {
        font-size: 1em;
    }
    
    .IBS-nav a {
        margin: 0 8px;
        font-size: 0.9em;
    }
    
    .IBS-footer a {
        display: block;
        margin: 5px 0;
    }
}
/* Moblie Styles */
@media (min-width: 480px) {
    .IBS-section {
        padding: 50px 40px;
    }
    
    .IBS-card {
        width: 30%;
    }
    .IBS-section h2 {
        font-size: 2em;
    }
    .IBS-section p {
        max-width: 90%;
    }
    
    .IBS-nav {
        flex-wrap: nowrap;
    }
}
.slider-container {
    width: 100%;
    height: 1000vh;
    margin-top: 0; 
    background-image: linear-gradient(to top right, #e2eff9, #ffff);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    font-family: sans-serif;
    z-index: 1;
    font-size: small;
}

.slider {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    width: 100%;
    height: 1000px;
    overflow: hidden;
    margin-bottom: 70px;
}

.item {
    position: absolute;
    width: 350px;
    height: auto;
    min-height: 400px;
    background-color: #dfefff;
    border-radius: 10px;
    border: 2px solid #042664;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    box-sizing: border-box;
    left: calc(45% - 110px);
    top: 80px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    transition: 0.5s;
    margin-bottom: 70px;
}

.productimage-box {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    border: 1.5px solid #fafbfd;
    margin-bottom: 20px;
    overflow: hidden;
    background-color: #f0f0f0;
}

.productimage-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.item h1 {
    margin: 10px 0;
    font-size: 2.5rem;
    font-family: 'Orbitron', sans-serif;
    color: #042664;
    text-align: center;
}

.item p {
    margin: 0;
    font-size: 1.5rem;
    text-align: center;
    padding: 0 12px;
}

#next, #prev {
    position: absolute;
    top: 40%;
    color: #fff;
    background-color: transparent;
    border: none;
    font-size: xxx-large;
    font-family: monospace;
    font-weight: bold;
    left: 400px;
    cursor: pointer;
}

#next {
    left: unset;
    right: 400px;
}


.ETCD-header {
    position: relative;
    height: 400px;
    overflow: hidden;
    margin-bottom: 20px;

    
}

.ETCD-header-image10 {
    background-color: #15151593;
    background-image: url('../images/Projects/bannerbackground.svg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay; /* This blends the gradient with the image */
    height: 100%;
    width: 100%;
}

.ETCD-header-image {
    background-image: url('../images/Services/portrait-engineer-job-site-work-hours_23-2151589648.jpg');
    background-size: cover;
    background-position: center;
    height: 100%;
    width: 100%;
}
.ETCD-header-image1 {
    background-image: url('../images/Services/i-Motor-PB-Data-V2.jpg');
    background-size: cover;
    background-position: center;
    height: 100%;
    width: 100%;
}
.ETCD-header-image2 {
    background-image: url('../images/Services/Untitled (A2 (Landscape)).svg');
    background-size: cover;
    background-position: center;
    height: 100%;
    width: 100%;
}
.ETCD-header-image3 {
    background-image: url('../images/Services/Gh.png');
    background-size: cover;
    background-position: center;
    height: 100%;
    width: 100%;
}
.ETCD-header-image4 {
    background-image: url('../images/Services/hr.jpg');
    background-size: cover;
    background-position: center;
    height: 100%;
    width: 100%;
}
.ETCD-header-image5 {
    background-image: url('../images/Services/Hassan-primeguage-vs-client-ptbdtiu4uofiz98sb828bd67djufdziqt4p9o8m60w.jpeg');
    background-size: cover;
    background-position: center;
    height: 100%;
    width: 100%;
}
.ETCD-header-image6 {
    background-color: #15151593;
    background-image: url('../images/Products/IBS\ image.svg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay; /* This blends the gradient with the image */
    height: 100%;
    width: 100%;
}
.ETCD-header-image7 {
    background-color: #15151593;
    background-image: url('../images/Products/PulsebyPG.svg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay; /* This blends the gradient with the image */
    height: 100%;
    width: 100%;
}

.ETCD-header-image8 {
    background-color: #15151593;
    background-image: url('../images/Products/SmartCapture.svg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay; /* This blends the gradient with the image */
    height: 100%;
    width: 100%;
}

.ETCD-header-image9 {
    background-color: #15151593;
    background-image: url('../images/Products/Numberline.svg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay; /* This blends the gradient with the image */
    height: 100%;
    width: 100%;
}


.ETCD-header-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.8);
    padding: 20px;
    text-align: center;
    width: 50%;
    border-radius: 10px;
    
}

.ETCD-header-content-section1 {
    width: 100%;
    padding: 5px 20px;
    background: linear-gradient(to top right, #ffff, #ffff);
    text-align: center;
    position: relative;
    margin: 0 auto;
    box-sizing: border-box;
    border-bottom: 1px solid #e0e0e0;
}


/* Header Content Section - Standalone */
.ETCD-header-content-section {
    width: 100%;
    padding: 60px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
    text-align: center;
    position: relative;
    margin: 0 auto;
    box-sizing: border-box;
    border-bottom: 1px solid #e0e0e0;
}

.ETCD-header-content1 {
    max-width: 1200px;
    max-height: 10px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.0.5);
    position: relative;
    z-index: 1;
    
}
.ETCD-header-content1 h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #0623b1;
    font-family: 'Orbitron', sans-serif;
    max-height: none;
    text-decoration: none !important;
    text-decoration: none !important;
    border-bottom: none !important;
    outline: none;
    box-shadow: none;


}

.ETCD-header-content1 p {
    font-size: 1.5rem;
    color: #333;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
}

/* Decorative elements (optional) */
.ETCD-header-content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/images/tech-pattern.png') center/cover;
    opacity: 0.03;
    z-index: 0;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .ETCD-header-content1 h2 {
        font-size: 2rem;
    }
    
    .ETCD-header-content1 p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .ETCD-header-content-section {
        padding: 40px 15px;
    }
    
    .ETCD-header-content1 {
        padding: 30px 20px;
    }
    
    .ETCD-header-content1 h2 {
        font-size: 1.8rem;
    }
    
    .ETCD-header-content1 p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .ETCD-header-content1 h2 {
        font-size: 1.5rem;
    }
    
    .ETCD-header-content1 p {
        font-size: 0.9rem;
    }
}

.ETCD-header-content h1{
    font-size: 2.0em;
    margin-bottom: 20px;
    font-family: 'Orbitron', sans-serif !important;
    color: #0623b1;
    font-weight: bold; /* Bold header */
}

.ETCD-description {
    padding: 40px;
    text-align: left;
    font-size: 1em;
    background: #ffff;
}
.ETCD-description p {
    margin-bottom: 20px;
    font-size: 1em;
}

.ETCD-what-we-do{
    padding: 40px;
    background: #f9f9f9;
}
.ETCD-what-we-do2{
    padding: 40px;
    background: #1f3d80;
}

.ETCD-what-we-do1{
    padding: 40px;
    background: #ffffff;
}


.ETCD-sectors{
    padding: 130px;
    background: #1f3d80;
    margin-bottom: 40px; /* Space between top section and cards */

} 
.ETCD-key-projects {
    padding: 40px;
    background: #ffff;
    margin-bottom: 50px; /* Space between top section and cards */

}
/* Top Section: Description and Image */
.ETCD-content-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* Align items to the top */
    margin-bottom: 70px; /* Space between top section and cards */
}
.ETCD-content-top1 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* Align items to the top */
    margin-bottom: 20px; /* Space between top section and cards */
}
.ETCD-content-top1 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* Align items to the top */
    margin-bottom: 20px; /* Space between top section and cards */
}

.ETCD-subheader-left {
    width: 50%; /* Adjust as needed */
    text-align: left;
    margin-right: 90px; /* Add padding between text and image */
}
.ETCD-subheader-left2 {
    width: 2000%; /* Adjust as needed */
    text-align: center;
    margin-right: 0px; /* Add padding between text and image */
    display: flex; /* Use flexbox for centering */
    flex-direction: column; /* Stack content vertically */
    justify-content: center; /* Center content vertically */
    align-items: center; /* Center content horizontally */
}

.ETCD-subheader-left2 h2 {
    font-family: 'Orbitron', sans-serif !important;
    color: #0623b1;
    font-size: 1.5em;
    margin-bottom: 40px;
    font-weight: bold; /* Bold header */
}

.ETCD-subheader-left2 h3 {
    font-family: 'Orbitron', sans-serif !important;
    color: #0623b1;
    font-size: 1.5em;
    margin-bottom: 20px;
    font-weight: bold; /* Bold header */
}

.ETCD-subheader-left2 p {
    margin: 0; /* Remove default margin */
    font-size: 1.2em; /* Adjust description size */
    color: #151515; /* Optional: Adjust text color */
    margin-bottom: 20px;
    text-align: justify; /* Justify text alignment */
    max-width: 80%; /* Limit paragraph width for better readability */
}


.ETCD-subheader-left h2 {
    font-family: 'Orbitron', sans-serif !important;
    color: #0623b1;
    font-size: 1.5em;
    margin-bottom: 40px;
    font-weight: bold; /* Bold header */
    border-bottom: #151515;
    border-bottom: 1px solid;
}

.ETCD-subheader-left h3 {
    font-family: 'Orbitron', sans-serif !important;
    color: #0623b1;
    font-size: 1.5em;
    margin-bottom: 20px;
    font-weight: bold; /* Bold header */
}
.ETCD-subheader-left strong {
    font-family: 'Orbitron', sans-serif !important;
    color: #0623b1;
    font-size: 0.9em;
    font-weight: bold; /* Bold header */
}
.ETCD-subheader-left1 h3 {
    font-family: 'Orbitron', sans-serif !important;
    color: #fcfcfc;
    font-size: 1.5em;
    margin-bottom: 20px;
    font-weight: bold; /* Bold header */
    border-bottom: #151515;
    border-bottom: 1px solid;
}
.ETCD-subheader-left1 p {
    margin: 0; /* Remove default margin */
    font-size: 0.9em; /* Adjust description size */
    color: #fcfcfc; /* Optional: Adjust text color */
    margin-bottom: 20px;
    align-content: justify;
}

.ETCD-subheader-left p {
    margin: 0; /* Remove default margin */
    font-size: 1.1em; /* Adjust description size */
    color: #2e2e2e; /* Optional: Adjust text color */
    margin-bottom: 10px;
    text-align: justify;

}
.ETCD-image-right {
    display: inline-block; /* Make the container shrink to fit the image */
    width: auto; /* Allow the container to adjust to the image size */
    max-width: 100%; /* Ensure the container doesn't exceed its parent's width */
    margin-top: 40px; /* Space between image and text */
}
.ETCD-image-right4 {
    display: inline-block; /* Make the container shrink to fit the image */
    width: auto; /* Allow the container to adjust to the image size */
    max-width: 100%; /* Ensure the container doesn't exceed its parent's width */
    margin-top: 40px; /* Space between image and text */
}
.ETCD-image-right1 {
    display: inline-block; /* Make the container shrink to fit the image */
    width: auto; /* Allow the container to adjust to the image size */
    max-width: 100%; /* Ensure the container doesn't exceed its parent's width */
    margin-top: 40px; /* Space between image and text */
}

.ETCD-image-right img {
    width: 750px; /* Let the image maintain its original size */
    height: 350px; /* Maintain aspect ratio */
    max-width: 100%; /* Ensure the image doesn't exceed the container's width */
    border-radius: 10px; /* Optional: Add rounded corners */
}
.ETCD-image-right4 img {
    width: 750px; /* Let the image maintain its original size */
    height: 550px; /* Maintain aspect ratio */
    max-width: 100%; /* Ensure the image doesn't exceed the container's width */
    border-radius: 10px; /* Optional: Add rounded corners */
}
.ETCD-image-right1 img {
    width: 750px; /* Let the image maintain its original size */
    height: 250px; /* Maintain aspect ratio */
    max-width: 100%; /* Ensure the image doesn't exceed the container's width */
    border-radius: 10px; /* Optional: Add rounded corners */
}


/* Card Container */
.ETCD-card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px; /* Space between cards */
    justify-content: center; /* Center cards horizontally */
    padding: 20px 0; /* Add some padding at the top and bottom */
}
/* Individual Cards */
.ETCD-card {
    display: flex;
    flex-direction: column; /* Stack children vertically */
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 22%; /* four cards per row */
    padding: 10px; /* Add padding inside the card */
    box-sizing: border-box; /* Ensure padding is included in the width */
    aspect-ratio: 1/1; /* Makes the card square */
    min-height: 100px; /* Ensures a minimum height */
}
.ETCD-card1 {
    display: flex;
    flex-direction: column; /* Stack children vertically */
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 22%; /* four cards per row */
    padding: 10px; /* Add padding inside the card */
    box-sizing: border-box; /* Ensure padding is included in the width */
    min-height: 100px; /* Ensures a minimum height */
}

.ETCD-card-image {
    width: 100%; /* Image takes full width of the card */
    height: 50%; /* Maintain aspect ratio */
    aspect-ratio: 1/1; /* Makes the image square */
}

.ETCD-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ETCD-card-content {
    padding: 15px;
    text-align: left; /* Align text to the left */
}

.ETCD-card-content h3 {
    margin: 0 0 10px 0; /* Space below the header */
    font-size: 1.2em; /* Adjust header size */
    font-family: 'Orbitron', sans-serif !important;
    color: #0623b1;
}

.ETCD-card-content p {
    margin: 0; /* Remove default margin */
    font-size: 0.7em; /* Adjust description size */
    color: #555; /* Optional: Adjust text color */
}


.ETCD-sectors .ETCD-image-carousel {
    position: relative;
    width: 40%;
    float: right;
    margin-right: 20px;
    margin-bottom: 70px; /* Space between carousel and cards */

}
.ETCD-subheader-right h2 {
    font-family: 'Orbitron', sans-serif !important;
    color: #0623b1;
    font-size: 1.5em;
    margin-bottom: 40px;
    margin: 0 0 9px 0; /* Space below the header */
    
}
.ETCD-subheader-right p {
    margin: 0; /* Remove default margin */
    font-size: 0.9em; /* Adjust description size */
    color: #555; /* Optional: Adjust text color */
    margin-bottom: 10px;
}
.ETCD-bullet-points li {
    margin: 0; /* Remove default margin */
    font-size: 0.9em; /* Adjust description size */
    color: #fcfcfc; /* Optional: Adjust text color */
    margin-bottom: 10px;
}
.ETCD-carousel {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 10px;
}

.ETCD-carousel-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s;
}

.ETCD-carousel-image.active {
    opacity: 1;
}

.ETCD-carousel-prev, .ETCD-carousel-next {
    position: absolute;
    top: 150%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 1.5em; /* Larger arrow size */
}

.ETCD-carousel-prev {
    left: 10px; /* Position the left arrow on the left side */
}

.ETCD-carousel-next {
    right: 10px; /* Position the right arrow on the right side */
}
.ETCD-bullet-points {
    list-style-type: none;
    padding: 0;
}

.ETCD-bullet-points li {
    background: url('../images/Services/ED\ \(1\).png') no-repeat left top 5px; /* Adjust bullet position */
    background-size: 20px 20px; /* Set the size of the bullet image */
    padding-left: 30px; /* Adjust space for the smaller bullet */
    margin-bottom: 20px; /* Space between list items */
}

.ETCD-bullet-points h4 {
    font-family: 'Orbitron', sans-serif !important;
    color: #fcfcfc; /* Header color */
    font-size: 1.2em; /* Header font size */
    
}

.ETCD-bullet-points p {
    font-size: 0.9em; /* Description font size */
    color: #1c1b1b; /* Description color */
    margin: 0; /* Remove default margin */
}
.ETCD-bullet-points1 {
    list-style-type: none;
    padding: 0;
}

.ETCD-bullet-points1 li {
    background: url('../images/Services/ED.png') no-repeat left top 5px; /* Adjust bullet position */
    background-size: 20px 20px; /* Set the size of the bullet image */
    padding-left: 30px; /* Adjust space for the smaller bullet */
    margin-bottom: 20px; /* Space between list items */
}

.ETCD-bullet-points1 h4 {
    font-family: 'Orbitron', sans-serif !important;
    color: #0623b1; /* Header color */
    font-size: 1.2em; /* Header font size */
    
}

.ETCD-bullet-points1 p {
    font-size: 0.9em; /* Description font size */
    color: #0623b1; /* Description color */
    margin: 0; /* Remove default margin */
}

.ETCD-project-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.ETCD-project-card {
    display: flex;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 48%;
    width: calc(50% - 10px); /* 50% width minus half the gap */
    margin-bottom: 20px;
}

.ETCD-project-image {
    width: 40%;
    padding-left: 10px;
    padding-top: 10px;
}

.ETCD-project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ETCD-project-content {
    padding: 20px;
    width: 60%;
}

.ETCD-project-content h3 {
    font-family: 'Orbitron', sans-serif !important;
    color: #0623b1 !important;
    font-size: 1.5em;
    margin-bottom: 20px;
}
.ETCD-project-content p {
    margin: 0; /* Remove default margin */
    font-size: 0.9em; /* Adjust description size */
    color: #2e2e2e; /* Optional: Adjust text color */
    margin-bottom: 20px;
    text-align: justify;

}

.ETCD-visit-site {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background: #007BFF;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}
/* Mobile Responsiveness */
@media (max-width: 768px) {
    /* Header Section */
    .ETCD-header-content {
        width: 90%; /* Make the content wider on mobile */
        padding: 15px; /* Reduce padding */
    }

    .ETCD-header-content h1 {
        font-size: 1.5em; /* Reduce font size */
    }

    /* Description Section */
    .ETCD-description {
        padding: 20px; /* Reduce padding */
    }

    .ETCD-description p {
        font-size: 0.9em; /* Reduce font size */
    }

    /* What We Do Section */
    .ETCD-content-top {
        flex-direction: column; /* Stack description and image vertically */
        margin-bottom: 40px; /* Reduce margin */
    }
    .ETCD-content-top1 {
        flex-direction: column; /* Stack description and image vertically */
        margin-bottom: 40px; /* Reduce margin */
    }

    .ETCD-subheader-left {
        width: 100%; /* Full width for description */
    }

    .ETCD-image-right {
        width: 100%; /* Full width for image */
        margin-top: 20px; /* Reduce margin */
    }

    /* Card Container */
    .ETCD-card-container {
        gap: 15px; /* Slightly reduce gap between cards */
        flex-direction: column; /* Stack cards vertically */
    }

    .ETCD-card,
    .ETCD-card1 {
        width: 100%; /* Full width cards */
        max-width: 100%; /* Ensure no overflow */
        aspect-ratio: unset; /* Flexible height */
        height: auto; /* Auto height based on content */
        padding: 15px; /* Adjust padding for mobile */
    }


    .ETCD-card-image {
        height: 180px; /* Fixed but reasonable height for mobile */
        object-fit: cover; /* Ensure images look good */
    }

    /* Sectors Section */
    .ETCD-sectors .ETCD-image-carousel {
        width: 100%; /* Full width for carousel */
        float: none; /* Remove float */
        margin-right: 0; /* Remove margin */
        margin-bottom: 20px; /* Add margin below carousel */
    }

    .ETCD-carousel {
        height: 200px; /* Reduce carousel height */
    }

    /* Key Projects Section */
    .ETCD-project-cards {
        flex-direction: column; /* Stack project cards vertically */
        gap: 20px; /* Space between stacked cards */
    }

    .ETCD-project-card {
        width: 100%; /* Full width for project cards */
        flex-direction: column; /* Stack image and content */
    }

    .ETCD-project-image {
        width: 100%; /* Full width for project image */
        height: 200px; /* Reasonable fixed height */
    }

    .ETCD-project-content {
        width: 100%; /* Full width for project content */
        padding: 15px; /* Reduce padding */
    }

    .ETCD-project-content h3 {
        font-size: 1.25em; /* Reduce font size */
        margin-bottom: 15px; /* Reduce margin */
    }

    /* General Adjustments */
    .ETCD-what-we-do, .ETCD-sectors, .ETCD-key-projects {
        padding: 20px; /* Reduce padding */
    }

    .ETCD-subheader-left h2, .ETCD-subheader-right h2 {
        font-size: 1.2em; /* Reduce font size */
        margin-bottom: 20px; /* Reduce margin */
    }

    .ETCD-subheader-right p, .ETCD-bullet-points li {
        font-size: 0.8em; /* Reduce font size */
    }

    .ETCD-visit-site {
        padding: 8px 16px; /* Reduce button padding */
        font-size: 0.9em; /* Reduce button font size */
    }
}
.ETCD-button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1em;
    color: #0623b1; /* Blue text color */
    background-color: transparent; /* No fill color */
    border: 2px solid #0623b1; /* Blue border */
    border-radius: 5px; /* Rounded corners */
    text-decoration: none; /* Remove underline */
    font-family: 'Orbitron', sans-serif; /* Match the font */
    font-weight: bold; /* Bold text */
    position: relative; /* For the arrow */
    transition: all 0.3s ease; /* Smooth hover effect */
}

/* Arrow using pseudo-element */
.ETCD-button::after {
    content: '→'; /* Arrow symbol */
    margin-left: 10px; /* Space between text and arrow */
    transition: margin-left 0.3s ease; /* Smooth arrow movement */
}

/* Hover effect */
.ETCD-button:hover {
    color: #ffffff; /* White text on hover */
    background-color: #0623b1; /* Blue background on hover */
}

.ETCD-button:hover::after {
    margin-left: 15px; /* Move arrow further on hover */
}


.preproduct-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h1, h2, h3 {
    color: #333;
}
h1 {
    text-align: center;
    margin-bottom: 20px;
}
h2 {
    margin-top: 40px;
    border-bottom: 2px solid #333;
    padding-bottom: 10px;
}
h3 {
    margin-top: 20px;
}
.preproduct-section {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
}
.preproduct-content {
    flex: 1;
    margin-right: 20px;
}
.preproduct-image {
    flex: 0 0 300px;
    background-color: #e0e0e0;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #666;
}
.preproduct-image img {
    max-width: 100%;
    height: auto;
}
.preicon-list {
    list-style-type: none;
    padding: 0;
}
.preicon-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}
.preicon-list li::before {
    content: "✔️";
    margin-right: 10px;
    font-size: 18px;
}
.prebtn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
}
.prebtn:hover {
    background-color: #555;
}

/* Client Stories Cards */
        .client-stories-container {
            display: flex;
            gap: 40px; /* Space between cards */
            margin-top: 20px;
            overflow-x: auto; /* Enable horizontal scrolling if needed */
            justify-content: center; /* Center cards horizontally */
            align-items: center; /* Center cards vertically (if needed) */
            width: 100%; /* Ensure the container takes full width */
            padding: 10px 0; /* Add some padding for better spacing */
        }
.preclient-stories-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 15px;
    width: 6000px; /* Smaller width for horizontal cards */
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.preclient-stories-card img {
    width: 60px;
    height: 60px;
    border-radius: 50%; /* Circular image */
    margin-bottom: 10px;
}

.preclient-stories-card .stars {
    color: #ffcc00; /* Star color */
    font-size: 1.2em;
    margin-bottom: 10px;
}

.preclient-stories-card p {
    margin: 0;
    font-style: italic;
    color: #555;
    font-size: 0.8em; /* Smaller text for smaller cards */
    text-align: center;
}

.cookie-consent {
    position: fixed;
    bottom: -100%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 800px; /* Increased width for more rectangular shape */
    height: auto; /* Reduced height */
    min-height: 120px; /* Minimum height */
    background: white;
    padding: 25px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    border-radius: 8px;
    transition: bottom 0.5s ease-out;
    z-index: 1000;
    font-family: 'Orbitron', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cookie-consent.active {
    bottom: 20px;
}

.cookie-consent h3 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    margin: 0 0 15px 0;
    color: #0623b1;
    font-size: 2.5rem; 
}

.cookie-consent p {
    font-weight: 400;
    margin: 0 0 20px 0;
    line-height: 1.4;
}

.dialog-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    font-family: 'Orbitron', sans-serif;
}

.dialog-box {
    background: white;
    padding: 30px; /* Generous padding inside the box */
    border-radius: 8px;
    position: fixed; /* Changed to fixed for overlay positioning */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Perfect centering */
    width: auto; /* Width adjusts to content */
    min-width: 300px; /* Minimum width */
    max-width: 90%; /* Maximum width relative to viewport */
    max-height: 90vh; /* Maximum height relative to viewport */
    overflow-y: auto; /* Scroll if content exceeds height */
    box-sizing: border-box; /* Padding included in width/height */
    font-family: 'Orbitron', sans-serif;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15); /* Subtle shadow */
    border: 1px solid #e0e0e0; /* Light border */
    display: flex;
    flex-direction: column;
    gap: 20px; /* Space between elements inside */
}

.dialog-box h3 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    margin-top: 0;
    color: #0623b1;
    font-size: 2.5rem;
}

.dialog-box p {
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.4;
}
.dialog-box ul {
    margin: 0 0 20px 0; /* Match paragraph bottom margin */
    padding-left: 20px; /* Standard list indentation */
}

.dialog-box li {
    font-weight: 400; /* Same as paragraphs */
    margin-bottom: 20px; /* Same vertical spacing as paragraphs */
    line-height: 1.4; /* Same line height */
    color: inherit; /* Inherits text color from parent */
    list-style-type: disc; /* Default bullet style */
    padding-left: 5px; /* Small space between bullet and text */
}

/* If you want to remove bullets */
.dialog-box li.no-bullet {
    list-style-type: none;
    padding-left: 0;
}

.cookiebutton-group {
    margin-top: 20px;
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.cookiebutton {
    padding: 10px 25px;
    border: 1px solid #0623b1; /* 1px border */
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Orbitron', sans-serif;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    text-align: center;
    
}


.cookieaccept-btn {
    background: #fafcfa00;
    color: #0623b1;
    border-color: #0623b1; /* Darker green border */
    border-style: solid;
    border-width: 2.5px; /* 1px border */
    padding: 10px 25px;
    border-radius: 4px;
    font-size: bold;

}

.cookieaccept-btn:hover {
    background: #0623b1;
    color: white;
}

.cookiepref-btn {
    background: #0623b1;
    color: white;
    border-color: #0623b1; /* Darker blue border */
    padding: 10px 25px;
    border-radius: 4px;
    font-size: bold;
}

.cookiepref-btn:hover {
    background: #0623b1;
    color: white;

}

.cookieessential-btn {
    background: #0623b1;
    color: white;
    border-color: #0623b1; /* Darker gray border */
    padding: 10px 25px;
    border-radius: 4px;
    font-size: bold;
}

.cookieessential-btn:hover {
    background: #0623b1;
    color: white;
}
/* Mobile responsiveness adjustments */
@media (max-width: 768px) {
    .cookie-consent {
        width: 95%;
        padding: 20px;
        min-height: auto;
    }
    
    .cookie-consent h3 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .cookie-consent p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .dialog-box {
        padding: 20px;
        min-width: 280px;
        width: 90%;
    }
    
    .dialog-box h3 {
        font-size: 1.8rem;
    }
    
    .dialog-box p,
    .dialog-box li {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .cookiebutton-group {
        flex-direction: column;
        gap: 10px;
        margin-top: 15px;
    }
    
    .cookiebutton {
        width: 100%;
        padding: 12px 20px;
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .cookie-consent {
        padding: 15px;
    }
    
    .cookie-consent h3 {
        font-size: 1.5rem;
    }
    
    .dialog-box {
        padding: 15px;
    }
    
    .dialog-box h3 {
        font-size: 1.5rem;
    }
    
    .cookiebutton {
        font-size: 0.8rem;
        padding: 10px 15px;
    }
}

/* Landscape orientation adjustments */
@media (max-height: 500px) and (orientation: landscape) {
    .cookie-consent {
        max-height: 80vh;
        overflow-y: auto;
    }
    
    .dialog-box {
        max-height: 80vh;
        top: 40%;
    }
}
/* Side Drawer Styles */

/* Drawer Styles */
.demo-drawer {
  position: fixed;
  top: 0;
  right: -400px; /* Hidden by default */
  width: 400px;
  height: 100%;
  background: #fff;
  box-shadow: -2px 0 15px rgba(0,0,0,0.1);
  transition: right 0.3s ease-out;
  z-index: 1000;
  overflow-y: auto;
}
.demo-drawer h2 {
  font-family: 'Orbitron', sans-serif !important;
  color: #0623b1;
  font-size: 2.5rem; 
  margin-bottom: 20px;
}

.demo-drawer.open {
  right: 0; /* Visible */
}

.demo-drawer-content {
  padding: 25px;
}

.close-btn {
  font-size: 28px;
  cursor: pointer;
  float: right;
  margin-bottom: 20px;
}

/* Form Styles */
#demoForm input,
#demoForm textarea,
#demoForm button {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
}

#demoForm button {
  background: #0623b1;
  color: white;
  font-weight: bold;
  font-family: 'Orbitron', sans-serif !important;
  cursor: pointer;
  transition: background 0.2s;
}

#demoForm button:hover {
  background: #3367d6;
}
