#preloader {
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #ffffff, #d1dcfc, #b0afff);
}

.blob-loader {
  position: relative;
  width: 180px;
  height: 180px;
  text-align: center;
}

.blob-loader svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 20px rgba(13, 110, 253, 0.2));
}

.rotating-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140px;
  height: 140px;
  border: 3px solid transparent;
  border-top: 3px solid #0d6efd;
  border-right: 3px solid #0d6efd;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: rotateRing 1.2s linear infinite;
}

.logo-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.logo-center img {
  width: 60px;
  height: auto;
  border-radius: 12px;
}

.loading-text {
  margin-top: 20px;
  font-size: 18px;
  color: #0d6efd;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  animation: pulseText 2s infinite;
}

@keyframes pulseText {
  0%, 100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

@keyframes rotateRing {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}


/* HEDAER SECTION START HERE */

header {
    position: absolute;
    z-index: 2;
    top: 0;
}

.header-section {
    position: absolute;
    z-index: 3;
    width: 100%;
}

.navbar-nav {
    gap: 30px;
}

.nav-item a {
    font-size: 16px !important;
    font-weight: 500;
    transition: all 0.4s;
}

.nav-item a:hover {
    color: #509AC8 !important;
}


.navbar-brand img {
    width: 75%;
}

/* HEDAER SECTION EDNS HERE */

/* HERO SECTION START HERE */

.hero-section {
    position: relative;
    z-index: 1;
    background-image: url(../assets/hero-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
}

.hero-section h1 {
    font-size: 80px;
    font-weight: 400;
    line-height: 82px;
}

.tittle-sp {
    color: #509AC8;
}

.hero-content {
    padding-top: 100px;
}

.hero-content p {
    padding-right: 150px;
}

.hero-buttons {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.hero-btn-1 a {
    padding: 10px 20px;
    background-color: #090909;
    color: #ffff !important;
    border-radius: 30px;
    font-size: 16px;
}

.hero-client-imgs img {
    width: 33%;
    height: 45px;
}

.hero-btn-img2 {
    margin-left: -12px;
}

.hero-client-imgs {
    margin-top: -10px;
    display: flex;
}

.hero--btn-innerbtn img {
    width: 100% !important;
}

.hero--btn-innerbtn {
    margin-left: 20px;
    border: 1px solid #090909;
    padding: 20px;
    border-radius: 50%;
    height: 45px;
    width: 45px;
    align-items: center;
    display: flex;
    justify-content: center;
    margin-left: 10px;
    transition: all 0.3s;
}

.hero--btn-innerbtn:hover {
    transform: scale(1.1);
    transform: rotate(90deg);
}

.hero--btn-innerbtn i {
    transform: rotate(-45deg);
}

.hero-tags {
    margin-top: 30px;
    gap: 10px;
}

.hero-tags a {
    padding: 8px 15px !important;
    border: 1px solid #999999;
    border-radius: 30px;
    font-size: 14px !important;
    color: #000000a6 !important;
    margin-bottom: 7px;
}

.tags-r1,
.tags-r2,
.tags-r3 {
    display: flex;
    gap: 10px;
}

.hero-img img {
    width: 100%;
}

.hero-img {
    padding-top: 80px;
    position: relative;
    z-index: 3;
}

.brand-card {
    position: absolute;
    bottom: -25px;
    z-index: 4;
}

.brand-card img {
    margin-left: -25px;
    width: 95%;
}

/* HERO SECTION END HERE */

/* ABOUT SECTION START HERE */

.about-section {
    padding-top: 100px;
    padding-bottom: 100px;
}

.about-content {
    text-align: center;
}

.image-stack {
    display: block;
}

.about-main {
    display: flex;
}

.about-content-main {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-content h2 {
    font-size: 36px;
}

.about-main img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0px 4px 27px -12px rgba(0, 0, 0, 0.75);
}


.about-content p {
    padding: 0 100px;
    margin-bottom: 30px;
    margin-top: 30px;
}

.about-btn a {
    padding: 10px 20px;
    background-color: #090909;
    color: #ffff !important;
    border-radius: 30px;
    font-size: 16px;
}

.about-btn i {
    transform: rotate(-45deg);
    margin-left: 5px;
}

.left-row {
    margin-right: -100px;
}

.right-row {
    margin-left: -100px;
}

.hero-content {
    opacity: 1;
    transform: translateY(0);
    transition: transform 1s, opacity 1s;
}


/* ABOUT SECTION END HERE */

/* SERVICE SECTION START HERE */

/* ACHIVMENTS START HERE */

.service-section {
    background-image: url(../assets/service-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 15px;
}

.achievements {
    padding-top: 90px;
}

.achievements .item {
    text-align: center;
}

.achievements .item .counter {
    color: #000000;
    font-size: 42px;
}

.count {
    display: flex;
    justify-content: center;
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
}

.count h3 {
    margin-bottom: 0 !important;
    align-items: center;
    font-family: "Montserrat", sans-serif;
}

/* ACHIVMENTS END HERE */

.service-section h2 {
    font-size: 36px;
    text-align: center;
    margin-top: 30px;
    padding: 0 150px;
}

.h2-sp {
    color: #509AC8;
}

/* SERVICE SLIDER START HERE */

.service-card {
    border: 1px solid #999999;
    border-radius: 30px;
    padding: 10px;
    margin-right: 10px;
    transition: background-color 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 0;
    backdrop-filter: blur(40px);
    background-color: #f7f7f7;
}

.achievements-main {
    display: flex;
    justify-content: center;
    gap: 30px;
}


.service-card::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 20%;
    width: 0;
    height: 0;
    background-color: #007bff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
    z-index: -1;
}

.service-card:hover::before {
    width: 300%;
    height: 300%;
}

.service-card h3,
.service-card p {
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.service-card:hover h3,
.service-card:hover p {
    color: #fff !important;
}

.slick-slide {
    padding-right: 10px;
}

.s-slider-img img {
    width: 100%;
    border-radius: 20px;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 600;
}

.btn-group {
    margin-bottom: 30px;
    gap: 30px;
}

.btn-group button {
    border-radius: 30px !important;
    padding: 10px 0;
    font-weight: 600;
}

.service-slider {
    margin-bottom: 70px;
}

.slick-prev,
.slick-next {
    z-index: 10;
    width: 50px !important;
    height: 50px !important;
    background: linear-gradient(233deg, rgb(255, 255, 255) 0%, rgba(232, 232, 232, 1) 100%) !important;
    border-radius: 50%;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.slick-prev {
    margin-left: -10px;
}

.slick-prev:hover,
.slick-next:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.slick-prev:before,
.slick-next:before {
    font-size: 20px;
    color: #509AC8 !important;
    opacity: 1;
}

.slick-prev {
    left: -60px;
}

.slick-next {
    right: -60px;
}

@media (max-width: 768px) {

    .slick-prev,
    .slick-next {
        width: 36px;
        height: 36px;
    }

    .slick-prev {
        left: -40px;
    }

    .slick-next {
        right: -40px;
    }
}

.btn-group {
    width: 50%;
}

.lpg-division {
    margin-top: 50px;
}

.service-division-tittle {
    text-align: center;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.service-division-tittle:hover {
    color: #509AC8 !important;
}

/* SERVICE SLIDER END HERE */

/* SERVICE SECTION END HERE */

/* GALLERY SECTION START HERE */

.gallery-section {
    background-image: url(../assets/gallery-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
}

.gallery-box {
    border-radius: 30px;
    border: 2.5px solid #0004ff;
    padding: 30px;
    margin-top: 30px;
    box-shadow: 0px 0px 17px -7px rgb(0, 130, 190);
}

.progress-container {
    position: relative;
    width: 180px;
    height: 180px;
}

.progress-ring {
    transform: rotate(-90deg);
}

.progress-bg,
.progress-bar {
    fill: none;
    stroke-width: 10;
    cx: 90;
    cy: 90;
    r: 80;
}

.progress-bg {
    stroke: #e6e6e6;
}

.progress-bar {
    stroke: url(#gradient);
    stroke-dasharray: 502;
    stroke-dashoffset: 502;
    transition: stroke-dashoffset 2s ease-in-out;
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    color: #000;
    line-height: 1.4;
}

.progress-text strong {
    font-size: 24px;
    color: #007bff;
}

.gallery-box h1 {
    font-size: 44px;
    font-weight: 550;
}

.gallery-box-content {
    padding-right: 50px;
}

.gallery-box h1 {
    font-weight: 550;
    margin-bottom: 20px;
    margin-top: 30px;
}

/* GALLERY SECTION SLIDER */

.gallery-slider {
    height: 100%;
    position: relative;
    width: 100%;
    display: grid;
    align-items: center;
    margin-top: 50px;
    overflow: hidden;
}

.gallery-slider-list {
    display: flex;
    width: calc(250px * 18);
    animation: scroll 40s linear infinite;
}

.gallery-slider-list img {
    width: 93%;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 9));
    }
}

.gallery-slider-list .item {
    width: 100%;
    display: flex;
    justify-content: center;
}

.gallery h2 {
    text-align: center;
    font-size: 36px;
    margin-top: 50px;
}

.gallery-sp {
    color: #509AC8;
}

/* GALLERY SECTION END HERE */

/* TESTMONAIL SECTION START HERE */

.testimonial-container {
    width: 100%;
    overflow: hidden;
    font-family: Arial, sans-serif;
}

.testimonial-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
    width: 100%;
    flex-shrink: 0;
    text-align: center;
    padding: 20px;
    font-size: 18px;
    font-style: italic;
}

.testimonial-container:hover {
    animation-play-state: paused;
}

.testimonial-card {
    max-width: 400px;
    height: 220px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 20px;
    font-family: 'Segoe UI', sans-serif;
    color: #333;
    position: relative;
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    position: relative;
}

.profile-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.name {
    font-weight: 600;
    color: #444;
    flex-grow: 1;
    justify-content: start;
    display: flex;
    margin-left: 10px;
}

.quote-icon {
    font-size: 55px;
    color: #c0c0c0;
    position: absolute;
    right: 0;
    top: 0;
}

.testimonial-text {
    font-style: italic;
    color: #555;
    line-height: 1.6;
}

/* testmonial first row */

.testimonial-slider {
    display: flex;
    animation: slide 20s linear infinite;
}

.testimonial-container {
    overflow: hidden;
}

.testimonial-slide {
    display: flex;
}

.testimonial-card {
    min-width: 400px;
    margin-right: 20px;
}


@keyframes slide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.testmonail:hover .testimonial-slider {
    animation-play-state: paused;
}

/* second row */

.s-testimonial-slider {
    display: flex;
    animation: s-slide 20s linear infinite;
}


@keyframes s-slide {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(50%);
    }
}

.testmonail:hover .s-testimonial-slider {
    animation-play-state: paused;
}

/*  */

.testmonail-section {
    padding-top: 70px;
    padding-bottom: 70px;
    background-image: url(../assets/testmonaial-bg-main.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.testmonail-section h2 {
    font-size: 36px;
    padding-right: 220px;
    margin-bottom: 40px;
}

.testmonial-sp {
    color: #509AC8;
}

.testmonail-p {
    padding-left: 150px;
}

.testmonial-bg {
    position: absolute;
    top: 0;
    left: -130px;
    z-index: 66;
}

.testmonial-bg2 {
    position: absolute;
    top: 0;
    right: -130px;
    z-index: 67;
}

.testmonial-sliders {
    position: relative;
}


/* TESTMONIAL SECTION END HERE */

/* WCU SECTION START HERE */

.wcu-section {
    padding-top: 50px;
    padding-bottom: 70px;
    text-align: center;
}

.wcu-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.wuc-sp {
    color: #509AC8;
}

.wcu-main-p {
    padding: 0 200px;
}

.wcus {
    margin-top: 70px;
}

.wcu-item img {
    width: 17%;
}

.wcu-item h6 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 550;
    transition: all 0.3s;
}

.wcu-item h6:hover {
    color: #509AC8 !important;
}

.wcu-section {
    background-image: url(../assets/wuc-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
}

/* WCU SECTION START HERE */

/* CONTACT SECTION START HERE */

.cotact-section {
    padding-top: 70px;
    background-image: url(../assets/contact-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
}

.cotact-section h2 {
    font-size: 36px;
}

.contact-sp {
    color: #509AC8;
}

.contact-spp {
    padding-right: 220px;
}

.contact-main-content {
    margin-bottom: 50px;
}

.contact-option a {
    display: flex !important;
    gap: 10px;
}

.contact-option i {
    color: #509AC8;
}

.contact-list h2 {
    margin-bottom: 30px;
}

.contact-form {
    box-shadow: 0 12px 19px rgba(0, 0, 0, 0.1);
    border-radius: 30px;
    padding: 50px;
    background-color: #fff;
}

.conact-form input {
    width: 100%;
    border: none;
    border-radius: 30px;
    height: 50px;
    margin-bottom: 20px;
    padding-left: 30px;
    border: 1px solid #999999;
}

.conact-form textarea {
    width: 100%;
    border: none;
    border-radius: 30px;
    padding-left: 30px;
    padding-top: 1%;
    margin-bottom: 20px;
    height: 120px;
    border: 1px solid #999999;
}

.submit-btn {
    width: 30% !important;
    padding-left: 0 !important;
    background-color: #090909;
    color: #fff;
}

.socialmedia-icons {
    color: #090909;
    display: flex;
    gap: 30px;
}

.contact-home-btn i {
    margin-left: 10px;
}

.contact-home-btn a {
    font-weight: 600;
    margin-left: 50px;
}

.copyright {
    border-top: 1px solid #555555a2;
    margin-top: 50px;
}

.copyright p {
    margin-top: 30px;
    margin-bottom: 30px;
}

/* CONTACT SECTION END HERE */

/* BAOUT INNER PAGE START HERE */

.inner-banner {
    padding-top: 150px;
    padding-bottom: 40px;
    align-items: center;
    justify-content: center;
    display: flex;
    text-align: center;
}

.about-main-2 {
    margin-bottom: 70px;
    margin-top: 40px;
}

.inner-banner-g {
    margin: 0 10px;
    font-weight: 600;
}

.inner-banner a {
    font-size: 18px;
    font-weight: 500;
}

.inenr-banner-about-btn {
    color: #509AC8 !important;
}

.about-inner-home-btn {
    transition: all 0.3s;
}

.about-inner-home-btn:hover {
    color: #509AC8 !important;
}

.about-inner-img {
    width: 100%;
    margin-bottom: 30px;
}

.about-main-2 h2 {
    font-size: 36px;
    margin-bottom: 30px;
    margin-top: 50px !important;
}

.vision-list {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 15px;
}

.vision-list i {
    margin-top: -18px;
    color: #509AC8;
}

.about-inner-sp {
    color: #509AC8;
}

.career-form {
    box-shadow: 0 12px 19px rgba(0, 0, 0, 0.1);
    border-radius: 30px;
    padding: 50px;
    background-color: #fff;
}

.career-form input {
    width: 100%;
    border: none;
    border-radius: 15px;
    height: 50px;
    margin-bottom: 20px;
    padding-left: 30px;
    border: 1px solid #999999;
}

.career-form textarea {
    width: 100%;
    border: none;
    border-radius: 30px;
    padding-left: 30px;
    padding-top: 1%;
    margin-bottom: 20px;
    height: 120px;
    border: 1px solid #999999;
}

.submit-btn-inner-about {
    width: 30% !important;
    padding-left: 0 !important;
    background-color: #090909;
    color: #fff;
    border-radius: 30px;
    height: 50px;
}

.career-section {
    background-image: url(../assets/about-inner-img.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

.about-main-2 {
    background-image: url(../assets/service-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
}

.about-inner-img img {
    width: 100%;
    border-radius: 15px;
}

.projects-h3 {
    margin-top: -30px !important;
    color: #000000a6 !important;
    margin-bottom: 50px;
    text-align: center;
    font-size: 24px;
}

.vision-mission {
    background-color: #f8f8f8;
    padding: 30px;
    border-radius: 30px;
    margin-top: 20px;
}

.vacancy-card {
    background: linear-gradient(135deg, #007bff, #00c6ff);
    color: #fff;
    border-radius: 16px;
    padding: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.25);
}
.vacancy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 123, 255, 0.35);
}
.vacancy-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.vacancy-details {
    font-size: 0.95rem;
    line-height: 1.4;
    opacity: 0.9;
}
@media (max-width: 768px) {
    .vacancy-card {
        padding: 18px;
    }
}


/* ABOUT INNER PAGE START HERE */

/* PROJECTS INNER SECTION START HERE */

.project-section {
    margin-bottom: 60px;
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 36px;
    color: #333;
}

.projects-sp {
    color: #509AC8;
}
/* --- Clients --- */
.clients {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.client-logo {
    position: relative;
    width: 120px;
    height: 120px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: transform 0.3s;
    cursor: pointer;
}

.client-logo img {
    max-width: 80px;
    max-height: 80px;
    transition: 0.3s;
}

.client-logo:hover {
    transform: scale(1.05);
}

.client-logo .overlay {
    position: absolute;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    width: 100%;
    text-align: center;
    padding: 8px 0;
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 14px;
}

.client-logo:hover .overlay {
    opacity: 1;
}

/* --- Gallery --- */
.gallery-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.gallery-inner img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    height: 200px;
    transition: transform 0.3s ease;
}

.gallery-inner img:hover {
    transform: scale(1.03);
}

@media (min-width: 992px) {
    .gallery-inner {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* PROJECTS INNER SECTION START HERE */

/* AOS CUSTOM ANIMATION START HERE*/

@keyframes riseRealistically {
    0% {
        transform: perspective(800px) rotateX(80deg) scale(0.6) translateY(0px);
        opacity: 0;
    }

    100% {
        transform: perspective(800px) rotateX(0deg) scale(1) translateY(0px);
        opacity: 1;
    }
}

[data-aos="real-rise"] {
    opacity: 0;
    transform: perspective(800px) rotateX(80deg) scale(0.6) translateY(0px);
    transition-property: transform, opacity;
}

[data-aos="real-rise"].aos-animate {
    animation: riseRealistically 0.6s ease-out forwards;
}

/* AOS CUSTOM ANIMATION START HERE*/