
/*** Spinner Start ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
}


/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-xl-square {
    width: 66px;
    height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    color: var(--bs-white);
    border: none;
}

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

.btn.btn-light {
    color: var(--bs-primary);
    border: none;
}

.btn.btn-light:hover {
    color: var(--bs-white);
    background: var(--bs-dark);
}

.btn.btn-dark {
    color: var(--bs-white);
    border: none;
}

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


/*** Topbar Start ***/ 
.topbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
    color: var(--bs-primary);
}

.topbar .dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.topbar .dropdown .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    padding-top: 10px;
    border: 0;
    transition: .5s;
    opacity: 1;
}
/*** Topbar End ***/


/*** Navbar Start ***/
.nav-bar {
    background: var(--bs-white);
    transition: 1s;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.nav-bar .navbar-light .navbar-brand img {
    max-height: 100px;
}

.navbar .navbar-nav .nav-item .nav-link {
    padding: 0;
}

.navbar .navbar-nav .nav-item {
    display: flex;
    align-items: center;
    padding: 15px;
}

.navbar-light .navbar-nav .nav-item:hover,
.navbar-light .navbar-nav .nav-item.active,
.navbar-light .navbar-nav .nav-item:hover .nav-link,
.navbar-light .navbar-nav .nav-item.active .nav-link {
    color: var(--bs-primary);
}

@media (max-width: 991px) {
    .navbar {
        padding: 20px 0;
    }

    .navbar .navbar-nav .nav-link {
        padding: 0;
    }

    .navbar .navbar-nav .nav-item {
        display: flex;
        padding: 20px;
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }

    .navbar .navbar-nav .nav-btn {
        display: flex;
        justify-content: start;
    }

    .navbar .navbar-nav {
        width: 100%;
        display: flex;
        margin-top: 20px;
        padding-bottom: 20px;
        background: var(--bs-light);
        border-radius: 10px;
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 8px 15px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

.dropdown .dropdown-menu .dropdown-item:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

@media (min-width: 992px) {
    .navbar {
        padding: 20px 0;
    }

    .navbar .nav-btn {
        display: flex;
        align-items: center;
        justify-content: end;
    }

    .navbar .navbar-nav {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        background: var(--bs-white);
        border-radius: 10px;
    }

    .navbar .navbar-nav .nav-btn {
        width: 100%;
        display: flex;
        margin-left: auto;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        margin-top: 20px;
        background: var(--bs-light);
        transition: .5s;
        opacity: 1;
    }
}
/*** Navbar End ***/


/*** Carousel Hero Header Start ***/
.header-carousel .header-carousel-item {
    height: 700px;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 60px;
    background: var(--bs-light);
    color: var(--bs-primary);
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev {
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    margin-left: 30px;
}
.header-carousel .owl-nav .owl-next {
    bottom: 30px;
    right: 50%;
    transform: translateX(-50%);
    margin-right: 30px;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 0 0 100px 0 var(--bs-secondary);
    color: var(--bs-white);
}

.header-carousel .header-carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .2);
    display: flex;
    align-items: center;
}

@media (max-width: 991px) {
    .header-carousel .header-carousel-item .carousel-caption {
        padding-top: 45px;
    }

    .header-carousel .header-carousel-item {
        height: 1300px;
    }
}

@media (max-width: 767px) {
    .header-carousel .header-carousel-item {
        height: 950px;
    }

    .header-carousel .owl-nav .owl-prev {
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        margin-left: -45px;
    }

    .header-carousel .owl-nav .owl-next {
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        margin-left: 45px;
    }
}
/*** Carousel Hero Header End ***/



/*** Auto Slider1 Start ***/
/* Container for slider */
.AutoSlider1-container {
    position: relative;
    max-width: 100%;
    margin: auto;
    overflow: hidden;
  }
  
  /* Styling for each slide image */
  .AutoSlider1-slide {
    position: relative;
  }
  
  .AutoSlider1-slide img {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(0.7); /* Darkens the image to 70% brightness */
  }
  
  /* Overlay for each slide */
  .AutoSlider1-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay for better text visibility */
    z-index: 1; /* Ensure the overlay appears above the image */
  }
  
  /* Text styling - Centered text */
  .AutoSlider1-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white; /* Ensure text is white */
    font-size: 24px;
    animation: textAnimation 1s ease-in-out forwards;
    z-index: 2; /* Ensure text is above the overlay */
  }
  
  .AutoSlider1-text h2 {
    margin: 0;
    font-size: 50px;
    color: white; /* Heading text is white */
  }
  
  .AutoSlider1-text p {
    margin: 5px 0;
    font-size: 20px;
    color: white; /* Paragraph text is white */
  }
  
  /* Keyframe animation for the text */
  @keyframes textAnimation {
    from {
      opacity: 0;
      transform: translate(-50%, 100%); /* Start from the bottom */
    }
    to {
      opacity: 1;
      transform: translate(-50%, -50%); /* End in the center */
    }
  }
  
  /* Dots for slide navigation */
  .AutoSlider1-dots {
    text-align: center;
    padding: 20px;
  }
  
  .AutoSlider1-dot {
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }
  
  .AutoSlider1-dot.active {
    background-color: #717171;
  }
  
  /* Responsive Design */
  @media screen and (max-width: 768px) {
    .AutoSlider1-text h2 {
      font-size: 24px;
    }
  
    .AutoSlider1-text p {
      font-size: 14px;
    }
  }
  
  
  

/*** Auto Slider1 End ***/





/*** Single Page Hero Header Start ***/
         /*About us*/   
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: /** linear-gradient(rgba(1, 95, 201, 0.9), rgba(0, 0, 0, 0.2)),**/ url(../img/Aboutus.jpeg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
    transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}

                /*Our team*/
.bg-breadcrumb1 {
    position: relative;
    overflow: hidden;
    background: /**linear-gradient(rgba(1, 95, 201, 0.9), rgba(0, 0, 0, 0.2)),**/ url(../img/Ourteam01.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
    transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}

/* Founder details styling */
.founder-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background-color: #1f6097; /* لون الخلفية */
    border-radius: 20px; /* جعل الزوايا دائرية */
    max-width: 1200px;
    margin: 40px auto;
    text-align: center;
    color: white;
    opacity: 0; /* لجعل الحاوية مخفية في البداية */
    animation: fadeIn 1.5s forwards; /* إضافة أنيميشن التلاشي */
}

.founder-details h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #333;
    opacity: 0;
    animation: fadeIn 2s forwards;
}

.founder-content {
    background-color: #1f6097;
    padding: 20px;
    border-radius: 20px;
    color: white;
    opacity: 0;
    animation: fadeIn 2s forwards 0.5s; /* أنيميشن التلاشي مع تأخير */
}

.founder-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.founder-content strong {
    font-weight: bold;
}

.founder-image {
    margin-top: 30px;
    opacity: 0;
    animation: fadeIn 2s forwards 1s; /* أنيميشن التلاشي مع تأخير */
}

.founder-image img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 10px; /* جعل الصورة بزوايا مستديرة */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* ظل خفيف حول الصورة */
}

/* Section styling for the founder details */
.founder-details-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    max-width: 1200px;
    margin: 40px auto;
    text-align: center;
}

/* Title outside the content box */
.founder-details-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #333;
    opacity: 0;
    animation: fadeIn 2s forwards;
}

/* Founder details box */
.founder-details {
    background-color: #1f6097; /* لون الخلفية */
    border-radius: 20px; /* زوايا مستديرة */
    padding: 20px;
    color: white;
    width: 100%; /* عرض كامل المستطيل */
    opacity: 0; /* لجعل المستطيل مخفي في البداية */
    animation: fadeIn 1.5s forwards; /* أنيميشن التلاشي */
}

.founder-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.founder-content strong {
    font-weight: bold;
}

/* Styling the image */
.founder-image {
    margin-top: 30px;
    opacity: 0;
    animation: fadeIn 2s forwards 1s; /* أنيميشن التلاشي مع تأخير */
}

.founder-image img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 10px; /* زوايا مستديرة للصورة */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* ظل خفيف حول الصورة */
}

/* Animation Keyframes */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px); /* ينزلق من الأسفل */
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .founder-details-section {
        padding: 15px;
    }

    .founder-content p {
        font-size: 16px;
    }

    .founder-details-section h2 {
        font-size: 24px;
    }
}

            /*Growth Prospects*/
.bg-breadcrumb2 {
    position: relative;
    overflow: hidden;
    background: /** linear-gradient(rgba(1, 95, 201, 0.9), rgba(0, 0, 0, 0.2)),**/ url(../img/GrowthProspects.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
    transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}

        /*Business Strategies*/
        .bg-breadcrumb20 {
            position: relative;
            overflow: hidden;
            background: /** linear-gradient(rgba(1, 95, 201, 0.9), rgba(0, 0, 0, 0.2)), **/  url(../img/BusinessStrategies01.jpg);
            background-position: center center;
            background-repeat: no-repeat;
            background-size: cover;
            padding: 60px 0 60px 0;
            transition: 0.5s;
        }
        
        .bg-breadcrumb .breadcrumb {
            position: relative;
        }
        
        .bg-breadcrumb .breadcrumb .breadcrumb-item a {
            color: var(--bs-white);
        }

       /*Our Ethics & Morality*/
       .bg-breadcrumb4 {
        position: relative;
        overflow: hidden;
        background: /** linear-gradient(rgba(1, 95, 201, 0.9), rgba(0, 0, 0, 0.2)), **/ url(../img/OurEthics&Morality.jpg);
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        padding: 60px 0 60px 0;
        transition: 0.5s;
    }
    
    .bg-breadcrumb .breadcrumb {
        position: relative;
    }
    
    .bg-breadcrumb .breadcrumb .breadcrumb-item a {
        color: var(--bs-white);
    }


           /*Goals And Philosophy*/
.bg-breadcrumb5 {
    position: relative;
    overflow: hidden;
    background: /** linear-gradient(rgba(1, 95, 201, 0.9), rgba(0, 0, 0, 0.2)), **/  url(../img/GoalsandPhilosophy01.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
    transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}

       /*Doctrines*/
       .bg-breadcrumb6 {
        position: relative;
        overflow: hidden;
        background: /** linear-gradient(rgba(1, 95, 201, 0.9), rgba(0, 0, 0, 0.2)), **/ url(../img/Doctrines.png);
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        padding: 60px 0 60px 0;
        transition: 0.5s;
    }
    
    .bg-breadcrumb .breadcrumb {
        position: relative;
    }
    
    .bg-breadcrumb .breadcrumb .breadcrumb-item a {
        color: var(--bs-white);
    }

           /*Our Skillset*/
.bg-breadcrumb7 {
    position: relative;
    overflow: hidden;
    background: /** linear-gradient(rgba(1, 95, 201, 0.9), rgba(0, 0, 0, 0.2)), **/ url(../img/OurSkillset.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
    transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}

       /*Certificates of Achievements*/
       .bg-breadcrumb8 {
        position: relative;
        overflow: hidden;
        background: linear-gradient(rgba(1, 95, 201, 0.9), rgba(0, 0, 0, 0.2)), url(../img/CertificatesofAchievements.jpeg);
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        padding: 60px 0 60px 0;
        transition: 0.5s;
    }
    
    .bg-breadcrumb .breadcrumb {
        position: relative;
    }
    
    .bg-breadcrumb .breadcrumb .breadcrumb-item a {
        color: var(--bs-white);
    }

           /*Why TAC*/
.bg-breadcrumb9 {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(1, 95, 201, 0.9), rgba(0, 0, 0, 0.2)), url(../img/WhyTAC01.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
    transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}

       /*Procurement And Sourcing*/
       .bg-breadcrumb10 {
        position: relative;
        overflow: hidden;
        background: /** linear-gradient(rgba(1, 95, 201, 0.9), rgba(0, 0, 0, 0.2)), **/ url(../img/ProcurementAndSourcing.jpg);
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        padding: 60px 0 60px 0;
        transition: 0.5s;
    }
    
    .bg-breadcrumb .breadcrumb {
        position: relative;
    }
    
    .bg-breadcrumb .breadcrumb .breadcrumb-item a {
        color: var(--bs-white);
    }

           /*Rental Services*/
.bg-breadcrumb11 {
    position: relative;
    overflow: hidden;
    background: /** linear-gradient(rgba(1, 95, 201, 0.9), rgba(0, 0, 0, 0.2)), */ url(../img/RentalServices.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
    transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}

       /*Engineering Design Services*/
       .bg-breadcrumb12 {
        position: relative;
        overflow: hidden;
        background: /** linear-gradient(rgba(1, 95, 201, 0.9), rgba(0, 0, 0, 0.2)), **/ url(../img/EngineeringDesignServices02.jpeg);
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        padding: 60px 0 60px 0;
        transition: 0.5s;
    }
    
    .bg-breadcrumb .breadcrumb {
        position: relative;
    }
    
    .bg-breadcrumb .breadcrumb .breadcrumb-item a {
        color: var(--bs-white);
    }

           /*Inspecting & Monitoring*/
.bg-breadcrumb13 {
    position: relative;
    overflow: hidden;
    background: /* linear-gradient(rgba(1, 95, 201, 0.9), rgba(0, 0, 0, 0.2)), */  url(../img/Inspecting&Monitoring3.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
    transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}

       /*3D Laser Scanning & Modelling*/
       .bg-breadcrumb14 {
        position: relative;
        overflow: hidden;
        background: /* linear-gradient(rgba(1, 95, 201, 0.9), rgba(0, 0, 0, 0.2)), */ url(../img/3DLaserScanning&Modelling3.jpg);
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        padding: 60px 0 60px 0;
        transition: 0.5s;
    }
    
    .bg-breadcrumb .breadcrumb {
        position: relative;
    }
    
    .bg-breadcrumb .breadcrumb .breadcrumb-item a {
        color: var(--bs-white);
    }

           /*Instrument Calliburation*/
.bg-breadcrumb15 {
    position: relative;
    overflow: hidden;
    background: /* linear-gradient(rgba(1, 95, 201, 0.9), rgba(0, 0, 0, 0.2)), */ url(../img/InstrumentCalibration4.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
    transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}

       /*Our Projects*/
       .bg-breadcrumb16 {
        position: relative;
        overflow: hidden;
        background: /* linear-gradient(rgba(1, 95, 201, 0.9), rgba(0, 0, 0, 0.2)), */ url(../img/OurProjects001.png);
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        padding: 60px 0 60px 0;
        transition: 0.5s;
    }
    
    .bg-breadcrumb .breadcrumb {
        position: relative;
    }
    
    .bg-breadcrumb .breadcrumb .breadcrumb-item a {
        color: var(--bs-white);
    }

           /*Contact US*/
.bg-breadcrumb17 {
    position: relative;
    overflow: hidden;
    background: /* linear-gradient(rgba(1, 95, 201, 0.9), rgba(0, 0, 0, 0.2)), */ url(../img/ContactUS01.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
    transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}

/*** Single Page Hero Header End ***/


/*** Feature Start ***/
.feature .feature-item {
    border-radius: 10px;
    background: var(--bs-white);
    transition: 0.5s;
}

.feature .feature-item:hover {
    background: var(--bs-primary);
}

.feature .feature-item .feature-icon {
    position: relative;
    width: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-light);
}

.feature .feature-item:hover .feature-icon i {
    z-index: 9;
}

.feature .feature-item .feature-icon::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-dark);
    transition: 0.5s;
    z-index: 1;
}

.feature .feature-item:hover .feature-icon::after {
    height: 100%;
}

.feature .feature-item .feature-icon {
    color: var(--bs-primary);
}

.feature .feature-item .feature-icon,
.feature .feature-item h4,
.feature .feature-item p {
    transition: 0.5s;
}

.feature .feature-item:hover .feature-icon {
    color: var(--bs-white);
}
.feature .feature-item:hover h4,
.feature .feature-item:hover p {
    color: var(--bs-white);
}

.feature .feature-item:hover a.btn {
    background: var(--bs-white);
    color: var(--bs-primary);
}

.feature .feature-item:hover a.btn:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}
/*** Feature End ***/


/*** Service Start ***/
.service .service-item {
    border-radius: 10px;
}
.service .service-item .service-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.service .service-item .service-img img {
    transition: 0.5s;
}

.service .service-item:hover .service-img img {
    transform: scale(1.1);
}

.service .service-item .service-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(1, 95, 201, .2);
    transition: 0.5s;
    z-index: 1;
}

.service .service-item:hover .service-img::after {
    height: 100%;
}

.service .service-item .service-img .service-icon {
    position: absolute;
    width: 70px;
    bottom: 0;
    right: 25px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: var(--bs-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 9;
}

.service .service-item .service-img .service-icon i {
    color: var(--bs-primary);
    transition: 0.5s;
}

.service .service-item:hover .service-img .service-icon i {
    transform: rotateX(360deg);
    color: var(--bs-white);
}

.service .service-item:hover .service-img .service-icon {
    bottom: 0;
    color: var(--bs-white);
    background: var(--bs-primary);
}

.service .service-content {
    position: relative;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-light);
}

.service .service-item .service-content .service-content-inner {
    position: relative;
    z-index: 9;
}

.service .service-item .service-content .service-content-inner .h4,
.service .service-item .service-content .service-content-inner p {
    transition: 0.5s;
}

.service .service-item:hover .service-content .service-content-inner .h4,
.service .service-item:hover .service-content .service-content-inner p {
    color: var(--bs-white);
}

.service .service-item:hover .service-content .service-content-inner .btn.btn-primary {
    color: var(--bs-primary);
    background: var(--bs-white);
}

.service .service-item:hover .service-content .service-content-inner .btn.btn-primary:hover {
    color: var(--bs-white);
    background: var(--bs-dark);
}

.service .service-item:hover .service-content .service-content-inner .h4:hover {
    color: var(--bs-dark);
}

.service .service-item .service-content::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-primary);
    transition: 0.5s;
    z-index: 1;
}

.service .service-item:hover .service-content::after {
    height: 100%;
}
/*** Service End ***/


/*** FAQs Start ***/
.faq-section .accordion .accordion-item .accordion-header .accordion-button {
    color: var(--bs-white);
    background: rgba(1, 95, 201, .8);
    font-size: 18px;
}

.faq-section .accordion .accordion-item .accordion-header .accordion-button.collapsed {
    color: var(--bs-primary);
    background: var(--bs-light);
}
/*** FAQs End ***/


/*** Blog Start ***/
.blog .blog-item {
    border-radius: 10px;
    transition: 0.5s;
}

.blog .blog-item:hover {
    box-shadow: 0 0 45px rgba(0, 0, 0, .1);
}

.blog .blog-item:hover .blog-content {
    background: var(--bs-white);
}

.blog .blog-item .blog-img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    position: relative;
    overflow: hidden;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(1, 95, 201, .2);
    transition: 0.5s;
    z-index: 1;
}

.blog .blog-item:hover .blog-img::after {
    height: 100%;
}

.blog .blog-item .blog-img .blog-categiry {
    position: absolute;
    bottom: 0;
    right: 0;
    border-top-left-radius: 10px;
    display: inline-flex;
    color: var(--bs-white);
    background: var(--bs-primary);
    z-index: 9;
}

.blog .blog-item .blog-content {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-light);
}

.blog .blog-item .blog-content a.btn {
    color: var(--bs-dark);
}

.blog .blog-item:hover .blog-content a.btn:hover {
    color: var(--bs-primary);
}
/*** Blog End ***/



/*** about us start ***/

/* Section Styling */
.aboutuss-section {
    width: 100%;
    padding: 20px;
    font-family: 'Roboto', Arial, sans-serif;
}

/* Top Content Styling (Text on left, Image on right) */
.aboutuss-top-content {
    display: flex;
    justify-content: space-between;
    align-items: top;
    margin-bottom: 40px;
    flex-wrap: wrap; /* Responsive design */
}

.aboutuss-text-block {
    flex: 1;
    padding-right: 30px; /* Adjusted padding closer to the image */
    opacity: 0;
    animation: aboutuss-fade-in 1s forwards;
    font-size: 15px;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.aboutuss-text-block p {
    margin-bottom: 15px;
}

.aboutuss-image-block {
    flex: 1;
    max-width: 500px;
    position: relative;
    padding-left: 20px;
}

.aboutuss-image-block img {
    width: 100%;
    transition: transform 0.6s ease-in-out;
}

.aboutuss-image-block img:hover {
    transform: translateX(10px); /* New subtle slide effect */
}

/* Bottom Content Styling (Image on left, Text on right) */
.aboutuss-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: top;
    flex-wrap: wrap;
    margin-top: 40px;
}

.aboutuss-image-left {
    flex: 1;
    max-width: 500px;
    padding-right: 20px;
    position: relative;
}

.aboutuss-image-left img {
    width: 100%;
    transition: transform 0.6s ease-in-out;
}

.aboutuss-image-left img:hover {
    transform: translateX(-10px); /* Slide in from the right */
}

.aboutuss-text-right {
    flex: 1;
    padding-left: 30px; /* Adjusted padding closer to the image */
    opacity: 0;
    animation: aboutuss-fade-in 1s forwards;
    font-size: 15px;
    line-height: 1.6;
}

.aboutuss-text-right p {
    margin-bottom: 15px;
}

/* Centered Text Styling */
.aboutuss-centered-text {
    text-align: center;
    margin-top: 40px;
    font-size: 16px;
    /* font-weight: bold; */
    opacity: 0;
    animation: aboutuss-fade-in 1.5s forwards;
}

/* Keyframes for animations */
@keyframes aboutuss-fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .aboutuss-top-content, .aboutuss-bottom-content {
        flex-direction: column;
    }

    .aboutuss-image-block, .aboutuss-image-left {
        padding: 0;
        margin-bottom: 20px;
    }

    .aboutuss-text-right, .aboutuss-text-block {
        padding: 0;
    }
}




/*** about us end ***/

/*** Team Start ***/   /*Our Team*/
.team .team-item .team-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
} 

.team .team-item .team-img img {
    transition: 0.5s;
}

.team .team-item:hover .team-img img {
    transform: scale(1.1);
}

.team .team-item .team-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: 0.5s;
}

.team .team-item:hover .team-img::after {
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
}

.team .team-item .team-img .team-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    margin-bottom: -100%;
    transition: 0.5s;
    z-index: 9;
}

.team .team-item:hover .team-img .team-icon {
    margin-bottom: 0;
}

.team .team-item .team-title {
    color: var(--bs-white);
    background: var(--bs-primary);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    transition: 0.5s;
}

.team .team-item .team-title h4 {
    color: var(--bs-white);
}

.team .team-item:hover .team-title {
    background: var(--bs-dark);
}


.rounded-rectangle {
    display: inline-block; 
    background-color: rgb(0, 114, 171); 
    border-radius: 25px; 
    color: white; 
    font-size: 20px; 
    text-align: center; 
    padding: 10px 20px;
    
}

/*** Team End ***/  /*** Our Team End ***/


/***Growth Prospects Start***/
/* Growth Prospects Section Styling */
.growth-prospects-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px;
    gap: 20px;
    flex-wrap: wrap; /* For responsiveness */
    font-family: 'Roboto', sans-serif;
}

/* Left Text Section Styling */
.growth-text {
    flex: 1;
    max-width: 50%;
    padding-right: 20px;
}

.growth-text h2 {
    font-size: 24px;
    color: #0046ad;
    margin-bottom: 10px;
}

.growth-text p {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
}

/* Right Chart Section Styling */
.growth-chart {
    flex: 1;
    max-width: 50%;
}

.growth-chart h2 {
    font-size: 24px;
    color: #0046ad;
    margin-bottom: 20px;
}

/* Bar Chart Styling */
.bar {
    background-color: #f0f4ff;
    margin-bottom: 15px;
    position: relative;
    height: 25px;
    border-radius: 5px;
    overflow: hidden;
}

.bar-inner {
    background-color: #0046ad;
    height: 100%;
    transition: width 0.5s ease-in-out;
    background-image: linear-gradient(135deg, rgba(0, 70, 173, 0.9) 25%, rgba(0, 70, 173, 0.7) 25%, rgba(0, 70, 173, 0.7) 50%, rgba(0, 70, 173, 0.9) 50%);
}

.bar:hover .bar-inner {
    background-color: #003585;
    transition: width 0.5s ease-in-out, background-color 0.5s ease-in-out;
}

.bar .label {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-weight: bold;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .growth-prospects-section {
        flex-direction: column;
    }

    .growth-text, .growth-chart {
        max-width: 100%;
    }
}

/***End of Growth Prospects***/


/*** Our Ethics & Morality Start ***/

.ethics-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
    font-family: Arial, sans-serif;
    color: #333;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInUp 1s forwards ease-in-out;
}

.ethics-intro {
    background-color: #3d89b1;
    color: #fff;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    font-family: Arial, sans-serif;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInUp 1.2s forwards ease-in-out;
}

.ethics-intro p {
    margin: 0;
}

.ethics-timeline {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.ethics-item {
    position: relative;
    width: 48%;
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: Arial, sans-serif;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInSlide 1.5s forwards ease-in-out;
}

.ethics-item:hover {
    transform: translateY(-5px);
}

.ethics-content h3 {
    margin-top: 0;
    font-size: 1.4rem;
    color: #333;
}

.ethics-content p {
    margin: 10px 0 0;
    font-size: 1rem;
    color: #666;
}

.ethics-number {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1rem;
    color: #3d89b1;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .ethics-timeline {
        flex-direction: column;
        gap: 20px;
    }

    .ethics-item {
        width: 100%;
    }
}

/* Animations */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInSlide {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.ethics-item:nth-child(1) {
    animation-delay: 0.2s;
}
.ethics-item:nth-child(2) {
    animation-delay: 0.4s;
}
.ethics-item:nth-child(3) {
    animation-delay: 0.6s;
}
.ethics-item:nth-child(4) {
    animation-delay: 0.8s;
}

/*** Our Ethics & Morality End ***/


/*** Goals and Philosophy Start ***/

/* styles.css */

/* قم بتطبيق التنسيق فقط على قسم goals-philosophy */
.goals-philosophy {
    background-color: #f9f9f9;
    padding: 40px 20px;
    animation: fadeIn 2s ease-in-out;
    font-family: Arial, sans-serif; /* تحديد الخطوط داخل القسم فقط */
    line-height: 1.6;
}

.goals-philosophy .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.goals-philosophy .section-title {
    text-align: center;
    font-size: 2em;
    color: #2d4f91; /* لون مشابه للأزرق في الصورة */
    margin-bottom: 20px;
}

.goals-philosophy .content p {
    font-size: 1em;
    color: #333;
    margin-bottom: 15px;
}

.goals-philosophy .content strong {
    font-weight: bold;
}

@media (max-width: 768px) {
    .goals-philosophy .section-title {
        font-size: 1.5em;
    }
    .goals-philosophy .content p {
        font-size: 0.9em;
    }
}

/* Animation for fade-in effect */
@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}


/***Goals and Philosophy End ***/


/*** Doctrines Start ***/
/* styles.css */

/* Styles for the doctrines section only */
.doctrines-section {
    padding: 40px 20px;
    text-align: center;
    font-family: Arial, sans-serif;
}

.doctrines-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5em;
    color: #2d4f91; /* Blue color matching the image */
    margin-bottom: 30px;
}

.doctrines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.doctrine-item {
    color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.doctrine-item:hover {
    transform: translateY(-10px);
}

.principles {
    background-color: #204b89;
    color: white;
    padding: 20px;
    border-radius: 20px;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1em;
}

/* Responsive styles */
@media (max-width: 768px) {
    .section-title {
        font-size: 2em;
    }
    .principles {
        font-size: 0.9em;
    }
}


/*** Doctrines End ***/


/*** Our Skillset Start ***/

/*** Our Skillset End ***/


/*** Certificates of Achievements Start ***/

.certificates-container {
    text-align: center;
    margin: 40px 0;
}

.certificates-title {
    font-family: 'Arial', sans-serif;
    color: #0A4DA2;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.certificates {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.certificate {
    width: 30%;
    max-width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.certificate img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.certificate:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Responsive design */
@media (max-width: 768px) {
    .certificate {
        width: 45%;
    }
}

@media (max-width: 480px) {
    .certificate {
        width: 90%;
    }
}


/*** Certificates of Achievements End ***/


/*** Why TAC? Start ***/

/* styles.css */
.whytac-section {
    padding: 40px 20px;
    background-color: #f4f4f4;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

.whytac-heading {
    text-align: center;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease-in-out;
}

.whytac-heading h2 {
    font-size: 2.5rem;
    color: #2D4F91;
    position: relative;
}

.whytac-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.whytac-image {
    flex: 1 1 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0; /* Backup color */
    position: relative;
}

.whytac-img-responsive {
    max-width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease-in-out;
}

.whytac-content {
    flex: 1 1 60%;
    padding: 20px;
    animation: fadeIn 1.2s ease-in-out;
}

.animated-text,
.animated-list {
    opacity: 0;
    animation: fadeInUp 1s ease-in-out forwards;
    animation-delay: 0.5s; /* Delays start of the text animation */
}

.whytac-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.whytac-content ul li {
    margin-bottom: 10px;
    color: #555;
    position: relative;
    padding-left: 20px;
}

.whytac-content ul li::before {
    content: '•';
    color: hsl(210, 1%, 42%);
    font-weight: bold;
    position: absolute;
    left: 0;
}

@media screen and (max-width: 768px) {
    .whytac-container {
        flex-direction: column;
    }

    .whytac-image,
    .whytac-content {
        flex: 1 1 100%;
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.whytac-img-responsive:hover {
    transform: scale(1.05);
}



/*** Why TAC? End ***/


/*** Procurement and Sourcing Start***/

/* styles.css */
.procurement-section {
    padding: 40px 20px;
    font-family: 'Arial', sans-serif;
    background-color: #ffffff;
    line-height: 1.6;
}

.procurement-heading {
    text-align: center;
    margin-bottom: 30px;
    animation: fadeInDown 1s ease-in-out;
}

.procurement-heading h2 {
    font-size: 2.5rem;
    color: #333;
}

.procurement-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.procurement-content {
    flex: 1 1 60%;
    padding: 20px;
    animation: fadeIn 1.2s ease-in-out;
}

.procurement-description {
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInUp 1s ease-in-out forwards;
    animation-delay: 0.5s;
}

.procurement-list {
    list-style: none;
    padding: 0;
    margin: 0;
    opacity: 0;
    animation: fadeInUp 1s ease-in-out forwards;
    animation-delay: 0.7s;
}

.procurement-list li {
    margin-bottom: 8px;
    color: #555;
    padding-left: 20px;
    position: relative;
}

.procurement-list li::before {
    content: '•';
    color: #3498db;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.procurement-image {
    flex: 1 1 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 1.5s ease-in-out;
}

.procurement-img-responsive {
    max-width: 100%;
    height: auto;
    display: block;
}

.procurement-services {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    animation: fadeInUp 1s ease-in-out forwards;
    animation-delay: 0.8s;
}

.service-box {
    background-color: #F7F7F7;
    padding: 20px;
    border-radius: 8px;
    flex: 1 1 45%;
    margin: 5px;
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.service-box:hover {
    transform: scale(1.05);
}

.service-icon img {
    width: 50px;
    margin-bottom: 10px;
}

.service-content h3 {
    font-size: 1.5rem;
    color: #2F3475;
    margin-bottom: 10px;
}

.service-content p {
    color: #888C8C;
}

@media screen and (max-width: 768px) {
    .procurement-container {
        flex-direction: column;
    }

    .procurement-content,
    .procurement-image {
        flex: 1 1 100%;
    }

    .procurement-services {
        flex-direction: column;
    }

    .service-box {
        margin-bottom: 20px;
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


/*** Procurement and Sourcing End ***/


/*** Our Projects Start ***/

.ourprojectt-container {
    width: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
  }
  
  .ourprojectt-card {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 90%;
    max-width: 1200px;
    margin-bottom: 20px;
    transition: transform 0.3s ease-in-out;
  }
  
  .ourprojectt-card:hover {
    transform: translateY(-10px);
  }
  
  .ourprojectt-image {
    width: 100%;
    overflow: hidden;
  }
  
  .ourprojectt-image img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .ourprojectt-content {
    padding: 20px;
    text-align: left;
  }
  
  .ourprojectt-content h2 {
    font-size: 24px;
    color: #0a5798;
    margin-bottom: 10px;
  }
  
  .ourprojectt-location {
    font-size: 18px;
    color: #555;
    margin-bottom: 10px;
  }
  
  .ourprojectt-content p {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 15px;
  }
  
  .ourprojectt-underline {
    width: 90%;
    height: 4px;
    background: linear-gradient(90deg, rgba(10, 87, 152, 1) 0%, rgba(50, 205, 255, 1) 100%);
    margin-top: 10px;
    border-radius: 2px;
  }
  
  /* Responsive Design */
  @media screen and (max-width: 768px) {
    .ourprojectt-card {
      flex-direction: column;
    }
    
    .ourprojectt-content h2 {
      font-size: 20px;
    }
  
    .ourprojectt-content p {
      font-size: 14px;
    }
  }
  
  /* Animation */
  .ourprojectt-card {
    animation: fadeIn 1.5s ease-in-out;
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  


/*** Our Projects Ebd ***/


/*** TAC Profile Start ***/
/* Parallax Section */
.scroll-background-section {
    position: relative;
    height: 50vh; /* Full viewport height */
    background-image: url('../img/TACProfile.jpeg'); /* Replace with your image path */
    background-attachment: fixed; /* Enables parallax scrolling */
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
  }
  
  .scroll-background-content {
    text-align: center;
    color: white; /* White text to contrast with background */
    z-index: 2;
  }
  
  .scroll-background-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(0, 0, 0, 0.5); /* Dark overlay to enhance text visibility */
    z-index: 1;
  }
  
  /* Heading Styling */
  .scroll-background-content h1 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #ffffff; /* Button color */
  }
  
  /* Button Styling */
  .scroll-button {
    padding: 15px 30px;
    background-color: #3a3aeb; /* Button color */
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    z-index: 2;
  }
  
  .scroll-button:hover {
    background-color: #2323a1; /* Darker shade on hover */
  }
  
  /* Responsive Design */
  @media screen and (max-width: 768px) {
    .scroll-background-content h1 {
      font-size: 32px;
    }
  
    .scroll-button {
      padding: 10px 20px;
      font-size: 16px;
    }
  }
  
/*** TAC Profile End ***/


/*** Testimonial Start ***/ 
.testimonial-carousel .owl-stage-outer {
    margin-top: 58px;
    margin-right: -1px;
}

.testimonial .owl-nav .owl-prev {
    position: absolute;
    top: -58px;
    left: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-prev:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}

.testimonial .owl-nav .owl-next {
    position: absolute;
    top: -58px;
    right: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-next:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}
/*** Testimonial End ***/



 /*** Client Partnerships Start ***/

/* Styling for the title */
.client-carousel-title {
    text-align: center;
    font-size: 24px;
    color: #015FD3;
    margin-bottom: 20px;
}

/* Main carousel wrapper */
.client-carousel-wrapper {
    position: relative;
    overflow: hidden;
    width: 70%; /* Adjust the width as necessary */
    max-width: 1000px;
    margin: 0 auto;
}

/* Slide container */
.client-carousel-slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: max-content; /* Allows the container to expand based on content */
}

/* Individual slide styling */
.client-slide {
    min-width: 200px; /* Adjust the image size here */
    height: 110px;
    margin: 0 10px; /* Adjust space between images */
    flex-shrink: 0;
}

.client-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Ensures proper fit of the image */
}

/* Ensuring that the carousel stays centered */
.client-carousel-wrapper::after {
    content: "";
    display: table;
    clear: both;
}

/* Responsive design for smaller screens */
@media screen and (max-width: 768px) {
    .client-slide {
        min-width: 150px;
        height: 100px;
    }
}









  

/*** Client Partnerships End ***/


/*** Contact Start ***/
.contact .contact-img {
    position: relative;
}

.contact .contact-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background: rgba(255, 255, 255, 0.9);
    z-index: 1;
    animation-name: image-efects;
    animation-duration: 10s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transition: 0.5s
}

@keyframes image-efects {
    0%  {border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;}

    25% {border-radius: 35% 65% 27% 73% / 71% 25% 75% 29%;}

    50% {border-radius: 41% 59% 45% 55% / 32% 21% 79% 68%;}

    75% {border-radius: 69% 31% 39% 61% / 70% 83% 17% 30%;}

    100% {border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;}
}

.contact .contact-img .contact-img-inner {
    position: relative;
    z-index: 9;
}
/*** Contact End ***/


/*** Footer Start ***/
.footer {
    background: var(--bs-dark);
}

.footer .footer-item {
    display: flex;
    flex-direction: column;
}

.footer .footer-item a {
    line-height: 35px;
    color: var(--bs-body);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
}

.footer .footer-item a:hover {
    color: var(--bs-primary);
}

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
    transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--bs-primary);
}


.footer .footer-item .footer-instagram {
    position: relative;
    overflow: hidden;
}

.footer .footer-item .footer-instagram img {
    transition: 0.5s;
}

.footer .footer-item .footer-instagram:hover img {
    transform: scale(1.2);
}

.footer .footer-item .footer-instagram .footer-search-icon {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    opacity: 0;
}

.footer .footer-item .footer-instagram:hover .footer-search-icon {
    opacity: 1;
    background: rgba(0, 0, 0, .6);
}

.footer .footer-item .footer-btn a {
    background: var(--bs-light);
    color: var(--bs-primary);
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-primary);
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--bs-white);
}
/*** Footer End ***/


/*** copyright Start ***/
.copyright {
    background: var(--bs-dark);
    border-top: 1px solid rgba(255, 255, 255, .08);
}
/*** copyright end ***/


