/* Move Up Down Animation */
.move-up-down {
    animation: move 2s infinite alternate;
}

@keyframes move {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

/* Header Logo */
.header .logo h3 {
    font-size: 1.5rem;
    margin: 0;
    font-weight: 500;
    color: var(--heading-color);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Animated Header */
#animated-header {
    background-color: transparent;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

#animated-header.scrolled {
    background-color: #011f4b !important;
    color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

/* Hero Section */
.hero h1 {
    margin: 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
}

/* Section Title */
.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    text-transform: uppercase;
    position: relative;
    text-align: center;
}

/* General Heading */
h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    text-transform: uppercase;
    position: relative;
    color: #011f4b;
}

/* Container */
.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x)* .5);
    padding-left: calc(var(--bs-gutter-x)* .5);
    margin-right: auto;
    margin-left: auto;
}

/* Fade Up Animation */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s ease-out forwards;
}

/* Animation Delays */
.delay-1 {
    animation-delay: 0.5s;
}

.delay-2 {
    animation-delay: 1s;
}

.delay-3 {
    animation-delay: 1.5s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Paragraph Style */
.p {
    font-size: 1.25rem;
    font-weight: 300; 
}

/* Navigation Link */
.nav-link {
    color: white;
    transition: color 0.3s ease-in-out;
}

.nav-link:hover,
.nav-link:focus {
    color: #bae4f8;
}

.nav-link.active {
    color: #bae4f8 !important;
}

.nav-link:not(.active) {
    color: white;
}

/* Home link initially with hover color */
.nav-link.home-link {
    color: #bae4f8 !important;
}

.nav-link.active.bi.bi-house-fill {
	color: white !important;
}
.navbar-collapse {
    transition: all 0.3s ease-in-out;
}
.navbar-brand{
	color: white !important;
	FONT-WEIGHT: 500;
	FONT-SIZE: x-large;
}
.navbar-toggler.custom-toggler .navbar-toggler-icon {
    background-color: #005582; /* Custom color for the icon */
}

/* Optionally, change the hover or active state */
.navbar-toggler.custom-toggler:hover .navbar-toggler-icon {
    background-color: #bae4f8; /* Custom hover color */
}

/* Contact Section */
#contact i {
    color: #39509e;
    margin-right: 8px;
}

#contact a {
    color: #007bff;
    text-decoration: none;
}

#contact a:hover {
    text-decoration: underline;
    color: #0056b3;
}

/* Accordion Button */
.accordion-button:focus {
    box-shadow: none;
    outline: none;
    color: #007bff;
}

/* Body */
body {
    color: gray;
    background: #f5f6f8;
}
.about-feature-box {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    padding: 22px 18px 18px 18px;
    position: relative;
    transition: transform 0.3s cubic-bezier(.4,2,.3,1), box-shadow 0.3s;
    min-height: 170px;
    border: 1px solid #eee;
    margin-bottom: 10px;
    overflow: hidden;
    border-top-width: 5px;
    border-top-style: solid;
    color: #111 !important;
}

.about-feature-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 24px rgba(0,0,0,0.15);
}

.about-feature-topline {
    height: 4px;
    width: 100%;
    border-radius: 2px 2px 0 0;
    margin-bottom: 12px;
}

.about-feature-topline-red {
    background: #e53935;
}

.about-feature-topline-green {
    background: #43a047;
}

.about-feature-topline-blue {
    background: #1e88e5;
}

.about-feature-topline-yellow {
    background: #fbc02d;
}

.about-feature-red {
    border-top-color: #e53935;
    background: linear-gradient(135deg, #fdeaea 70%, #fff 100%);
}

.about-feature-green {
    border-top-color: #43a047;
    background: linear-gradient(135deg, #eafaf1 70%, #fff 100%);
}

.about-feature-blue {
    border-top-color: #1e88e5;
    background: linear-gradient(135deg, #eaf3fb 70%, #fff 100%);
}

.about-feature-yellow {
    border-top-color: #fbc02d;
    background: linear-gradient(135deg, #fffbe5 70%, #fff 100%);
}

.about-feature-heading {
    font-size: 1.15rem;
    font-weight: bold;
    color: inherit;
}

.service-box {
    border-top-width: 5px;
    border-top-style: solid;
    border-left-width: 5px;
    border-left-style: solid;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s cubic-bezier(.4,2,.3,1), box-shadow 0.3s;
    color: #222 !important; /* Dark font for all boxes */
    background: #fff; /* fallback */
}
.service-box:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}

/* Unique color for each box's top/left border and matching light background */
.service-box-red {
    border-top-color: #e53935; /* Red */
    border-left-color: #e53935;
    background: linear-gradient(135deg, #fdeaea 70%, #fff 100%);
}
.service-box-green {
    border-top-color: #43a047; /* Green */
    border-left-color: #43a047;
    background: linear-gradient(135deg, #eafaf1 70%, #fff 100%);
}
.service-box-blue {
    border-top-color: #1e88e5;
    border-left-color: #1e88e5;
    background: linear-gradient(135deg, #eaf3fb 70%, #fff 100%);
}
.service-box-yellow {
    border-top-color: #fbc02d;
    border-left-color: #fbc02d;
    background: linear-gradient(135deg, #fffbe5 70%, #fff 100%);
}
.service-box-danger {
    border-top-color: #dc3545; /* Red */
    border-left-color: #dc3545;
    background: linear-gradient(135deg, #fdeaea 70%, #fff 100%);
}
.service-box-info {
    border-top-color: #17a2b8; /* Cyan */
    border-left-color: #17a2b8;
    background: linear-gradient(135deg, #eaf6fb 70%, #fff 100%);
}
.service-box-secondary {
    border-top-color: #6c757d; /* Gray */
    border-left-color: #6c757d;
    background: linear-gradient(135deg, #f2f3f4 70%, #fff 100%);
}
.service-box-primary {
    border-top-color: #007bff; /* Blue */
    border-left-color: #007bff;
    background: linear-gradient(135deg, #eaf1fb 70%, #fff 100%);
}
.service-box-success {
    border-top-color: #28a745; /* Green */
    border-left-color: #28a745;
    background: linear-gradient(135deg, #eafbe7 70%, #fff 100%);
}
.service-box-warning {
    border-top-color: #ffc107; /* Yellow */
    border-left-color: #ffc107;
    background: linear-gradient(135deg, #fffbe5 70%, #fff 100%);
}
.service-box-purple {
    border-top-color: #8e24aa; /* Purple */
    border-left-color: #8e24aa;
    background: linear-gradient(135deg, #f3eafc 70%, #fff 100%);
}
.service-box-orange {
    border-top-color: #fb8c00; /* Orange */
    border-left-color: #fb8c00;
    background: linear-gradient(135deg, #fff3e5 70%, #fff 100%);
}
.service-box-teal {
    border-top-color: #00897b; /* Teal */
    border-left-color: #00897b;
    background: linear-gradient(135deg, #e0f7fa 70%, #fff 100%);
}
.service-box-pink {
    border-top-color: #d81b60; /* Pink */
    border-left-color: #d81b60;
    background: linear-gradient(135deg, #fdeaf3 70%, #fff 100%);
}





   .packages {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
    }
    .package {
      background: #fff;
      border: 1px solid #ddd;
      border-radius: 10px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      padding: 20px;
      text-align: center;
      transition: transform 0.3s ease;
	  overflow: hidden;
    }
    .package:hover {
      transform: translateY(-5px);
    }
    /*.package h2 {
      font-size: 24px;
      margin-bottom: 10px;
      color: #011f4b;
    }*/
	 .package h2 {
      margin: -20px;
      padding: 15px;
      font-size: 24px;
      color: #fff;
      background:  #011f4b;/* linear-gradient(90deg, #0073e6, #005bb5); */
      text-transform: uppercase;
    }
    .package p {
      margin: 30px 0;
      color: #555;
    }
    .price {
      font-size: 28px;
      font-weight: bold;
      color: #28a745;
      margin: 15px 0;
    }
    .package ul {
      list-style: none;
      padding: 0;
	  margin: 0;
	  text-align: left;
	  font-family: sans-serif;
    }
    .package ul li {
      margin: 5px 0;
      color: #333;
	  
	  position: relative;
	  padding-left: 25px; /* Add space for the tick icon */
	  margin-bottom: 10px;
	  font-size: 16px;
	  line-height: 1.5;
    }
	
	.package ul li::before {
	  content: "\2713"; /* Unicode for a checkmark */
	  position: absolute;
	  left: 0;
	  top: 0;
	  color: #00b894; /* Green tick color */
	  font-size: 18px;
	  line-height: 1.5;
	}


    .btn {
      display: inline-block;
      margin-top: 15px;
      padding: 10px 20px;
      font-size: 16px;
      color: #fff;
      background-color: #011f4b;
      text-decoration: none;
      border-radius: 5px;
      transition: background 0.3s ease;
    }
    .btn:hover {
      background-color: #03396c/*#011f4b*/;
	  color: #fff;
    }
	
	
	.carousel-control-prev,
	.carousel-control-next {
    display: none;
}
	
.contact-form-container {
            max-width: 500px; /* Restrict the width */
            margin: 0 auto; /* Center the form */
            background-color: #f8f9fa; /* Optional: Light background */
            padding: 20px; /* Add some padding */
            border-radius: 10px; /* Rounded corners */
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
        }




.carousel-img {
    height: 100px;
    margin-right: 20px;
    margin-left: 20px; /* Add left margin for balanced gap */
    object-fit: contain;
    vertical-align: middle;
}

.carousel-item {
    /*display: flex;*/
    justify-content: center;
    align-items: center;
}



.clients {
    padding: 30px 0; /* Reduced padding for normal height */
    background: #f8f9fa; /* Light gray background to match imageSlider */
    text-align: center;
    display: flex;
    align-items: center; /* Vertically center content */
    justify-content: center; /* Horizontally center content */
    min-height: 120px; /* Optional: minimum height for visual balance */
}

    .clients .swiper-slide img {
        max-width: 80px;   /* Adjust as needed */
        height: 60px;
        margin: 0 16px;
        object-fit: contain;
        display: block;
    }

        .clients .swiper-slide img:hover {
            /*filter: grayscale(0%);*/
            transform: scale(1.1);
        }

.mySwiper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0; /* Remove extra vertical padding */
}

.swiper-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
}

    .swiper-slide img {
        height: 60px;
        width: auto;
        margin: 0 20px;
        object-fit: contain;
    }

.bg-light-custom {
    background-color: #f8f9fa;
}
.testimonial-cards-row {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 32px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.testimonial-card {
    width: 340px;
    min-height: 340px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(30,40,90,0.12);
    border-top-width: 8px;
    border-top-style: solid;
    border-left-width: 3px;
    border-left-style: solid;
    border-right-width: 3px;
    border-right-style: solid;
    margin-bottom: 24px;
    padding: 36px 28px 28px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    transition: box-shadow 0.3s, transform 0.3s;
}

.testimonial-card:hover {
    box-shadow: 0 12px 40px rgba(30,40,90,0.18);
    transform: translateY(-6px) scale(1.03);
}

/* Red Card */
.testimonial-card-red {
    border-top-color: #e53935;
    border-left-color: #fdeaea;
    border-right-color: #fdeaea;
    background: linear-gradient(135deg, #fdeaea 70%, #fff 100%);
}

/* Green Card */
.testimonial-card-green {
    border-top-color: #43a047;
    border-left-color: #eafaf1;
    border-right-color: #eafaf1;
    background: linear-gradient(135deg, #eafaf1 70%, #fff 100%);
}

/* Blue Card */
.testimonial-card-blue {
    border-top-color: #1e88e5;
    border-left-color: #eaf3fb;
    border-right-color: #eaf3fb;
    background: linear-gradient(135deg, #eaf3fb 70%, #fff 100%);
}

/* Professional text formatting */
.testimonial-text {
    font-size: 1.15rem;
    font-style: italic;
    color: #222;
    margin-bottom: 18px;
    line-height: 1.6;
    font-family: 'Segoe UI', 'Arial', sans-serif;
}

.testimonial-author {
    font-weight: bold;
    color: #011f4b;
    margin-bottom: 4px;
    font-size: 1.08rem;
    letter-spacing: 0.5px;
}

.testimonial-role {
    color: #666;
    font-size: 0.98rem;
    margin-bottom: 0;
    font-style: normal;
}

@media (max-width: 1100px) {
    .testimonial-card {
        width: 90vw;
        min-width: 0;
        margin-bottom: 24px;
    }
    .testimonial-cards-row {
        gap: 16px;
    }
}

.testimonial-card-center {
    width: 320px;
    min-height: 340px;
    background: linear-gradient(135deg, rgba(220, 255, 236, 0.7) 80%, rgba(255,255,255,0.55) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(200,200,200,0.18);
    box-shadow: 0 8px 32px rgba(30,40,90,0.12);
    z-index: 2;
}

    .testimonial-card-center .card-text {
        font-size: 1.15rem;
        font-style: italic;
        color: #222;
    }

    .testimonial-card-center .card-title {
        font-weight: bold;
        color: #011f4b;
    }

    .testimonial-card-center .card-subtitle {
        color: #666;
        font-size: 0.95rem;
    }

/* Side cards: small, glass/blur effect */
.testimonial-card-side {
    width: 180px;
    min-height: 220px;
    padding: 18px 10px;
    font-size: 0.98rem;
    z-index: 1;
}

.testimonial-card-blur {
    background: rgba(255,255,255,0.55);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(200,200,200,0.12);
    box-shadow: 0 4px 16px rgba(30,40,90,0.08);
    opacity: 0.95;
}

.testimonial-card-side h6 {
    font-weight: bold;
    color: #011f4b;
}

.testimonial-card-side p {
    color: #222;
}

@media (max-width: 991px) {
    .testimonial-card {
        width: 90vw;
        min-width: 0;
        min-height: 0;
        margin-bottom: 16px;
    }

    .testimonial-card-center {
        margin: 0 auto;
    }

    .testimonial-card-side {
        display: none !important;
    }
}

.about-img-round {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.about-bg-section {
    position: relative;
    background: 
        linear-gradient(135deg, rgba(255,255,255,0.85) 60%, rgba(234,243,251,0.7) 100%),
        url('images/about-bg.jpg') center center/cover no-repeat;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(30,40,90,0.10);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 32px 24px;
    margin-bottom: 24px;
    border: 1px solid rgba(200,200,200,0.12);
}

.about-text-dark {
    color: #222;
    font-weight: 500;
    font-size: larger;
    font-family: sans-serif;
    text-align: justify;
}


/* Animation for stars */
.animated-star {
    display: inline-block;
    animation: starPulse 1.5s infinite ease-in-out;
    transform-origin: center;
}

    /* Delay each star slightly for a wave effect */
    .animated-star:nth-child(1) {
        animation-delay: 0s;
    }

    .animated-star:nth-child(2) {
        animation-delay: 0.2s;
    }

    .animated-star:nth-child(3) {
        animation-delay: 0.4s;
    }

    .animated-star:nth-child(4) {
        animation-delay: 0.6s;
    }

    .animated-star:nth-child(5) {
        animation-delay: 0.8s;
    }

/* Keyframes for pulse effect */
@keyframes starPulse {
    0%, 100% {
        transform: scale(1);
        color: #ffc107;
    }

    50% {
        transform: scale(1.2);
        color: #ffeb3b;
    }
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

    .swiper-slide img {
        max-width: 100px; /* Ensures proper scaling */
        height: auto;
        display: block;
        object-fit: contain;
    }

@media (max-width: 480px) {
    .swiper-slide img {
        max-width: 80px;
    }
}

.accordion {
    background-color: #f8f9fa; /* Light gray background overall accordion ke liye */
    border-radius: 8px;
    padding: 5px;
}

.accordion-item {
    background-color: #f8f9fa; /* Har item ka same color */
    border: none;
}

.gradient-text {
    background: linear-gradient(to right, #011f4b, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.glass-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.65), rgba(173, 216, 230, 0.4));
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease-in-out;
}

    .glass-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    }

/* Circle Icon Style */
.icon-circle {
    width: 5rem;
    height: 5rem;
    font-size: 2rem;
    background: linear-gradient(to bottom right, #011f4b, #3b82f6);
    color: #fff;
    border-radius: 50%;
    border: 4px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
