﻿
.err {
    color: red;
    font-size: 15px;
    text-align-last: left;
}
/*New style start*/
#mainbody {
    font-family: "Poppins", "Segoe UI", sans-serif;
    background-color: #ffffff;
    color: #333;
    overflow-x: hidden;
}

/* Gradient Heading */
.hs {
    background: linear-gradient(90deg, #003366, #0077cc, #00aaff);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

    .hs::after {
        content: "";
        display: block;
        width: 100px;
        height: 4px;
        margin: 10px auto 20px;
        background: linear-gradient(90deg, #0077cc, #00aaff);
        border-radius: 10px;
        animation: underlineMove 3s infinite alternate ease-in-out;
    }

@keyframes underlineMove {
    from {
        width: 80px;
    }

    to {
        width: 140px;
    }
}

/* Section Background */
.process-section {
    background: linear-gradient(180deg, #f8fbff 0%, #eaf3ff 100%);
    padding: 80px 0;
}

/* Service Card Styles */
.service-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    padding: 30px;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(40px);
}

    .service-card:hover {
        transform: translateY(-10px) scale(1.03);
        box-shadow: 0 12px 35px rgba(0, 102, 204, 0.25);
        background: linear-gradient(145deg, #ffffff, #f0f8ff);
    }

/* Animation */
.animate-show {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: all 0.8s ease;
}

/* Icons (optional if you add icons later) */
.service-icon {
    font-size: 40px;
    color: #0077cc;
    margin-bottom: 15px;
    animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* Responsive Text */
h5 {
    color: #003366;
    font-weight: 600;
}

/* Add gentle fade for text */
.intro-text {
    color: #555;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 16px;
}

/* Button Style (if needed) */
/*.btn-primary {
      background-color: #003366;
      border: none;
      border-radius: 30px;
      padding: 10px 30px;
      transition: all 0.3s ease;
    }

    .btn-primary:hover {
      background-color: #0056b3;
      box-shadow: 0 0 15px rgba(0, 86, 179, 0.5);
    }*/

.why-choose-card {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 51, 102, 0.08);
    border: 1px solid rgba(0, 51, 102, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .why-choose-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0, 51, 102, 0.15);
    }

.hs2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #003366;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #003366, #00509e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.8rem;
    margin-top: 2.5rem;
}

.feature-item {
    background: white;
    padding: 1.8rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e6f0fa;
}

    .feature-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 24px rgba(0, 51, 102, 0.12);
        border-color: #003366;
    }

.icon {
    font-size: 2.2rem;
    color: #00509e;
    margin-bottom: 1rem;
}

.feature-title {
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.feature-desc {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .hs2 {
        font-size: 2rem;
    }

    .why-choose-card {
        padding: 2rem 1.5rem;
    }

    .features {
        grid-template-columns: 1fr;
    }
}

/* About Section */
.about {
    padding: 80px 0;
}

    .about .hs2 {
        color: #003366;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .about ul li {
        margin-bottom: 8px;
    }

    .about img {
        border-radius: 10px;
        box-shadow: 0 0 15px rgba(0,0,0,0.1);
        transition: transform 0.5s ease;
    }

        .about img:hover {
            transform: scale(1.05);
        }

/* Services */
.services {
    background-color: #f8f9fa;
    padding: 40px 0;
}

    .services .hs2 {
        color: #003366;
        font-weight: 700;
        margin-bottom: 50px;
    }

.service-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    background: #fff;
}

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 25px rgba(0,0,0,0.15);
    }

.service-icon {
    font-size: 45px;
    color: rgb(108, 195, 239);
    margin-bottom: 15px;
    transition: transform 0.4s ease;
}
/* Uniform card sizes in Services section */
.service-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    background: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.services .row > div {
    display: flex;
}

/* Ensure equal card height alignment */
.services .card {
    flex: 1;
}

/* Icon styling */
.service-icon {
    font-size: 45px;
    color: #1d8fcd;
    margin-bottom: 15px;
    transition: transform 0.4s ease;
}

/* Hover effect */
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

    .service-card:hover .service-icon {
        transform: rotate(10deg) scale(1.2);
    }

    .service-card:hover .service-icon {
        transform: rotate(10deg) scale(1.2);
    }
/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.beat-text {
    animation: beat 1.2s infinite ease-in-out;
    display: inline-block;
}

@keyframes beat {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}
.service-img {
    height: 150px; /* Adjust height as needed */
    object-fit: cover; /* Ensures the image fills the area neatly */
    width: 100%; /* Keeps it responsive */
}
@media (max-width: 480px) {
    #dd {
        font-size: 13px;
    }
}
/*New style end*/

