* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Helvetica, sans-serif;
    line-height: 1.8rem;
    word-break: break-word;
}
body{
    max-width: 1290px;
    margin: 0 auto;
    
} 

/*--------------------------------------SOCIAL NAV BAR---------------------------------------------------*/
.social-nav-bar {
    background-color: black;
    margin: 0;
    padding: 0;
    height: 48px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
}

.icon-h {
    width: 20px;   /* Set the width */
    height: 20px;  /* Set the height */
    object-fit: contain; /* Ensures images retain their aspect ratio */
    display: block; /* Avoids inline spacing issues */
}

.icon-w {
    width: 20px;
    height: 20px;  /* Set the height */
    object-fit: contain; /* Ensures images retain their aspect ratio */
    display: block; /* Avoids inline spacing issues */
}

/*----------------------------------------HERO SECTION -----------------------------------------------*/
.hero-image-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    aspect-ratio: 16 / 9;
  }
  
  .hero-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .hero-text-overlay {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 15px;
    display: inline-block;
    z-index: 1;
    width: 75%;
    font-weight: 600;
    letter-spacing: 1.5px;
    box-sizing: border-box;
  }
  
  .hero-text-overlay h1 {
    margin: 0;
    padding: 0;
    font-size: 20px;
    line-height: 30px;
    text-transform: uppercase;
  }
  
  /* Tablet styles */
  @media screen and (min-width: 500px) {
    .hero-text-overlay h1 {
      font-size: 26px;
      line-height: 36px;
      letter-spacing: 1px;
    }
  }
  
  /* Desktop styles */
  @media screen and (min-width: 1000px) {
    .hero-text-overlay h1 {
      font-size: 42px;
      line-height: 60px;
      letter-spacing: 2px;
    }
  }

/*------------------------------------FIXED NAVIGATION------------------------------------------------*/
.fixed-navbar {
    margin: 0%;
    padding: 0%;
    height: 68px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    font-weight: 700;
    font-size: 17px;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 1000;
}

.humburger-icon {
    width: 26px;
    height: 18.36px;
    margin: 0%;
    padding: 0%;
}

.logo-icon {
    height: 44px;
    width: 115.38px;  
}

.navbar-links {
    list-style: none;
    margin: 0%;
    padding: 0%;
    height: 68px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    font-weight: 700;
    font-size: 17px;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 1000;
}

.desappear {
    display: inline-block;
}

@media (max-width: 480px) {
    .desappear {
        display: none;
    }
}

/*--------------------------------------------------LINKS----------------------------------------*/
.link-black-background {
    color: white;
}

.link-black-background :hover {
    color: #0060DF;
}

.link-grey-background {
    color: black;
}

.link-grey-background:hover {
    color: #0060DF;
}

.link-white-background {
    color: #0060DF;
}

.link-white-background:hover {
    color: #0060DF;
}

/*-------------------------------------------HUMBURGER MENU-------------------------------------*/
/* Hide the menu by default */
#humburgerMenu {
    display: none;
    /* Initially hidden */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: white;
    /* Semi-transparent background */
    z-index: 1000;
    /* Ensure the menu is on top of other content */
    color: white;
    /* White text color */
    text-align: left;
    /* Align content to the left */
    padding-top: 50px;
    /* Add some space at the top */
    padding-left: 20px;
    /* Add some space on the left side */
    display: flex;
    flex-direction: column;
}

/* Styling for the menu items */
#humburgerMenu ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
    /* Allow menu items to take available space */
}

/* Position links and close button */
#humburgerMenu li {
    margin: 20px 0;
    /* Space between menu items */
}

/* Styling for the links */
#humburgerMenu li a {
    color: black;
    /* White text color for links */
    text-decoration: none;
    /* Remove underline from links */
    font-size: 24px;
    /* Larger font size for the links */
}

/* Hover effect for links */
#humburgerMenu li a:hover {
    color: #0060DF;
    /* Highlight links on hover */
}

/* Styling for the close button */
#humburgerMenu .close-btn-container {
    position: absolute;
    top: 20px;
    right: 20px;
}

/* Close button inside the menu */
#humburgerMenu button {
    background-color: #0060DF;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 18px;
    cursor: pointer;
}

/* Close button hover effect */
#humburgerMenu button:hover {
    background-color: white;
    /* Darken the button on hover */
    color: #0060DF;
}

/*-------------------------------------------HOME PAGE-------------------------------------*/
#good_people {
    background-color: #1e2f97;
    color: #fff;
    padding: 20px;
}

#about-us {
    padding: 20px;
    text-align: left;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 20px;
    
}
#intro {
    padding: 20px;
    text-align: left;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 20px;
    
}
#simple-block{
    padding: 20px;
    text-align: left;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 20px;
}
#hp-services {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
}

#hp-services div {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

#hp-services div img {
    width: 300px;
    height: 290px;
    object-fit: contain; /* Ensures images retain their aspect ratio */
    display: block; /* Avoids inline spacing issues */
    margin: 0 auto;
}

.stress-words {
    font-weight: bold;
}

#hp-services div h3 {
    font-size: 20px;
}

#hp-services div p a {
    font-weight: bold;
    color: #0060DF;
}


button {
    background-color: #1e2f97;
    color: #fff;
    padding: 5px;
    border-color: #1e2f97;
    border-radius: 3px;
}

button:hover {
    background-color: #fff;
    color: #1e2f97;
}

/*-----------------------------------------------Footer----------------------------------------*/
.bottom-black-bar-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

footer {
    background-color: black;
    margin: 0%;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-bottom: 40px;
    padding-top: 40px;
}

/*--------------------------------------------Google Reviews----------------------------------------*/
#google-reviews-container {
    display: flex;
    flex-direction: column;
    padding: 20px;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.ranking-container {
    width: 100%;
    background-color: rgb(246, 246, 248);
    padding: 24px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 6px;
}

.rating-value-container {
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
    flex-wrap: wrap;
}

.rating-value-container div {
    display: flex;
    gap: 6px;
    align-items: center;
    flex-wrap: wrap;
}

.google-logo {
    height: 32px;
    width: auto;
}

.five-stars {
    height: 16px;
    width: auto;
}

.google-button {
    border-radius: 24px;
    border-color: rgba(0, 0, 0, 0);
    line-height: 1.32;
    color: rgb(255, 255, 255);
    font-family: inherit;
    font-weight: bold;
    font-size: 14px;
    border-width: 2px;
    cursor: pointer;
}

.rating-value {
    font-weight: 700;
    font-size: 22px;
    line-height: 28px;
    color: rgb(17, 17, 17);
    word-break: normal !important;
    margin: 0%;
}

.rating-text {
    line-height: 1.2;
    font-size: 15px;
    color: rgb(17, 17, 17);
    margin: 0%;
    white-space: nowrap;
}

.comments-container {
    width: 100%;
    background-color: rgb(246, 246, 248);
    padding: 24px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex-wrap: wrap;
}

.comments-container div {
    display: flex;
    gap: 12px;
    align-items: center;
}

.comments-container div div {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 6px;
}

/*--------------------------------------------Home Page Projects----------------------------------------*/

.scrolling-arrows {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    padding: 20px;
}

.scrolling-arrows-numbers {
    display: flex;
    gap: 12px;
    align-items: center;
}


.scroll-button {
    width: 35px;
    height: 35px;
    cursor: pointer;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.scroll-wrapper {
    position: relative;
    padding: 0 20px 0 20px;
}

.projects-homepage {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.projects-homepage::-webkit-scrollbar {
    display: none;
}

.project-card {
    width: 320px;
    flex-shrink: 0;
    margin-right: 20px;
}

.project-image {
    border-radius: 15px;
    width: 100%;
    height: auto;
}

.text-grey {
    color: #73737B;
    text-decoration: none;
    font-weight: 700;
    margin: 16px 0px 16px 0px;
}

.projects-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.arrow {
    width: 35px;
    height: 14px;
    margin-left: 20px;
}

.project-name {
    padding: 20px 0px 10px 0px;
}

/*-------------------------------------ALL SERVICES PAGE------------------------------------*/

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    justify-content: center; /* Ensures better centering for different screen sizes */
}

/* Service Card */
.service-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    padding: 15px;
    text-align: center;
    min-height: 350px; /* Uniform height */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Image Container */
.image-container {
    position: relative;
    width: 100%;
    height: 150px;
    overflow: hidden;
    border-radius: 8px;
}

/* Service Image */
.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* Service Title on Image (Centered) */
.service-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Centers text perfectly */
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    white-space: nowrap;
}

/* Ensuring Consistency for Images */
.service-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
}

/* Subservices List */
.service-card ul {
    list-style: none;
    padding: 0;
    margin-top: 10px;
    flex-grow: 1; /* Ensures lists take up available space evenly */
}

/* Subservice Items */
.service-card ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 0;
}

/* Subservice Icons */
.service-card ul li img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 5px;
}


/* Responsive Adjustments */
@media (max-width: 768px) {
    .services-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .service-card {
        min-height: 320px;
    }

    .service-title {
        font-size: 16px;
        padding: 4px 8px;
    }
}
.service-description{
    font-style: italic;
    line-height: 1.2;
    padding-top: 5px;
}
/* Subservice Links */
.service-card ul li a {
    display: flex;
    align-items: center;
    text-decoration: none; /* Remove underline */
    color: inherit; /* Keep text color as it is */
}

/* Subservice Links */
.service-card ul li a {
    display: flex;
    align-items: center;
    text-decoration: none; /* Remove underline */
    color: inherit; /* Keep text color as it is */
}

.service-card ul li a:hover {
    color: #1e2f97; /* Color change on hover */ 
}

.service-card ul li a img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 10px; /* Space between image and text */
}

.service-card ul li a img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 10px; /* Space between image and text */
}
/*--------------------------------------BLOG------------------------------------------------------*/
.container-posts {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.post {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    max-width: 680px;
    width: 100%;
    background: linear-gradient(to bottom, #f9fafb, #e5e7eb);
    /* Light grey gradient */
    border-radius: 12px;
    /* Smooth rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    /* Soft shadow for depth */
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.post>img {
    width: 100%;
    /* Make the image take up the full width of the post */
    height: auto;
    /* Keep the aspect ratio of the image */
    object-fit: cover;
    /* Ensures the image covers the container without distortion */
}

.post>div {
    padding: 4px 12px 16px;
}

/*-----------------------------------------Progect Page----------------------------------*/
.project-page {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

/*-----------------------------------------CAREERS Page----------------------------------*/
.career-page-ul {
    padding-left: 30px;
}

.career-page-ul li {
    padding-bottom: 20px;
}

/*-----------------------------------------Finance Page----------------------------------*/
.finance-page-ul {
    padding-left: 30px;
}

.finance-page-ul li {
    padding-bottom: 20px;
}

/*-----------------------------------Contact Form--------------------------------------------*/
form {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
}

label {
    font-weight: bold;
    margin-bottom: 5px;
}

input,
textarea {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.required {
    color: red;
}

.contact-h1 {
    margin: 0;
    text-align: center;
    /* Centers the text horizontally */
}

.contact-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/*-----------------------------------Breadcrumbs--------------------------------------------*/
.breadcrumbs {
    display: flex;
    font-size: .75rem;
    line-height: 1.5;
    font-weight: 400;
    gap: 10px;
    padding-left: 20px;
}

.breadcrumbs-link {
    color: #0060DF;
    text-decoration: none;
    /* Remove underline by default */
}

.breadcrumbs-link:hover {
    text-decoration: underline;
    /* Show underline on hover */
}

.breadcrumbs-text {
    margin: 0%;
}

/*-----------------------------------One Service Page/Project--------------------------------------------*/
.servise-page-img-container {
    display: flex;
    align-items: center;
    gap: 20px;
}


.service-page-image {
    width: 300px;
    height: auto;
}

@media (max-width: 768px) {
    .servise-page-img-container {
        flex-direction: column;
    }

    .service-page-image {
        width: 100%;
        height: auto;
    }

  
}

@media (max-width: 480px) {

    .servise-page-img-container {
        flex-direction: column;
    }

    .service-page-image {
        width: 100%;
        height: auto;
    }

}
.why-choose-section {
    padding: 20px;
  }
  
  .why-choose-grid {
    display: grid;
    grid-template-columns: 1fr; /* 1 column on phones */
    gap: 20px;
    margin-top: 20px;
  }
  
  @media (min-width: 576px) {
    .why-choose-grid {
      grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
    }
  }
  
  @media (min-width: 992px) {
    .why-choose-grid {
      grid-template-columns: repeat(4, 1fr); /* 4 columns on desktops */
    }
  }
  
  .why-choose-item {
    background: #fff;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .why-choose-item-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
  }
  
  .why-choose-item-icon {
    height: 60px;
    width: 60px;
    object-fit: contain;
  }
  
  .why-choose-item-title p {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
  }
 

  #cta {
    background: #1e2f97; /* deep blue background */
    color: #fff;
    padding: 40px 20px;
    text-align: center;
    border-radius: 10px;
    margin: 40px 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
  
  #cta h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }
  
  #cta h2 a {
    color: #fff;
    text-decoration: none;
    border-bottom: 2px solid #fff;
    transition: all 0.3s ease;
  }
  
  #cta h2 a:hover {
    color: #f5d742; /* optional highlight color */
    border-bottom-color: #f5d742;
  }
  
  #cta p {
    font-size: 18px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
  }
  
  /* Optional: Responsive tweak */
  @media (max-width: 576px) {
    #cta h2 {
      font-size: 22px;
    }
  
    #cta p {
      font-size: 16px;
    }
  }
  .cta-button {
    display: inline-block;
    background-color: #fff;
    color: black;
    border: 2px solid #1e2f97;
    padding: 12px 25px;
    font-weight: bold;
    text-decoration: none;
    font-size: 18px;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-bottom: 20px;
  }
  
  .cta-button:hover {
    background-color: #1e2f97;
    color: #fff;
  }
  

  .service-page-jobs {
    padding: 20px;
  }

  
  .service-jobs-grid {
    padding-top: 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .service-page-image {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  }
  
  /* Tablet - 2 per row */
  @media (min-width: 576px) {
    .service-jobs-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  /* Desktop - 4 per row */
  @media (min-width: 992px) {
    .service-jobs-grid {
      grid-template-columns: repeat(4, 1fr);
    }
  }
  
  
/*--------------------------------------FAQ------------------------------------------*/
.faq {
    max-width: 100%;
    margin: 0%;
    display: flex;
    flex-wrap: wrap;
    padding: 20px 20px;
}

.faq h2 {
    text-align: center;
    margin-bottom: 20px;
    width: 100%;
}

.faq-item {
    width: 100%;
    padding: 5px 0px;
}

.faq-question {
    padding: 14px 22px;
    border: 1px solid #ddd;
    width: 100%;
    text-align: left;
    background: none;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #333;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #333;
}

.faq-toggle {
    font-size: 28px;
    font-weight: bold;
    transition: transform 0.3s ease-in-out;
    /* Smooth animation */
    display: inline-block;
    font-family: 'Times New Roman', Times, serif;
    padding: 0%;
    margin: 0%;
    color: #1e2f97;
}

.faq-question.active .faq-toggle {
    transform: rotate(180deg);
    /* Rotates when active */
}

.faq-answer {
    background-color: #eaeaea;
    display: none;
    padding: 14px 22px;
    margin: 5px 0px 0px 0px;
    font-size: 16px;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.faq-answer.active {
    display: block;
    opacity: 1;
    max-height: none; 
}

@media (min-width: 992px) {
    .faq-item {
        width: 50%;
        padding: 10px;
    }

    .faq-question {
        padding: 23px 32px;
    }
    .faq-answer{
        padding: 23px 32px;
        
    }
}
/*-----------------------------TESTIMOPNIALS for Stars ⭐-------------------------------------------*/
.testimonials {
    border-radius: 10px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 20px;
  }
  
  .testimonial-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-top: 20px;
  }
  
  .testimonial {
    background: #fff;
    padding: 1rem 1.5rem;
    border-left: 5px solid #1e2f97;
    padding: 15px;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
/*-------------------------------------------Cookies BANNER-----------------------------------------------*/
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9); /* Dark background */
    color: white;
    padding: 15px;
    text-align: center;
    font-size: 14px;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

#cookie-banner button {
    background: #1e2f97; /* Orange button */
    color: white;
    border: none;
    padding: 8px 16px;
    cursor: pointer;
    font-size: 14px;
    border-radius: 5px;
    transition: 0.3s;
}
/*--------------------------------------GOOGLE MAP------------------------------------------*/

.map-section {
    width: 100%;
    padding: 0 20px 20px 20px;
    margin-top: 40px;
    box-sizing: border-box;
  }
  
  .map-section iframe {
    width: 100%;
    height: 400px;
    border: 0;
    display: block;
  }





  

  