:root {
    --primary-color: #0072bb;
    --secondary-color: #009e9d;
    --gradient-color: linear-gradient(90deg, #0072bb, #009e9d);
    --white-color: #fff;
}

/* ===== BANNER SECTION ===== */
.banner-section {
    position: relative;
    overflow: hidden;
}

.carousel-item {
    height: 85vh;
    min-height: 550px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.carousel-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(29, 31, 32, 0.6), rgba(10, 12, 12, 0.582));
    z-index: 1;
}

.carousel-caption {
    position: absolute;
    top: 50%;
    left: 15% !important;
    transform: translateY(-40%);
    z-index: 2;
    color: #fff;
    text-align: start;
    max-width: 900px;
    animation: fadeIn 1.2s ease forwards;
}

.carousel-caption h1 {
    font-size: 80px;
    font-weight: 800;
    opacity: 0;
    transform: translateX(-50px);
    animation: slideLeft 1.2s ease forwards;
    text-align: start;
}

.carousel-caption p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-top: 15px;
    opacity: 0;
    transform: translateX(-50px);
    animation: slideLeft 1.6s ease forwards;
    text-align: start;
}

.carousel-caption .btn-custom {
    display: inline-block;
    background: var(--gradient-color);
    border: none;
    color: #fff;
    padding: 12px 35px;
    border-radius: 10px;
    text-align: start;
    margin-top: 20px;
    font-weight: 500;
    letter-spacing: 0.5px;
    box-shadow: 0 0 10px rgba(0, 158, 157, 0.5);
    transition: 0.4s;
    opacity: 0;
    transform: translateX(-50px);
    animation: slideLeft 2s ease forwards;
}

.carousel-caption .btn-custom:hover {
    box-shadow: 0 0 20px rgba(0, 158, 157, 0.9);
    transform: scale(1.05);
}

.carousel-caption .btn-custom-one {
    display: inline-block;
    background: #fff;
    border: none !important;
    color: var(--secondary-color);
    padding: 12px 35px;
    border-radius: 10px;
    text-align: start;
    margin-top: 20px;
    font-weight: 500;
    letter-spacing: 0.5px;
    box-shadow: 0 0 10px rgba(0, 158, 157, 0.5);
    transition: 0.4s;
    opacity: 0;
    transform: translateX(-50px);
    animation: slideLeft 2s ease forwards;
}

.carousel-caption .btn-custom-one:hover {
    box-shadow: 0 0 20px rgba(0, 158, 157, 0.9);
    transform: scale(1.05);
}

/* ===== ANIMATIONS ===== */
@keyframes slideLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ===== INDICATORS ===== */
.carousel-indicators [data-bs-target] {
    background-color: #fff;
    opacity: 0.7;
}

.carousel-indicators .active {
    background-color: #00b7b7;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .carousel-caption {
        left: 50% !important;
        text-align: center;
        transform: translate(-50%, -50%);
        width: 100%;
    }

    .carousel-caption h1 {
        font-size: 2.2rem;
    }

    .carousel-caption p {
        font-size: 1rem;
    }
}


/* ===== FEATURED SECTION ===== */
.featured-section {
    background: #f8f9fa;
    position: relative;
}

.featured-section h2 {
    color: #222;
    letter-spacing: 1px;
}

/* ===== SERVICE CARD ===== */
.service-card {
    background: #fff;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card.active {
    background: var(--gradient-color) !important;
    color: #fff;
    /* transform: translateY(-10px); */
    border-color: transparent;
}

.service-card .icon {
    font-size: 3rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.service-card.active .icon {
    color: #fff;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.service-card:hover .icon {
    transform: rotate(10deg) scale(1.1);
    /* color: var(--white-color); */
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .service-card {
        margin-bottom: 20px;
    }

    .service-card .icon {
        font-size: 2.5rem;
    }
}

/* ===== SCROLLING TEXT SECTION ===== */
.scrolling-banner {
    background: var(--gradient-color);
    color: #fff;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.scrolling-text {
    white-space: nowrap;
    display: inline-block;
    animation: scrollLeft 20s linear infinite;
    font-size: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 0;
    font-family: "Lora", serif;
}

.scrolling-text:hover {
    animation-play-state: paused;
}


/* Gradient shine effect */
.scrolling-text span {
    background: linear-gradient(90deg, #fff, #e0ffff, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textShine 3s linear infinite;
}

/* ===== ANIMATIONS ===== */
@keyframes scrollLeft {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

@keyframes textShine {
    0% {
        background-position: 0%;
    }

    100% {
        background-position: 200%;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .scrolling-text {
        font-size: 1rem;
    }
}


/* ===== ABOUT SECTION ===== */
.about-section {
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.about-section h2 {
    color: #222;
    letter-spacing: 1px;
}

.about-section .highlight {
    background: var(--gradient-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-section p {
    color: #555;
    line-height: 1.7;
}

/* ===== BUTTON ===== */
.btn-custom {
    background: var(--gradient-color) !important;
    color: #fff;
    padding: 10px 30px !important;
    border-radius: 30px;
    border: none;
    transition: all 0.4s ease;
}

.btn-custom:hover {
    background: #004b7c;
    transform: translateY(-3px);
}

/* ===== IMAGE BADGE ===== */
.about-img {
    position: relative;
    overflow: hidden;
}

.badge-24-7 {
    position: absolute;
    bottom: 20px;
    right: 10%;
    width: 80%;
    background: var(--gradient);
    color: #fff;
    padding: 15px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    animation: pulseGlow 2s infinite;
}

.badge-24-7 i {
    font-size: 40px;
    display: block;
    margin-bottom: 5px;
}

.badge-24-7 span {
    font-size: 40px;
    font-family: "Lora", serif;
}

/* ===== ANIMATIONS ===== */
@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 10px var(--secondary-color);
    }

    50% {
        box-shadow: 0 0 25px var(--primary-color);
    }

    100% {
        box-shadow: 0 0 10px var(--secondary-color);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .about-section h2 {
        font-size: 1.8rem;
    }

    .badge-24-7 {
        right: 10px;
        bottom: 10px;
        padding: 10px 15px;
    }
}

/* ===== HERO BANNER ===== */
.hero-banner {
    position: relative;
    background: url('../all-images/carousel-img/1.png') no-repeat center center/cover;
    height: 50vh;
    color: #fff;
    overflow: hidden;
}

.hero-banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.hero-banner .container {
    position: relative;
    z-index: 2;
    /* max-width: 800px; */
    animation: fadeInUp 1.2s ease-in-out;
}

/* ===== TEXT STYLING ===== */
.hero-title {
    font-size: 3rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-title span {
    color: var(--secondary-color) !important;
    /* -webkit-background-clip: text; */
    /* -webkit-text-fill-color: transparent; */
    /* text-shadow: 0 0 25px rgba(0, 166, 166, 0.8); */
    /* animation: glowPulse 2s infinite alternate; */
}

.hero-text {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #f1f1f1;
    line-height: 1.8;
    animation: fadeIn 1.8s ease-in-out;
}

/* ===== BUTTON ===== */
.btn-hero {
    background: var(--gradient-color);
    color: #fff !important;
    padding: 12px 35px !important;
    font-size: 1.1rem;
    border: none;
    border-radius: 30px;
    transition: 0.4s;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 2s ease-in-out;
}

.btn-hero:hover {
    background: #004b7c;
    transform: translateY(-3px);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes glowPulse {
    0% {
        text-shadow: 0 0 10px #00a6a6, 0 0 20px #0072bb;
    }

    100% {
        text-shadow: 0 0 25px #00ffff, 0 0 45px #0072bb;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        height: 80vh;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-text {
        font-size: 1rem;
    }
}

.services-section {
  background: linear-gradient(135deg, #ffffff, #f8f9fa);
}

.gradient-text {
  background: linear-gradient(90deg, #e63946, #1d3557);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.service-card {
  background: #fff;
  border-radius: 20px;
  border: 2px solid transparent;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: #e63946;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-card .service-img img {
  transition: 0.5s ease;
}

.service-card:hover .service-img img {
  transform: scale(1.05);
}

.center-card {
  background: #f9f9f9;
  border: 2px solid #e63946;
  transform: scale(1.05);
}

.center-card:hover {
  background: #ffffff;
  transform: scale(1.07);
}

.btn-custom {
  background: linear-gradient(45deg, #e63946, #1d3557);
  border: none;
  color: #fff;
  border-radius: 30px;
  padding: 8px 20px;
  transition: all 0.3s ease;
}

.btn-custom:hover {
  background: #fff;
  color: #e63946;
  border: 1px solid #e63946;
}