/* Reset Default Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 300;
    letter-spacing: 0.6px;
}

.page-container {
    padding-top: calc(80px + 10px); /* Header height + desired gap */
    /* Or use a clamp if your header height is variable */
    /* padding-top: clamp(calc(80px + 10px), calc(10vh + 10px), calc(100px + 10px)); */
}

/* Header Styling */
.header {
    position: fixed;  
    top: 0;
    width: 100%;
    height: auto; /*clamp(80px, 10vh, 100px); */
    backdrop-filter: blur(70px); /* Adjust the blur radius (10px) as needed */
    -webkit-backdrop-filter: blur(70px); /* For Safari support */
    background-color: rgba(255, 255, 255,0.9);
    display: flex;
    justify-content: space-between;  /* Push menu to the right */
    padding: 0 5px; /* Add padding on left and right padding: 10px 10px; */
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.8);   
    z-index: 1000; /* Ensures it's always on top */
} 

/* Logo Section */
.logo-container {
    display: flex;
}

.logo {
    margin-top: 10px;
    width: clamp(32px, 5vw, 48px);
    height: clamp(32px, 5vw, 48px);
}

.company-info {
    margin-left: 10px;
}

.company-name {
    margin-top: 0px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: normal;
    font-size: clamp(20px, 4vw, 40px);
    color: rgb(56,62,70); /* Dark Blue */
}

.tagline {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 200;
    color: rgb(56,62,70);
    font-size: clamp(14px, 2vw, 20px);
    overflow: hidden; /* Hides overflowing text */
    margin-bottom: 5px;
}

/* Navigation Menu */
.nav-menu ul {
    margin-top: 20px;
    list-style: none;
    display: flex;
    align-items: right;
}

.nav-menu ul li {
    margin-left: 10px;
}

.nav-menu ul li a {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 200;
    color: rgb(56,62,70);
    text-decoration: none;
    font-size: 20px;
    padding: 5px 10px;
    transition: 0.3s ease-in-out;
}

.nav-menu ul li a.active {
 /*   background-color: #007bff; /* Example: Highlight color */
    background: rgb(255, 255, 255);  
    color: rgb(59,62,70);
    font-weight: 200; /*bold; /* Optional: Make it bold */
    box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.8);
    /* Add other styling as needed */
  }

.nav-menu ul li a:hover {
    background: rgb(255, 255, 255);  
    box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.8);
    padding: 5px 10px;
}

/* Mobile Menu Icon */
.menu-icon {
    margin-top: 15px;
    margin-right: 20px;
    display: none;
    cursor: pointer;
    align-items: left; 
}

.menu-icon img {
    width: 32px;
    height: 32px;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: absolute;
    right: 20px;
    top: 60px;
    background: rgba(235, 235, 255,0.9);
    box-shadow: 4px 6px 10px rgba(0, 0, 0, 0.8);
    border: 3px solid rgb(235,235,235);
    z-index: 1000; 
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu ul li {
    padding: 10px;
}

.mobile-menu ul li a {
    text-decoration: none;
    font-size: clamp(16px, 2vw, 20px);
    color: rgb(56,62,70);
}

.mobile-menu ul li a:hover {
    background: rgb(230, 230, 230);
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}  

/* Responsive Design */
@media (max-width: 800px) {
     header {
        height: auto;
    }
    .company-name {
        margin-top: 7px;
        font-size: 28px;
        font-weight:500;
        color: rgb(56,62,120);
      }

      .tagline {        
        font-weight:500;
        font-size: 16px;
        color: rgb(56,62,120);
        }
 
    .nav-menu {
        display: none;
    }
    
    .menu-icon {
        display: block;
    }

.mobile-menu ul li a {
    text-decoration: none;
    font-size: 30px;
    color: rgb(56,62,70);
    font-weight: 400;
}
}

@media (min-width: 800px) and (max-width: 1050px) {
     header {
        height: auto;
    }
    .company-name {
        margin-top: 7px;
        font-size: 34px;
        font-weight:500;
        color: rgb(56,62,120);
      }

      .tagline {        
        font-weight:500;
        font-size: 22px;
        color: rgb(56,62,120);
        }
 
    .nav-menu {
        display: none;
    }
    
    .menu-icon {
        display: block;
    }
}


/************************************  BANNER AREA  **************************************** */

/* Homepage Banner Styling */
.homepage-banner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    background: rgb(56,62,70);  
    padding: clamp(10px, 2vh, 20px) 5px; 
    position:relative;
    height: auto;  
    margin-top: clamp(10px, 10vh, 20px); /* Pushes it below the fixed header */
}

.banner-content {
    position: absolute;
    top: 1%;
    left: 5%; /* Adjust as needed */
    transform: translateY(-20px);  
    width: 45%; 
    height:auto; 
    background: rgba(56,62,70,0.6); 
    box-shadow: 2px 8px 16px rgba(0, 0, 0, 0.8);  
    border: 3px solid white;
}

.banner-title, .APbanner-title{
    margin-left:10px;
    font-family: Arial, Helvetica, sans-serif;
    color: rgb(255, 255, 255);
    font-weight: 200;
  /*  letter-spacing: 0.6px;
    line-height: 1.2;  */
    font-size: clamp(45px, 5vh, 75px);
    word-wrap: break-word;
    padding:10px;
    background: rgba(56,62,70,0.6);   /* background: rgb(56,62,70);  */
}

.banner-title1 {
    margin-left:10px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 200;
    letter-spacing: 0.7px;
    color: rgb(255, 255, 255);
    font-size: clamp(20px, 5vh, 20px);
    word-wrap: break-word;
    padding:10px;
    background: rgba(56,62,70,0.6);   /* background: rgb(56,62,70);  */
}

.banner-content2 {
    position: absolute;
    top: 15%;
    left: 10%; /* Adjust as needed */
    transform: translateY(-50%);
    width: 37%;
    background: rgba(56,62,70,0.6); 
    box-shadow: 8px 16px 32px rgba(0, 0, 0, 0.8);  
}

.banner-image {
    position: relative;
    width: 62%;
    height: calc(60%-120px);
    display: flex;
    justify-content: flex-end;
    margin-left: 37%;
  /*  box-shadow: 8px 16px 32px rgba(0, 0, 0, 0.8);  */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.banner-image img {
    max-width: 100%;
    height: auto;
}

.banner-word {
    margin-top:15px;
    margin-left:10px;
    width:100%;
    height:auto;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 200;
    color: rgb(255, 255, 255);
    font-size: 22px;
    word-wrap: break-word;
}

/* Mobile View Adjustments */
@media (max-width: 768px) {
    .homepage-banner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .banner-content
    {
        top: 1%;
        transform: translateY(-20px);  
        width:90%;
    }
    .banner-image {
        width: 100%;
        margin: 0;
    }
    .banner-title,.APbanner-title  {
        font-size: 30px; /*clamp(10px, 5vw, 20px); */
        font-weight: 400;
    }
    .banner-title1  {
        font-size: 16px; /* clamp(10px, 5vw, 20px);  */
        font-weight: 400;
    }
    .banner-word {
        margin-left:0px;
        margin-top:200px;
        font-size: 16px;
        font-weight: 400;
        text-align: center;
    }
}

/* Tablets (Portrait) */
@media (min-width: 769px) and (max-width: 1023px) {
    /* Tablet portrait-specific styles */
    .banner-content
    {
        top: 1%;
        width:80%;
        transform: translateY(-20px);  
    }
    .banner-title,.APbanner-title  {
        font-size: 40px; /*clamp(10px, 5vw, 20px); */
        font-weight: 400;
    }
    .banner-title1  {
        font-size: 20px; /* clamp(10px, 5vw, 20px);  */
        font-weight: 400;
    }
   .banner-word {
        margin-top:200px;
        font-size: 20px;
        font-weight: 400;
    }
  }
  
  /* Tablets (Landscape) and Small Laptops */
  @media (min-width: 1024px) and (max-width: 1279px) {
      /* tablet landscape and small laptop styles */
  }
  
  /* Desktops and Larger Laptops */
  @media (min-width: 1280px) {
    /* Desktop-specific styles */
  }

/*************************HDR TEXT*********************************** */
/*   *** Tilebara - This is only tilebar style  **************** */ 
.Tile1-con{
    display: flex;
    margin-top: 100px; 
    justify-content: center; 
    align-items: center; 
    width: 100%; 
}

.Tile1-board {
    display: flex;
    justify-content: center; 
    width: 90%; 
    flex-wrap: wrap;
    padding: 5px;
    background:rgb(56,62,70);
    box-shadow: 2px 16px 32px rgba(0, 0, 0, 0.8);
    border-radius: 20px 20px 0 0;
}

.Tile1MainText {
    font-family: Arial, Helvetica, sans-serif;
    color: rgb(255, 255, 255);
    font-weight: 200;
    font-size: 16px;
    margin-top: 0px;
    word-wrap: break-word;
    width: 100%; 
    text-align: center;
}

.Tile1ChildText {
    font-family: Arial, Helvetica, sans-serif;
    color: rgb(255, 255, 255);
    font-weight: 200;
    font-size: 26px;
    margin-top: 5px;
    word-wrap: break-word;
    text-align: center;
}

@media (max-width: 768px) {
    .Tile1MainText {
        font-size: 16px;
        font-weight: 400;
    }

    .Tile1ChildText{
        font-size: 24px;
        font-weight: 400;
    }
}

/************************ ICON BOARD ******************************/
/* Icon Board Container */
.icon-board-container {
    margin-top: 5px; /* 10px below the previous section */
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px; /* 40px spacing between icon boards */
    padding: 20px;
}

/* Individual Icon Board */
.icon-board {
    width: 256px;
    background-color: white;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.8);
    text-align: center;
    padding: 20px;
    border-radius: 10px;
}

/* Ensure all icon boards have the same height */
.icon-board-container {
    align-items: stretch;
}

/* Icon Styling */
.icon {
    width: 128px;
    height: 128px;
    margin-top: 10px;
}

/* Bold Text */
.bold-text {
    width: 100%;
    font-family: Arial, Helvetica, sans-serif;
    background: rgb(235, 235, 255);  
    font-weight: 200;
    font-size: 24px;
    color: rgb(56, 62, 70);
    margin-top: 10px;
    word-wrap: break-word;
}

/* Info Text */
.info-text {
    width: 100%;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 200;
    font-size: 20px;
    color: rgb(56, 62, 120);
    text-align: center;
    margin-top: 30px;
    word-wrap: break-word;
}

/* Responsive Layout */
@media (max-width: 768px) {
    .icon-board-container {
        flex-direction: column;
        align-items: center;
    }
.bold-text {
    font-weight: 400;
    font-size: 30px;
    color: rgb(56, 62, 70);
}
.info-text {
    font-weight: 400;
    font-size: 24px;
}
}

/* Responsive Layout */
@media (max-width: 1200px) {
    .icon-board-container {
        flex-direction: column;
        align-items: center;
    }
}

/************************** CONCEPT TO REALITY ********************************** */
/* Board Section */
.board-section {
    display: flex;
    width: 100%;
    margin-top: 10px; /* 10px below the previous section */
    justify-content: center; /* Horizontally center the container */
    background: rgb(255, 255, 255);
}

.board-container {
    margin-top: 5px; /* 10px below the previous section */
    display: flex;
    flex-direction: column; /* Stack items vertically */
    align-items: center; /* Center-align items horizontally */
    width: 60%;
    gap: 0px; /* Space between items */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.8);
    border-radius: 20px 20px 0 0;
}

.board-image {
    height: auto;
    max-width: 100%; /* Ensure the image doesn't overflow */
    border-radius: 20px 20px 0 0;
}

.board-hdr-text {
    margin:20px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 200;
    font-size: 24px;
    color: rgb(56, 62, 70);
    text-align: center; /* Center-align text */
}

.board-hdr-text1 {
    margin: 20px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 200;
    font-size: 20px;
    color: rgb(56, 62, 119);
    text-align: center; /* Center-align text */
}

/* Mobile View */
@media (max-width: 800px) {
    .board-container {
        width: 90%;
        flex-direction: column;
    }

    .board-image {
        width: 100%; /* Full width in mobile view */
        margin-left: 0;
    }

    .board-text {
        width: 100%; /* Full width in mobile view */
        text-align: center; /* Center align text in mobile view */
    }

.board-hdr-text {
    font-weight: 400;
    font-size: 24px;
    color: rgb(56, 62, 70);
}

.board-hdr-text1 {
    font-weight: 400;
    font-size: 20px;
    color: rgb(56, 59, 119);
}

}

/********************************************************************* */
/* Board Section */
.board1-section {
    margin-top: 10px; /* 10px below the previous section */
}

.board1-container {
    display: flex;
    align-items: start;
    gap: 5px; /* 5px margin from the left image */
}

.board1-text {
    width: 60%; /* Remaining 60% of the screen */
    display: flex;
    flex-direction: column;
    gap: 20px; /* Space between HdrText1 and HdrText2 */
    margin-right: 10px; /* 10px below the previous section */
}

.board1-hdr-text {
    margin: 20px;
    font-family: Arial, Helvetica, sans-serif;
    color: rgb(56, 62, 70);
    font-weight: 200;
    font-size: 24px;
}

.board1-hdr-text1 {
    margin: 20px;
    font-family: Arial, Helvetica, sans-serif;
    color: rgb(56, 62, 119);
    font-weight: 200;
    font-size: 20px;
 /*   font-size: var(--hdr-text1-size);   */
}

.board1-image {
    width: 40%; /* Image covers 40% of the screen */
    height: auto;
    margin-left: 5px; /* 5px margin from the left */
}

/* Mobile View */
@media (max-width: 800px) {
    .board1-container {
        flex-direction: column;
    }

    .board1-image {
        width: 100%; /* Full width in mobile view */
        margin-left: 0;
    }

    .board1-text {
        width: 100%; /* Full width in mobile view */
        text-align: center; /* Center align text in mobile view */
    }

.board1-hdr-text {
    color: rgb(56, 62, 70);
    font-weight: 400;
    font-size: 24px;
}

.board1-hdr-text1 {
    font-family: Arial, Helvetica, sans-serif;
    color: rgb(80, 80, 119);
    font-weight: 400;
    font-size: 20px;
 /*   font-size: var(--hdr-text1-size);   */
}
}

/*************************HDR TEXT*********************************** */
/*   *** Board2 **************** */ 
.Board2con
{
    margin-top: 10px; /* 10px below the previous section */
    display: flex;
    justify-content: center; /* Horizontally center items */
    align-items:center; /* Vertically center items */
    width: 100%; /* Set width to 80% of the screen (adjust as needed) */
}

.Hdr-board2 {
   /* background: rgb(80, 80, 119); */
    display: flex;
    justify-content: flex-start; /* Horizontally center items */
    align-items:flex-start;
    width: 90%; /* Set width to 80% of the screen (adjust as needed) */
    Height:auto; /*30px; */
    flex-wrap: wrap;
    padding: 5px;
    background:rgba(255,255,255,0.1);
 /*   background: linear-gradient(to bottom, rgb(80,80,119),rgb(0,0,119));  */
     box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.8);  
  /*  border-radius: px px 20 20;  */
 /*   border: 1px solid #ccc; /* Optional: Add a border for visualization */
}

.board2-text {
    font-family: Arial, Helvetica, sans-serif;
    color: rgb(56, 62, 70);
    font-weight: 200;
    font-size: 24px;
    margin: 20px;
    word-wrap: break-word;
    width: 100%; /* Add this line */ /*OR flex-basis: 100%; */
    text-align: left;
}

.board2-text2 {
    font-family: Arial, Helvetica, sans-serif;
    color: rgb(80, 80, 119);
    font-weight: 200;
    font-size: 20px;
    margin: 20px;
    word-wrap: break-word;
    text-align: top;
}

.board2-Button {
    margin-top: 30px;
    margin-left: 130px;
    display: flex;
    justify-content: center; /* Horizontally center items */
    align-items:center;
    width: 150px; /* Set width to 80% of the screen (adjust as needed) */
    Height:50px;
    flex-wrap: wrap;
    padding: 5px;
    background:rgb(255,255,255);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.8);
}

@media (max-width: 768px) {
    .Htext  {
        font-size: 24px;
    }

    .Htext1{
        font-size: 20px;
    }

.board2-text {
    font-weight: 400;
    font-size: 24px;
    margin: 20px;
    text-align: center;
}

.board2-text2 {
    font-weight: 400;
    font-size: 20px;
    margin-top: 20px;
    text-align: center;
}

}

/* **************** TEXT DISPLY BOARD ************************* */

.List-Page {
    margin-top: 30px;
    display: flex;
    justify-content: center; 
    width: 100%; 
}

.List-Win {
 /*   display: flex; 
    flex-wrap: wrap;  */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    justify-content: center; 
    width: 90%; 
    height: auto;
    gap: 10px; 
  /*  padding: 20px; */
}

/* List Items */
.list-item {
 /*   display:flex;  */
 /*   width:calc(50%-5px); /*calc(25%-10px);*/
    padding: 15px; 
    background: rgb(255,255,255);
    border-radius: 8px; 
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.8); 
}

.List-Text{
    margin:20px;
    text-align: center; 
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 200;
    font-size: 24px; 
    color: rgb(56,62,70); 
}

.List-Text1{
     margin:20px;
    text-align: center; 
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 200;
    font-size: 20px; 
    color: rgb(59,62,119); 
}

/* Responsive Adjustments */
@media (max-width: 800px) {
    .list-item {
        flex: 1 1 calc(50% - 10px); /* Two items per row on smaller screens */
    }
.List-Text{
    font-weight: 400;
    font-size: 24px; 
}

.List-Text1{
    font-weight: 400;
    font-size: 20px; 
}

.list-item {
        flex: 1 1 100%; /* One item per row on very small screens */
    }
}

/* ************* PARALLAX SCROLLING EFFECT ************************ */

.Content-Parlx {
    padding: 50px;
    text-align: center;
    /* Example content to make page scrollable */
    min-height: 150vh; /*adjust as needed*/

}

.parallax-container {
    margin-top:100px;
    height: 500px; /* Adjust height as needed */
    background-image: url('/Images/Images/BuildSomeThingGreat.jpg'); /* Replace with your image path */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white; /* Text color on top of image */
    text-align: center;
}

.parallax-text {
    background-color: rgba(0,0,0,0.5); /* Semi-transparent background for text */
    padding: 20px;
    border-radius: 10px;
}

/* **************** F O O T E R *********************** */

.Footer {
    margin-top: 100px;
 /*   justify-content: center; /* Horizontally center items */
 /*   align-items:center;
    width: 100%; /* Set width to 80% of the screen (adjust as needed) */
    padding: 20px 0;
    text-align: center;
    width:100%;
    Height:auto;
    flex-wrap: wrap;
    background:rgb(56,62,70);
}

       /* Icons Area */
       .footer-icons {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-bottom: 20px;
    }

    .footer-icons img {
        width: 40px;
        height: 40px;
    }

    /* Flex Containers */
    .footer-content {
        display: flex;
        justify-content: space-between;
        text-align: left;
        max-width: 1200px;
        margin: 0 auto;
        flex-wrap: wrap;
    }

    .footer-section {
        flex: 1;
        min-width: 250px;
        padding: 10px;
    }

    /* Text Styles */
    .footer-section h2 {
        font-family: Arial, Helvetica, sans-serif;
        color: rgb(255, 255, 255);
        font-weight: 200;
        font-size: 30px;
        margin: 5px 0;
        text-align: left;
    }

    .footer-section p {
        font-family: Arial, Helvetica, sans-serif;
        color: rgb(255, 255, 255);
        font-weight: 200;
        font-size: 16px;
        margin: 5px 0;
        text-align: left;
    }

    .footer-section p1 {
        font-family: Arial, Helvetica, sans-serif;
        color: rgb(255, 255, 255);
        font-weight: 200;
        font-size: 16px;
        margin: 5px 0;
        text-align: center;
    }

    /* Mobile View */
    @media (max-width: 768px) {
        .footer-content {
            flex-direction: column;
            text-align: center;
        }

        .footer-section {
            text-align: center;
        }

    * Text Styles */
    .footer-section h2 {
        color: rgb(255, 255, 255);
        font-weight: 500;
        font-size: 30px;
    }

    .footer-section p {
        color: rgb(255, 255, 255);
        font-weight: 400;
        font-size: 16px;
    }

    .footer-section p1 {
        color: rgb(255, 255, 255);
        font-weight: 400;
        font-size: 16px;
    }

    }

/* ********************** ABBOUT PAGE STYLES ************************ */

.gap {
    height: 40px; /* Adjust the height for the gap size */
    width: 100%; /* Optional: to ensure it takes full width */ 
}

.APBanner {
    margin-top: 10px;
    display: flex;
    justify-content: flex-end; 
    width: 100%; 
    padding: 20px 0;
    text-align: center;
    Height:auto;
    flex-wrap: wrap;
    background:rgb(56,62,70);  
}

.APBanner-flex {
    margin-top: 10px;
    margin-right: 20px;;
    display:flex;
    width:70%;
    padding: 20px 0;
    text-align: left;
    Height:auto;
    flex-wrap: wrap;
    background:rgb(56,62,70);
    flex-direction: column;
}

.APBflex-text1 {
    align-self: flex-start;  
 /*   margin:5 10 5 auto;  */
    width:100%;
    margin-top: 5px;
    font-family: Arial, Helvetica, sans-serif;
    color: rgb(255, 255, 255);
    font-weight: 200;
    font-size: 35px;
    padding:10px;  
    background:rgb(56,62,70);
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.8);  
    word-wrap: break-word;
}

.APBflex-text2 {
    margin-top: 10px;
    align-self: flex-start;
    margin-left: 20px;
    font-family: Arial, Helvetica, sans-serif;
    color: rgb(255, 255, 255);
    font-weight: 200;
    font-size: 20px;
 /*   padding:10px;  */
    word-wrap: break-word;
}

.APBflex-text3 {
    margin-top: 10px;
    align-self: flex-start;
    margin-left: 20px;
    font-family: Arial, Helvetica, sans-serif;
    color: rgb(235, 235, 255);
    font-weight: 200;
    font-size: 16px;
 /*   padding:10px;  */
    word-wrap: break-word;
}

.APB-content {
    position: fixed; /*absolute;*/
    top: 20%;
    left: 5px; /* Adjust as needed */
 /*   transform: translateY(-50%);  */
    width: 30%;
    height: auto;
    background: rgba(56, 62, 70, 0.6); /* Main Window */
    box-shadow: 16px 32px 64px rgba(0, 0, 0, 0.8);  
    padding: 10px; /* Space around client area */
}

.APB-Advrtz {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* Ensure no extra space */
}

.APB-Advrtz img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cover entire client area */
}

.APB-client {
    position: relative;
    top: 50%;
    left: 2%; /* Adjust as needed */
    transform: translateY(-50%);
    width: 25%;
    height:70%; 
    background: rgb(255,255,255); 
}

.APB-title{
    margin-top:10px;
    align-self: center;
    font-family: Arial, Helvetica, sans-serif;
    color: rgb(255, 255, 255);
    font-weight: 200;
  /*  letter-spacing: 0.6px;
    line-height: 1.2;  */
    font-size: clamp(45px, 5vh, 75px);
    word-wrap: break-word;
    padding:10px;
    background: rgba(56,62,70,0.6);   /* background: rgb(56,62,70);  */
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
    .APBanner-flex {
        margin-right: auto;
        width:90%;
    }
    .APB-content {
     /*   display:none;  */
        position: static; /*absolute;*/
        top: 45%;
        align-self: center;
        width: 90%;
    }
    .APBflex-text1,.APBflex-text2,.APBflex-text3{
        font-weight: 400;
    }
}

@media (min-width: 769px) and (max-width: 1023px) {
    .APBanner-flex {
        margin-right: auto;
        width:90%;
    }
    .APB-content {
     /*   display:none;  */
        top: 6%;
        left: 5px;
        width: 40%;
    }
    .APBflex-text1,.APBflex-text2,.APBflex-text3{
        font-weight: 400;
    }
}
/* **************** Mission / Vission / Goal *********************** */

/* Main flex container */
.APmvgFlex {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f4f4f4;
    display: flex;
    align-items: center; /* Vertically align items */
    justify-content: flex-start; /* start; /* Align icon & text */
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.9);
    max-width: 80%; /* 900px; */
    margin: 20px 20px 20px auto;
}

/* Icon container */
.APmvgIcon img {
    width: 100px; /* Adjust size for responsiveness */
    height: 100px;
    max-width: 256px;
    max-height: 256px;
    object-fit: contain;
}

/* Text container */
.APmvgText {
    margin-left: 20px;
    text-align: left;
}

/* Header Text */
.APmvgHeader {
    font-size: 24px;
    font-weight: 200;
    color: rgb(59, 62, 70);
    margin: 0;
}

/* Paragraph Text */
.APmvgMatter {
    font-size: 18px;
    font-weight: 200;
    color: rgb(59, 62, 70);
    margin-top: 5px;
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
    .APmvgFlex {
        margin: 20px auto 20px auto;
        width: 90%;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .APmvgIcon img {
        width: 80px; /* Reduce icon size for mobile */
        height: 80px;
    }
    .APmvgText {
        margin-left: 0;
        margin-top: 10px;
    }
    .APmvgHeader {
    font-weight: 400;
    }
    /* Paragraph Text */
    .APmvgMatter {
    font-weight: 400;
    }
}

/* **************** SERVICES  PAGE STYLES ****************************/



/* -------------- (OSA) Our Service Approach Banner ----------------   */

.OSA-Banner {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f4f4f4;
    display: flex;
    align-items: top; /* Vertically align items */
    justify-content: flex-end; /* Align icon & text */
    background: rgb(59,62,70);
    padding: 20px;
    margin: 20px auto;
 /*   max-width: 900px;  */
    width:auto;
}

/* Text container */
.OSA-Banner-Text {
    margin-left: 20px;
    text-align: right;
    color: rgb(255, 255, 255);
}

/* Header Text */
.OSA-Banner-Text1 {
    font-size: 20px;
    font-weight: 200;
    margin: 0;
}

/* Paragraph Text */
.OSA-Banner-Matter {
    font-size: 30px;
    font-weight: 200;
    margin-top: 5px;
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
    .OSA-Banner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .OSA-Banner-img {
        width: 80px; /* Reduce icon size for mobile */
        height: 80px;
    }

    .OSA-Banner-Text {
        margin-left: 0;
        margin-top: 10px;
    }
}

@media (min-width: 769px) and (max-width: 1023px) {
}

/* -------------- Our Service Approach -------------------*/
.SrvApproach {
    font-family: Arial, Helvetica, sans-serif;
    display: flex; 
    background-color: rgb(255, 255, 255);
    width: 100%;
    height: auto; 
    padding: 20px;
    justify-content: flex-end; 
}

.SrvTextWrapper {
    display: flex;
    justify-content: flex-start; /* Right-align the text containers */
    width: 60%; /* Take up the full width */
    height:auto;
    background-color: rgb(255, 255, 255);
    flex-wrap: wrap;
}

.SrvTextContainer {
    display:flex;
 /*   justify-content: left; */
    margin-top: 0;
    width: 100%;
    height:auto;
    padding: 20px;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.9);
    flex-direction: column;  
    border-radius: 10px;
}

.SrvText1 {
    font-size: 24px;
    color: rgb(59,62,70);
    font-weight: bold;
    margin-top: 20px;
}

.SrvText2 {
    font-size: 20px;
    color: rgb(59,62,70);
    font-weight: 200;
    margin-left: 20px;
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
    .SrvApproach {
        justify-content: center; 
    }
    .SrvTextWrapper {
        width: 90%; /* Take up the full width */
        margin:10 auto 10 auto;
    }

   .SrvText1 {
         font-weight: 400;
         margin-top: 20px;
     }

      .SrvText2 {
            font-weight: 400;
     }
}

/* -------------- Our Service Domain -------------------*/

/* Main flex container */
.SrvDomain-Flex {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f4f4f4;
    display: flex;
    align-items: center; /* Vertically align items */
    justify-content: flex-start; /* start; /* Align icon & text */
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.9);
    max-width: 68%; /* 900px; */
    margin: 0px 20px 0px auto;
}

/* Icon container */
.SrvDomainIcon img {
    width: 100px; /* Adjust size for responsiveness */
    height: 100px;
    max-width: 256px;
    max-height: 256px;
    object-fit: contain;
}

/* Text container */
.SrvDomainText {
    margin-left: 20px;
    text-align: left;
}

/* Header Text */
.SrvDomainHeader {
    font-size: 24px;
    font-weight: 200;
    color: rgb(59, 62, 70);
    margin: 0;
}

/* Paragraph Text */
.SrvDomainMatter {
    font-size: 18px;
    font-weight: 200;
    color: rgb(59, 62, 70);
    margin-top: 5px;
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
    .SrvDomain-Flex {
        flex-direction: column;
        align-items: center;
        text-align: center;
        max-width: 90%; /* 900px; */
        margin: 0px auto 0px auto;
    }
    
    .SrvDomain img {
        width: 80px; /* Reduce icon size for mobile */
        height: 80px;
    }

    .SrvDomainText {
        margin-left: 0;
        margin-top: 10px;
        font-weight: 400;
    }

.SrvDomainHeader {
    font-weight: 400;
}

/* Paragraph Text */
.SrvDomainMatter {
    font-weight: 400;
}
}

/* ******************* C O N T A C T     P A G E ***************************** */

/* -------------- (OSA) Our Service Approach Banner ----------------   */

.Contact-Banner {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f4f4f4;
    display: flex;
    align-items: top; /* Vertically align items */
    justify-content: flex-start; /* Align icon & text */
    background: rgb(59,62,70);
    padding: 20px;
    margin: 20px auto;
 /*   max-width: 900px;  */
    width:60%;
}

/* Text container */
.CB-Text {
    margin-left: 20px;
    text-align: left;
    color: rgb(255, 255, 255);
}

/* Header Text */
.CB-Text1 {
    font-size: 20px;
    font-weight: 200;
    margin: 0;
}

/* Paragraph Text */
.CB-Matter {
    font-size: 30px;
    font-weight: 200;
    margin-top: 5px;
}

/* Responsive Design for Mobile */
@media (max-width: 800px) {
    .Contact-Banner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        width:95%;
    }
    
    .CB-img {
        display: none;
        width: 80px; /* Reduce icon size for mobile */
        height: 80px;
    }
    .CB-Matter {
        font-weight: 400;
    }

    .CB-Text {
        margin-left: 0;
        margin-top: 10px;
        font-weight: 400;
    }

    .CB-Text1 
    {
        font-weight: 400;
    }
}

/* *************** P R O D U C T    P A G E ******************* */

/************************************  BANNER AREA  **************************************** */

/* Homepage Banner Styling */
.product-banner {
    display: flex;
    background-color: rgb(59, 62, 70);
    color: rgb(255, 255, 255);
    width: 100%;
    align-items: center;
}

.product-image {
    width: 65%;
    margin-left: 15px;
    margin-top: 15px;
    margin-bottom: 15px;
}

.product-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.product-text {
    display:flex;
    width: 35%;
    font-family: Arial, Helvetica, sans-serif;
    padding: 20px;
    box-sizing: border-box;
    flex-direction: column; 
}

.product-text1{
    font-size: 40px;
    line-height: 60px;
    margin-bottom: 10px;
    padding:5px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.9);
  /*  background: linear-gradient(to bottom, #42616d, #010c18);   */
    border-radius: 15px;
}

.product-text2{
    font-size: 20px;
    line-height: 24px;
}

@media (max-width: 800px) {
    .product-banner {
        flex-direction: column;
    }

    .product-image, .product-text {
        width: 100%;
        margin-left: 0;
        font-weight: 400;
    }

    .product-text h2, .product-text p {
        text-align: center;
        font-weight: 400;
    }

    .product-text1,.product-text2{
        font-weight: 400;
    }
}

/* ------------ FEATURE COMPARIG TABLE -------------------*/

.Header-Text {
    text-align: center;
    font-size: 30px;
}

.feature-text  {
    font-size: 18px;
    max-width: 80%;
    margin: auto;
}

.table-container {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
    background-color: #f4f4f4;
    text-align: center;
    justify-content: center;
    margin: 20px auto; 
    width: 80%;
}

/* Table Styling */
.feature-table {
    width: 100%;
 /*   margin: auto;   */
    border-collapse: collapse;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
    border: 1px solid #080808;
}

/* Table Header */
.feature-table thead th {
    background-color: rgb(59,62,70);
    padding: 15px; 
    text-align: center;
    border: 1px solid #080808;
}

/* Table Data */
.feature-table tbody td {
    background-color: rgb(255,255,255);
    padding: 15px;  
    text-align: center;
    border: 1px solid #080808;
}

/* Mobile view adjustments */
@media screen and (max-width: 768px) {
    .feature-text  {
        font-size: 16px;
        font-weight: 400;
    }

    .table-container {
        overflow-x: auto; /* Enable horizontal scrolling */
        font-size: 16px; /* Reduce font size */
    }

    feature-table {
        width: 100%; /* Make table full width */
        font-size: 16px; /* Reduce font size */
        font-weight: 400;
    }

    .feature-table thead th, .feature-table tbody td {
        padding: 10px; /* Reduce padding */
        font-weight: 400;
    }
}

/* ************* RECENT ACTIVITY PAGE ******************* */

.RAPcontainer {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f4f4f4;
    color: rgb(59,62,70);
    padding: 0;
    width:100%;
 /*   max-width: 1200px;  */
    margin: 20px auto;
}
.RAPflexOngoing, .RAPflexProject {
    display: flex;
    background: white;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.9);
    margin-bottom: 20px;
    margin: 20px auto;
 /*   overflow: hidden;  */
    width:90%;
}

.RAPimage {
    width: 35%;
    background: #ddd; /* Placeholder color */
    display: flex;
    align-items: center;
    justify-content: center;
}

.RAPimage img {
    width: 100%;
    height: auto;
    display: block;
}

.RAPtext {
    width: 65%;
    padding: 20px;
}

.RAPh1 {
    font-size: 40px;
    margin: 0 0 10px;
}

.RAPh2 {
    font-size: 30px;
    margin: 0 0 10px;
}

.RAPp, .RAPul {
    font-size: 20px;
    line-height: 1.5;
}

.RAPul {
    padding-left: 20px;
}

@media (max-width: 800px) {
    .RAPflexOngoing, .RAPflexProject {
        flex-direction: column;
        margin-bottom: 30px;
    }

    .RAPimage {
        width: 100%;
        height: 200px;
        margin-bottom: 50px;
    }
    
    .RAPtext {
        width: 100%;
        padding: 15px;
        font-weight: 400;
    }

.RAPh1 {
    font-weight: 400;
}

.RAPh2 {
    font-weight: 400;
}

.RAPp, .RAPul {
    font-weight: 400;
}

.RAPul {
    font-weight: 400;
}  
}

/* ************* STYLES FOR BLOG TEXT ******************* */

body.blog-body {
    font-family: Arial, sans-serif;
    background-color: #f5f7fa;
    margin: 0;
    padding: 0;
    color: #333;
  }

  header.blog-header {
    background-color: #003366;
    color: #fff;
    padding: 20px 40px;
    text-align: center;
  }

  header.blog-header h1 {
    margin: 0;
    font-size: 28px;
    font-weight: 400;
  }

  .blog-container {
    max-width: 900px;
    margin: 30px auto;
    padding: 0 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
  }

  .blog-content {
    padding: 30px;
  }

  .blog-content h2 {
    color: #003366;
    font-weight: 400;
  }

  .blog-content h3 {
    color: #003366;
    font-weight: 400;
  }
  
  .blog-content p {
    line-height: 1.6;
    margin: 15px 0;
    font-weight: 400;
  }

  @media (max-width: 768px) {
    .blog-container {
    max-width: 700px;
  }
}
