
body{
    font-family: 'Roboto Condensed', sans-serif;
}
.row {
    display: flex;
    flex-wrap: wrap;
}

.col-md-6 {
    width: 100%;
    padding: 15px;
}

h1 {
    font-size: 3rem;
    font-weight: bold;
}

h2 {
    color: #ff7300;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

p {
    color: #888;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    margin: 5px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

#project-btn {
    background-color: #ff7300;
    color: white;
}

#call-btn, #con {
    background-color: transparent;
    border: 1px solid #ff7300;
    color: #ff7300;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container-fluid {
    padding-left: 0;
    padding-right: 0;
}

.image-section {
    display: flex;
    width: 100%;
    height: 90vh; /* Full screen height */
    position: relative;
    margin: 0; /* Remove any margin */
}

.image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block; /* Removes any default inline spacing */
}

.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 2rem;
    font-weight: bold;
    z-index: 1; /* Ensure the text is above the image */
    font-family: 'Roboto Condensed', sans-serif;
}

.content-section {
    background-color: black;
    color: white;
    padding: 5px;
    font-family: 'Roboto Condensed', sans-serif;
}

.vision, .mission {
    margin-bottom: 10px;
}

.content-section button {
    background-color: black;
    border: 1px solid white;
    color: white;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: 'Roboto Condensed', sans-serif;
}

.content-section button:hover {
    background-color: #ff7300 !important;
}

@media (min-width: 768px) {
    .col-md-6 {
        width: 50%;
    }

    .container-fluid .row {
        display: flex;
        flex-wrap: nowrap;
    }

    .content-section {
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: auto;
        font-family: 'Roboto Condensed', sans-serif;
    }
    

    .vision, .mission {
        flex: 1;
        padding: 20px;
    }
}
.management-profiles {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.management-profiles h2 {
    text-align: center;
    margin-bottom: 30px;
    font-family: 'Roboto Condensed', sans-serif;
}

.profiles-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    font-family: 'Roboto Condensed', sans-serif;
}

.profile-card {
    background-color: black;
    color: white;
    width: 100%;
    max-width: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-family: 'Roboto Condensed', sans-serif;
}

.profile-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.profile-card img:hover {
    transform: scale(1.1);
}

.profile-card h3 {
    font-size: 18px;
    margin: 10px 0 5px;
    padding: 0 10px;
    font-family: 'Roboto Condensed', sans-serif;
}

.profile-card p {
    font-size: 14px;
    margin: 0 0 10px;
    padding: 0 10px;
    font-family: 'Roboto Condensed', sans-serif;
}

.social-links {
    display: flex;
    justify-content: flex-start;
    padding: 0 10px 10px;
}

.social-links a {
    color: white;
    margin-right: 10px;
    font-size: 18px;
}
.social-links a:hover {
    color: #ff7300;
    
}

@media (min-width: 768px) {
    .profile-card {
        width: calc(50% - 20px);
    }
}

@media (min-width: 1024px) {
    .profile-card {
        width: calc(33.333% - 20px);
    }
}

.how-we-work {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
    font-family: 'Roboto Condensed', sans-serif;
}

.how-we-work h2 {
    font-size: 3rem;
    color: #333;
    margin-bottom: 20px;
    font-family: 'Roboto Condensed', sans-serif;
}

.underline {
    width: 80px;
    height: 4px;
    background-color: #ff7300;
    margin: 0 auto 60px;
}

.work-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    font-family: 'Roboto Condensed', sans-serif;
}

.step {
    flex: 1 1 250px;
    max-width: 300px;
    position: relative;
    padding: 30px;
    border-radius: 15px;
    background-color: rgba(243, 247, 253, 1);
    height: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.6s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    font-family: 'Roboto Condensed', sans-serif;
}

.step::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    border: 3px solid #ff7300;
    transform: scale(0);
    transition: transform 0.6s ease;
    z-index: -1; /* Ensures it is behind the content */
}

.step:hover::before {
    transform: scale(1);
}

.step:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    background-color: rgba(233, 237, 243, 1); /* Slightly darker shade on hover */
}

.step-icon {
    font-size: 3rem;
    color: #ff7300;
    margin-bottom: 30px;
}

.step-number {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 40px;
    height: 40px;
    background-color: #ff7300;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.step h3 {
    font-size: 1.5rem;
    color: #333;
    margin-top: 20px;
    margin-bottom: 15px;
    font-family: 'Roboto Condensed', sans-serif;
}

.step p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    font-family: 'Roboto Condensed', sans-serif;
}

@media (max-width: 768px) {
    .work-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .step {
        width: 100%;
        max-width: 350px;
    }
}

.trusted-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 100px;
    background-color: #f7f9fc;
}

.trusted-section .content {
    flex: 1;
    min-width: 300px;
    padding: 20px;
    font-family: 'Roboto Condensed', sans-serif;
}

.trusted-section .content h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
    font-family: 'Roboto Condensed', sans-serif;
}

.trusted-section .content h2 .highlight {
    display: block;
    font-size: 1rem;
    color: #ff7300;
    margin-bottom: 10px;
    font-family: 'Roboto Condensed', sans-serif;
}

.trusted-section .content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-family: 'Roboto Condensed', sans-serif;
}

.trusted-section .content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    font-family: 'Roboto Condensed', sans-serif;
}

.trusted-section .content ul li {
    font-size: 1rem;
    color: #666;
    margin-bottom: 10px;
    font-family: 'Roboto Condensed', sans-serif;
}

.trusted-section .content ul li i {
    color: #ff7300;
    margin-right: 10px;
   
}

.trusted-section .content .btn-consultant {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff7300;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    font-family: 'Roboto Condensed', sans-serif;
}

.trusted-section .content .btn-consultant:hover {
    background-color: #ff7300;
}

.trusted-section .image {
    flex: 1;
    position: relative;
    min-width: 300px;
    padding: 20px;
    text-align: center;
}

.trusted-section .image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.trusted-section .image .label {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    padding: 20px 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    font-family: 'Roboto Condensed', sans-serif;
}

.trusted-section .image .label h3 {
    font-size: 1.5rem;
    color: #333;
    margin: 0;
    font-family: 'Roboto Condensed', sans-serif;
}

.trusted-section .image .label p {
    font-size: 1rem;
    color: #666;
    margin: 0;
    font-family: 'Roboto Condensed', sans-serif;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .trusted-section {
        padding: 50px;
    }
}

@media (max-width: 768px) {
    .trusted-section {
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }

    .trusted-section .content {
        text-align: center;
    }

    .trusted-section .image {
        margin-top: 20px;
    }

    .trusted-section .content h2 {
        font-size: 1.5rem;
    }

    .trusted-section .content p {
        font-size: 0.9rem;
    }

    .trusted-section .content ul li {
        font-size: 0.9rem;
    }

    .trusted-section .content .btn-consultant {
        padding: 10px 15px;
        font-size: 0.9rem;
    }

    .trusted-section .image .label h3 {
        font-size: 1.2rem;
    }

    .trusted-section .image .label p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .trusted-section .content h2 {
        font-size: 1.2rem;
    }

    .trusted-section .content p {
        font-size: 0.8rem;
    }

    .trusted-section .content ul li {
        font-size: 0.8rem;
    }

    .trusted-section .content .btn-consultant {
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    .trusted-section .image .label h3 {
        font-size: 1rem;
    }

    .trusted-section .image .label p {
        font-size: 0.8rem;
    }
}


.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    flex-wrap: wrap;
    font-family: 'Roboto Condensed', sans-serif;
}
.faq-left {
    flex: 1;
    min-width: 300px;
    padding-right: 40px;
}
.faq-right {
    flex: 2;
    min-width: 300px;
}
.faq-title {
    color: #ff7300;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
    font-family: 'Roboto Condensed', sans-serif;
}
h2 {
    color: #333;
    font-size: 36px;
    margin-bottom: 20px;
    font-family: 'Roboto Condensed', sans-serif;
}
.learn-more {
    background-color: #ff7300;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: 'Roboto Condensed', sans-serif;
}
.learn-more:hover {
    background-color: #ff7300;
}
.faq-item {
    background-color: white;
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;

}
.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Roboto Condensed', sans-serif;
}
.faq-question h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
    font-family: 'Roboto Condensed', sans-serif;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease-out;
    opacity: 0;
    font-family: 'Roboto Condensed', sans-serif;
}
.faq-answer.active {
    max-height: 1000px; /* Adjust based on your content */
    opacity: 1;
    padding: 0 20px 20px;
}
.faq-answer p {
    margin: 0;
    padding: 10px 0;
    font-family: 'Roboto Condensed', sans-serif;
}
.faq-toggle {
    font-size: 24px;
    color: #999;
    transition: transform 0.3s ease;
}
.faq-toggle.active {
    transform: rotate(90deg);
}
@media (max-width: 768px) {
    .faq-container {
        flex-direction: column;
    }
    .faq-left {
        padding-right: 0;
        margin-bottom: 40px;
    }
}

.experience-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: Arial, sans-serif;
  }
  
  .years-experience {
    color: #ff7300;
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  .main-title {
    font-size: 32px;
    color: #333;
    margin-bottom: 20px;
    font-family: 'Roboto Condensed', sans-serif;
  }
  
  .description {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
    font-family: 'Roboto Condensed', sans-serif;
  }
  
  .image-gallery {
    position: relative;
    width: 100%;
    height: 300px; /* Adjust as needed */
    overflow: hidden;
}

.gallery-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.5s ease-in-out;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
  
  .gallery-item p {
    padding: 15px;
    text-align: center;
    font-weight: bold;
    color: #333;
    background-color: #f8f8f8;
    margin: 0;
    font-family: 'Roboto Condensed', sans-serif;
  }
  
  @media (max-width: 1024px) {
    .main-title {
      font-size: 28px;
    }
    
    .description {
      font-size: 15px;
    }
  }
  
  @media (max-width: 768px) {
    .gallery-item {
      flex-basis: calc(50% - 15px);
    }
    
    .main-title {
      font-size: 24px;
    }
  }
  
  @media (max-width: 480px) {
    .gallery-item {
      flex-basis: 100%;
    }
    
    .years-experience {
      font-size: 16px;
    }
    
    .main-title {
      font-size: 22px;
    }
    
    .description {
      font-size: 14px;
    }
  }

  