* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Noto Sans", sans-serif;
    font-optical-sizing: auto;
    font-variation-settings: "wdth" 100;
}

body {
    background: #f6fafd;
    color: #0e2e3b;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* reusable container-new */
.container-new {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 28px;
}

/* ----- navbar (fully responsive) ----- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 32px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 4px 30px rgba(0, 30, 40, 0.08);
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 1px solid rgba(164, 202, 220, 0.3);
}

.logo {
    font-size: 1.9rem;
    font-weight: 800;
    background: linear-gradient(145deg, #0b3b4f, #226f8f);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo i {
    color: #1d6e8f;
    font-size: 2.2rem;
    -webkit-text-fill-color: #1d6e8f;
}

.logo img {
    display: block;
    height: 55px;
    width: auto;
    object-fit: contain;
    -webkit-text-fill-color: initial;
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
}

.nav-toggle {
    display: none;
    font-size: 2rem;
    color: #1e5f7a;
    cursor: pointer;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-menu a {
    text-decoration: none;
    color: #1e3e4c;
    font-weight: 600;
    font-size: 1.05rem;
    transition: 0.2s;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 3px;
    background: #1d7a9c;
    bottom: -6px;
    left: 0;
    transition: 0.25s;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: #0a3a4b;
}

.btn-cta {
    background: #135f7a;
    color: white !important;
    padding: 10px 24px;
    border-radius: 60px;
    font-weight: 700;
    box-shadow: 0 6px 14px rgba(18, 95, 122, 0.3);
}

.btn-cta:hover {
    background: #0b475d;
    transform: scale(1.02);
}

.btn-cta::after {
    display: none;
}

/* Dropdown Menu Styles */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-dropdown-toggle i {
    font-size: 0.8rem;
    transition: 0.3s ease;
}

.nav-drop-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 30, 40, 0.15);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: 0.3s ease;
    margin-top: 8px;
    z-index: 1000;
    border: 1px solid rgba(90, 166, 196, 0.2);
}

.nav-dropdown:hover .nav-drop-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown:hover .nav-dropdown-toggle i {
    transform: rotate(180deg);
}

.nav-drop-menu a {
    display: block;
    padding: 12px 18px;
    color: #1e3e4c;
    text-decoration: none;
    font-weight: 500;
    transition: 0.2s;
    border-bottom: 1px solid rgba(90, 166, 196, 0.1);
    position: relative;
    font-size: 1rem !important;
}

.nav-drop-menu a:last-child {
    border-bottom: none;
}

.nav-drop-menu a:hover {
    background: #f0f8ff;
    color: #0a5a7f;
    padding-left: 22px;
}

.nav-drop-menu a::after {
    display: none;
}

/* responsive nav */
@media (max-width: 800px) {
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(14px);
        flex-direction: column;
        padding: 28px 0;
        gap: 22px;
        box-shadow: 0 30px 40px -10px rgba(0, 40, 60, 0.2);
        border-bottom: 1px solid #cee2ec;
        transform: translateY(-150%);
        opacity: 0;
        transition: 0.4s ease;
        pointer-events: none;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    /* Mobile dropdown styles */
    .nav-drop-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        transform: none;
        background: #f5f9fc;
        box-shadow: none;
        border: none;
        margin-top: 0;
        padding: 0;
        overflow: hidden;
        transition: 0.3s ease;
    }

    .nav-dropdown.active .nav-drop-menu {
        opacity: 1;
        visibility: visible;
        max-height: 300px;
        padding: 8px 0;
    }

    .nav-dropdown.active .nav-dropdown-toggle i {
        transform: rotate(180deg);
    }

    .nav-drop-menu a {
        padding: 10px 32px;
        border-bottom: none;
        border-left: 3px solid transparent;
    }

    .nav-drop-menu a:hover {
        background: transparent;
        padding-left: 38px;
        border-left: 3px solid #1f83a6;
        color: #1f83a6;
    }
}


/* ------ hero ------ */
.hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 50px 0 70px;
    gap: 40px;
}

.hero-content {
    flex: 1 1 350px;
    animation: fadeInLeft 0.8s;
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-40px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-badge {
    background: #c5e3f0;
    color: #115673;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 60px;
    display: inline-block;
    margin-bottom: 24px;
}

.hero-content h1 {
    font-size: 3.6rem;
    font-weight: 800;
    line-height: 1.2;
    background: linear-gradient(to right, #0a384b, #1e6885, #3496b9);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    color: #2c5062;
    max-width: 540px;
    margin-bottom: 30px;
}

.hero-btn {
    background: #1b6f8f;
    border: none;
    color: white;
    font-weight: 700;
    padding: 14px 38px;
    border-radius: 60px;
    font-size: 1.2rem;
    box-shadow: 0 18px 28px -12px #10536d;
    cursor: default;
    display: inline-block;
}

.hero-visual {
    flex: 1 1 300px;
    background: radial-gradient(circle at 30% 30%, #b7dae9, #ecf9ff);
    border-radius: 50% 30% 50% 30%;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #175d79;
    font-weight: 700;
    box-shadow: 0 30px 35px -20px #0c4c64;
    animation: float 5s infinite;
}

@media(max-width:763px) {
    .hero-visual img {
        max-width: 100%;
    }
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-16px);
    }

    100% {
        transform: translateY(0);
    }
}

/* section titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin: 70px 0 20px;
}

.section-title span {
    background: linear-gradient(145deg, #17586f, #2489ad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-sub {
    text-align: center;
    color: #3d6172;
    margin-bottom: 50px;
    font-size: 1.2rem;
}

/* cards grid */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.prod-card,
.industry-card {
    background: white;
    padding: 34px 22px;
    border-radius: 40px 20px 40px 20px;
    box-shadow: 0 28px 36px -20px #124d64;
    text-align: center;
    transition: 0.3s;
    border: 1px solid rgba(90, 166, 196, 0.2);
    display: block;
    text-decoration: none;
    opacity: 0;
    transform: scale(0.95);
    animation: cardAppear 0.6s forwards;
}

.prod-card:nth-child(1) {
    animation-delay: 0.1s;
}

.prod-card:nth-child(2) {
    animation-delay: 0.2s;
}

.prod-card:nth-child(3) {
    animation-delay: 0.3s;
}

.prod-card:nth-child(4) {
    animation-delay: 0.4s;
}

.industry-card:nth-child(1) {
    animation-delay: 0.15s;
}

.industry-card:nth-child(2) {
    animation-delay: 0.3s;
}

.industry-card:nth-child(3) {
    animation-delay: 0.45s;
}

.industry-card:nth-child(4) {
    animation-delay: 0.6s;
}

@keyframes cardAppear {
    0% {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.prod-card:hover,
.industry-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 45px -18px #1f6d8f;
    border-color: #94cfeb;
}

.icon-large {
    font-size: 3.4rem;
    background: linear-gradient(145deg, #0b4f66, #1e87ad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 18px;
}

.prod-card h3,
.industry-card h4 {
    font-size: 1.9rem;
    font-weight: 700;
    color: #124c63;
}

.industry-card h4 {
    font-size: 1.8rem;
}

/* anchor wrapping industry card h4 */
.industry-card:hover h4 {
    color: #1a7fa3;
    transition: color 0.2s;
}

/* why choose us grid */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin: 40px 0;
}

.why-item {
    background: #f2faff;
    padding: 30px 20px;
    border-radius: 30px;
    text-align: center;
    box-shadow: inset 0 -2px 10px #d5ecf5, 0 15px 25px -18px #164c61;
    transition: 0.25s;
}

.why-item i {
    font-size: 3rem;
    color: #1c6a88;
}

.why-item h4 {
    font-size: 1.7rem;
    margin: 15px 0 5px;
    color: #104c62;
}

/* mission vision row */
.mv-row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin: 50px 0;
}

.mv-box {
    flex: 1 1 280px;
    background: #e1f1f9;
    padding: 40px 28px;
    border-radius: 80px 20px 80px 20px;
    box-shadow: 0 25px 35px -18px #17566e;
}

.mv-box h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #0a384b;
}

.mv-box p {
    font-size: 1.1rem;
    color: #2a4f60;
}

/* testimonials */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.testi-card {
    background: white;
    border-radius: 30px;
    padding: 28px;
    box-shadow: 0 15px 30px -10px #14647e;
    border-left: 8px solid #1f83a6;
}

.testi-card i {
    color: #1f83a6;
    font-size: 2rem;
    opacity: 0.5;
}

.testi-card p {
    font-size: 1.1rem;
    font-style: italic;
    margin: 12px 0;
}

.testi-card h5 {
    font-weight: 700;
    color: #0f5068;
    font-size: 1.2rem;
}

/* FAQ */
.faq-grid {
    max-width: 900px;
    margin: 30px auto;
}

.faq-item {
    background: white;
    border-radius: 50px;
    margin-bottom: 18px;
    padding: 8px 28px;
    box-shadow: 0 5px 15px #d7eaf3;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 1.25rem;
    padding: 18px 0;
    cursor: pointer;
    color: #15556e;
}

.faq-question i {
    transition: 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: 0.3s;
    border-top: 0px solid #b5d6e9;
    color: #2f5b6e;
}

.faq-item.active .faq-answer {
    max-height: 180px;
    padding: 0 0 20px 0;
    border-top: 2px solid #b0d6ea;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* footer */
.footer {
    background: #0e2e3e;
    color: #dae9f2;
    padding: 60px 32px 32px;
    border-radius: 80px 80px 0 0;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 50px;
}

.footer-col p {
    font-weight: 600;
    color: white;
    margin-bottom: 12px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: #dae9f2;
    text-decoration: none;
    transition: 0.3s;
    opacity: 0.8;
}

.footer-col ul li a:hover {
    color: white;
    opacity: 1;
    padding-left: 5px;
}

.footer-copy {
    text-align: center;
    border-top: 1px solid #3b6b81;
    margin-top: 50px;
    padding-top: 28px;
}

/* responsiveness */
@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 2.6rem;
    }

    .section-title {
        font-size: 2rem;
    }
}


.new-cont {
    background-color: #3e515f07;
    position: relative;
    top: -100px;
    z-index: 1;
    margin: 0 auto;
    padding: 20px 28px;

}


/* about card container with subtle shadow */
.about-card {
    max-width: 1400px;
    margin: 0 auto;
    background: #ffffffdd;
    backdrop-filter: blur(2px);
    border-radius: 70px 30px 70px 30px;
    padding: 50px 40px;
    box-shadow: 0 32px 30px -48px #0d4d66,
        0 0 0 1px rgba(60, 164, 200, 0.2);
    transition: 0.3s;
}

/* row: flex with gap for modern spacing */
.row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.col-md-6 {
    flex: 1 1 400px;
}

/* image container with floating / 3d effect */
.img-con {
    position: relative;
    border-radius: 50px 20px 50px 20px;
    overflow: hidden;
    box-shadow: 30px 30px 40px -15px #15607733,
        -10px -10px 30px -5px #c1e4f4 inset;
    transition: transform 0.4s ease;
    background: linear-gradient(145deg, #d7ecf5, #ffffff);
    padding: 10px;
}

.img-con:hover {
    transform: scale(1.01) rotate(0.5deg);
}

.img-con img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 40px 16px 40px 16px;
    display: block;
    transition: 0.5s;
    filter: brightness(0.98) contrast(1.02);
}

.img-con::after {
    content: "✦ since 2015 ✦";
    position: absolute;
    bottom: 25px;
    right: 25px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(6px);
    padding: 12px 28px;
    border-radius: 60px;
    font-weight: 800;
    color: #0a445b;
    font-size: 1.2rem;
    box-shadow: 0 8px 18px #0000001a;
    letter-spacing: 1px;
    border: 1px solid white;
}

/* about content styling */
.about-content {
    padding: 20px 0 20px 20px;
}

.about-heading h2 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.3;
    background: linear-gradient(135deg, #0e4257, #1c7393, #34a0c7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    position: relative;
}

.about-heading h2::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -12px;
    width: 100px;
    height: 6px;
    background: linear-gradient(90deg, #1a7fa3, #a2d8f0);
    border-radius: 10px;
}

.about-content p {
    color: #1e4d61;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 24px;
    font-weight: 400;
    text-align: justify;
}

.about-content p i {
    color: #247e9f;
    margin-right: 6px;
}

/* enhanced cta button */
.btn-cta {
    display: inline-block;
    background: #166f8f;
    color: white !important;
    font-weight: 700;
    font-size: 1.2rem;
    padding: 16px 42px;
    border-radius: 60px;
    text-decoration: none;
    box-shadow: 0 20px 25px -12px #0a4f66;
    transition: 0.25s;
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-top: 15px;
    letter-spacing: 0.5px;
}

.btn-cta i {
    transition: 0.2s;
    margin-left: 8px;
}

.btn-cta:hover {
    background: #0b536d;
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 28px 30px -12px #0c6888;
}

.btn-cta:hover i {
    transform: translateX(8px);
}

/* company name tag inline */
.brand-tag {
    background: #e1f0f7;
    border-radius: 40px;
    padding: 6px 22px;
    display: inline-block;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0a4c64;
    border: 1px solid #b1d7e9;
}

/* responsive touches */
@media (max-width: 900px) {
    .about-card {
        padding: 35px 25px;
    }

    .about-heading h2 {
        font-size: 2.2rem;
    }

    .col-md-6 {
        flex-basis: 100%;
    }

    .img-con::after {
        font-size: 1rem;
        padding: 8px 20px;
    }
}

@media (max-width: 500px) {
    .about-heading h2 {
        font-size: 1.9rem;
    }
}

/* small animation for image */
@keyframes softPop {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.row {
    animation: softPop 0.7s ease-out;
}

.service-section {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    padding: 0 28px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
}

.section-title span {
    background: linear-gradient(145deg, #0f4b62, #2790b7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-sub {
    text-align: center;
    color: #2d5e75;
    font-size: 1.2rem;
    margin-bottom: 50px;
}

/* service grid */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin: 40px 0;
}

.service-card {
    background: white;
    border-radius: 40px 20px 40px 20px;
    overflow: hidden;
    box-shadow: 0 30px 40px -18px #165d78;
    transition: 0.3s;
    border: 1px solid rgba(35, 142, 180, 0.2);
    display: flex;
    flex-direction: column;
    height: 100%;
    opacity: 0;
    transform: translateY(20px);
    animation: cardFade 0.7s forwards;
}

.service-card:nth-child(1) {
    animation-delay: 0.1s;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) {
    animation-delay: 0.3s;
}

.service-card:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes cardFade {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 45px 50px -20px #1b6f92;
    border-color: #96d2f0;
}

/* image area - fixed ratio */
.card-img {
    width: 100%;
    aspect-ratio: 16 / 12;
    overflow: hidden;
    background: #cbe6f2;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.service-card:hover .card-img img {
    transform: scale(1.06);
}

/* fallback text if image missing (but we'll use placeholder images) */
.img-placeholder {
    background: linear-gradient(145deg, #b3d9ec, #d3ecf8);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a607b;
    font-weight: 700;
    font-size: 1.5rem;
}

.img-placeholder i {
    font-size: 4rem;
    opacity: 0.5;
    margin-right: 10px;
}

/* content area */
.card-content {
    padding: 28px 24px 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #0e445a;
    margin-bottom: 15px;
}

.card-content p {
    color: #2b5a70;
    line-height: 1.6;
    margin-bottom: 25px;
    flex: 1;
}

/* button group */
.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 10px;
}

.btn-read,
.btn-book {
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    text-align: center;
    transition: 0.2s;
    border: 2px solid transparent;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 1 1 auto;
}

.btn-read {
    background: white;
    border-color: #1c7fa3;
    color: #1c7fa3;
    padding: 0;
    /* padding moved to <a> for better click area */
}

.btn-read a {
    text-decoration: none;
    color: inherit;
    padding: 12px 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: 100%;
    height: 100%;
}

.btn-read:hover {
    background: #1c7fa3;
    color: white;
}

.btn-book {
    background: #1c7fa3;
    color: white;
    box-shadow: 0 8px 16px -6px #116185;
}

.btn-book:hover {
    background: #0f627f;
    transform: scale(1.03);
}

/* Ensure any <a> inside buttons don't have underlines */
.btn-group a {
    text-decoration: none;
    color: inherit;
}

/* modal styles (simple booking modal) */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 35, 50, 0.7);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-card {
    background: white;
    max-width: 600px;
    width: 100%;
    border-radius: 60px 20px 60px 20px;
    padding: 40px;
    box-shadow: 0 50px 60px -20px #043845;
    transform: scale(0.9);
    transition: 0.3s;
}

.modal-overlay.active .modal-card {
    transform: scale(1);
}

.modal-card h2 {
    font-size: 2.3rem;
    font-weight: 800;
    background: linear-gradient(145deg, #125066, #2592bb);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.modal-card .service-badge {
    background: #d0e9f5;
    padding: 8px 20px;
    border-radius: 60px;
    display: inline-block;
    margin-bottom: 20px;
    color: #1a5e7a;
}

.modal-card input,
.modal-card select,
.modal-card textarea {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid #cbe0ec;
    border-radius: 60px;
    margin-bottom: 18px;
    font-size: 1rem;
    outline: none;
}

.modal-card textarea {
    border-radius: 30px;
    resize: vertical;
}

.modal-actions {
    display: flex;
    gap: 16px;
    margin-top: 10px;
}

.btn-submit,
.btn-cancel {
    padding: 14px 28px;
    border-radius: 60px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-submit {
    background: #1a7fa3;
    color: white;
    flex: 2;
}

.btn-cancel {
    background: #e1eef7;
    color: #1a5e78;
    flex: 1;
}

.close-icon {
    float: right;
    font-size: 2rem;
    cursor: pointer;
    color: #1d5e79;
}


.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
}

.section-title span {
    background: linear-gradient(145deg, #0f4b62, #2790b7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-sub {
    text-align: center;
    color: #2d6077;
    font-size: 1.2rem;
    margin-bottom: 60px;
}

/* main grid: 2 columns (why choose us + testimonials) */
.why-testi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* ----- WHY CHOOSE US (left side) ----- */
.why-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
}

.why-heading i {
    font-size: 2.8rem;
    color: #1e7ca0;
    background: #d3eaf6;
    padding: 16px;
    border-radius: 60px;
}

.why-heading h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #104c63;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.benefit-card {
    background: white;
    padding: 28px 22px;
    border-radius: 40px 16px 40px 16px;
    box-shadow: 0 20px 30px -12px #1a5a73;
    transition: 0.25s;
    border: 1px solid rgba(25, 140, 180, 0.2);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.6s forwards;
}

.benefit-card:nth-child(1) {
    animation-delay: 0.1s;
}

.benefit-card:nth-child(2) {
    animation-delay: 0.2s;
}

.benefit-card:nth-child(3) {
    animation-delay: 0.3s;
}

.benefit-card:nth-child(4) {
    animation-delay: 0.4s;
}

.benefit-card:nth-child(5) {
    animation-delay: 0.5s;
}

.benefit-card:nth-child(6) {
    animation-delay: 0.6s;
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 40px -16px #1b6d8f;
    border-color: #8ac9e6;
}

.benefit-icon {
    font-size: 2.6rem;
    background: linear-gradient(135deg, #115772, #2993bd);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.benefit-card h4 {
    font-size: 1.7rem;
    font-weight: 700;
    color: #0a445a;
    margin-bottom: 8px;
}

.benefit-card p {
    color: #2d627b;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* ----- TESTIMONIALS (right side) ----- */
.testi-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
}

.testi-heading i {
    font-size: 2.8rem;
    color: #1e7ca0;
    background: #d3eaf6;
    padding: 16px;
    border-radius: 60px;
}

.testi-heading h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #104c63;
}

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.testi-card {
    background: white;
    border-radius: 40px 16px 40px 16px;
    padding: 32px 30px;
    box-shadow: 0 15px 25px -10px #16586e;
    border-left: 8px solid #1f8ab0;
    transition: 0.25s;
    opacity: 0;
    transform: translateX(20px);
    animation: slideRight 0.6s forwards;
}

.testi-card:nth-child(1) {
    animation-delay: 0.2s;
}

.testi-card:nth-child(2) {
    animation-delay: 0.4s;
}

.testi-card:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes slideRight {
    0% {
        opacity: 0;
        transform: translateX(30px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.testi-card:hover {
    transform: scale(1.02) translateX(5px);
    box-shadow: 0 25px 35px -12px #1c6885;
}

.quote-icon {
    color: #248bb3;
    font-size: 2rem;
    opacity: 0.4;
    margin-bottom: 10px;
}

.testi-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    font-style: italic;
    color: #1d4d63;
    margin-bottom: 20px;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 10px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    background: linear-gradient(145deg, #b3dff5, #70c0e0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #15586f;
    font-weight: 800;
    font-size: 1.6rem;
    box-shadow: 0 6px 12px #0c475c;
}

.author-info h5 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0a3d51;
}

.author-info span {
    color: #3d728b;
    font-size: 0.9rem;
}

/* company tag */
.brand-tag {
    margin-top: 50px;
    text-align: center;
    color: #2f6e89;
    font-weight: 600;
    font-size: 1.1rem;
}

/* responsive */
@media (max-width: 950px) {
    .why-testi-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 550px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .testi-card {
        padding: 25px 20px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .why-heading h3,
    .testi-heading h3 {
        font-size: 1.9rem;
    }
}


.container {
    max-width: 1200px;
    width: 100%;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
}

.section-title span {
    background: linear-gradient(145deg, #0e4f68, #2f94bd);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-sub {
    text-align: center;
    color: #2c647d;
    margin-bottom: 50px;
    font-size: 1.2rem;
}

/* breadcrumb card */
.breadcrumb-card {
    background: white;
    border-radius: 40px 20px 40px 20px;
    padding: 30px 30px;
    margin-bottom: 30px;
    box-shadow: 0 20px 30px -12px #1d5b74;
    border: 1px solid rgba(38, 147, 187, 0.3);
    transition: 0.2s;
}

.breadcrumb-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0e445b;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.breadcrumb-card h3 i {
    color: #1b7ea3;
    font-size: 1.8rem;
}

/* ----- breadcrumb base styles (reusable) ----- */
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 500;
    padding: 12px 18px;
    background: #ecf6fc;
    border-radius: 60px;
    box-shadow: inset 0 2px 5px #cbe3f0, 0 4px 8px #b0d5e8;
}

.breadcrumb a {
    color: #1a6e8f;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: 0.15s;
    padding: 4px 8px;
    border-radius: 40px;
}

.breadcrumb a:hover {
    background: #cae3f2;
    color: #0b4f6a;
    text-decoration: underline wavy #1f82a8 1.5px;
    text-underline-offset: 5px;
}

.breadcrumb .separator {
    color: #54859b;
    font-weight: 400;
    font-size: 1.2rem;
    margin: 0 4px;
}

.breadcrumb .current {
    color: #0b3e52;
    font-weight: 700;
    background: #ffffff;
    padding: 5px 16px;
    border-radius: 60px;
    box-shadow: 0 2px 6px #b1d6ea;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* variant with larger icons */
.breadcrumb-icons i {
    font-size: 1.2rem;
    color: #217394;
}

/* dropdown interactive demo (simple) */
.dropdown-breadcrumb {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: white;
    min-width: 200px;
    box-shadow: 0 20px 30px -8px #14576e;
    border-radius: 30px;
    padding: 12px 0;
    z-index: 10;
    top: 30px;
    left: 0;
    border: 1px solid #b2dff5;
}

.dropdown-content a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    color: #15546d;
    text-decoration: none;
    font-weight: 500;
}

.dropdown-content a:hover {
    background: #def0fa;
}

.dropdown-breadcrumb.active .dropdown-content {
    display: block;
}

.chevron-icon {
    transition: 0.2s;
}

.dropdown-breadcrumb.active .chevron-icon {
    transform: rotate(180deg);
}

.brand-footer {
    margin-top: 50px;
    color: #266e8b;
    font-weight: 600;
}

/* ----- Enhanced 404 Error Styles ----- */
.error-wrapper {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 24px;
    background: radial-gradient(circle at top right, #f0f9ff, #e0f2fe);
}

.error-container {
    max-width: 1100px;
    width: 100%;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 60px 20px 60px 20px;
    box-shadow: 0 40px 80px -20px rgba(13, 70, 95, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 60px;
    animation: errorEnter 1s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes errorEnter {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.98);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.error-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
    gap: 60px;
}

/* Radar Visual Section */
.radar-visual {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.radar-circle {
    position: absolute;
    border: 1px solid rgba(28, 127, 163, 0.2);
    border-radius: 50%;
}

.circle-1 {
    width: 100%;
    height: 100%;
}

.circle-2 {
    width: 70%;
    height: 70%;
}

.circle-3 {
    width: 40%;
    height: 40%;
}

.radar-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(28, 127, 163, 0.1) 0%, transparent 70%);
    animation: radarPulse 4s infinite linear;
}

.radar-icon {
    font-size: 5rem;
    color: #1c7fa3;
    z-index: 2;
    filter: drop-shadow(0 0 15px rgba(28, 127, 163, 0.4));
    animation: satelliteWobble 6s infinite ease-in-out;
}

@keyframes radarPulse {
    0% {
        transform: scale(0.1);
        opacity: 0;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes satelliteWobble {

    0%,
    100% {
        transform: rotate(-5deg) translateY(0);
    }

    50% {
        transform: rotate(5deg) translateY(-10px);
    }
}

/* Content Section */
.error-code {
    font-size: 7.5rem;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, #0f4457, #1c7fa3);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
    letter-spacing: -2px;
}

.error-title {
    font-size: 3rem;
    font-weight: 800;
    color: #0e2e3e;
    margin-bottom: 20px;
}

.error-message {
    font-size: 1.25rem;
    color: #3d6172;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 480px;
}

.error-message i {
    color: #1c7fa3;
    margin-right: 10px;
}

.btn-group {
    display: flex;
    gap: 20px;
}

.btn-primary,
.btn-secondary {
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-primary {
    background: #1c7fa3;
    color: white;
    box-shadow: 0 10px 20px -5px rgba(28, 127, 163, 0.4);
}

.btn-primary:hover {
    background: #0f627f;
    transform: translateY(-3px);
    box-shadow: 0 15px 25px -5px rgba(28, 127, 163, 0.5);
}

.btn-secondary {
    background: transparent;
    border: 2px solid #1c7fa3;
    color: #1c7fa3;
}

.btn-secondary:hover {
    background: rgba(28, 127, 163, 0.05);
    transform: translateY(-3px);
}

.fun-fact {
    margin-top: 50px;
    padding: 20px 28px;
    background: #eef9ff;
    border-radius: 24px;
    color: #1e5c77;
    font-size: 1rem;
    border-left: 5px solid #1c7fa3;
}

.brand-line {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(28, 127, 163, 0.1);
    color: #648da0;
    font-weight: 600;
}

/* Responsive Fixes */
@media (max-width: 900px) {
    .error-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .error-container {
        padding: 40px;
    }

    .error-message {
        margin-inline: auto;
    }

    .btn-group {
        justify-content: center;
    }

    .radar-visual {
        width: 220px;
        height: 220px;
    }
}

@media (max-width: 500px) {
    .error-code {
        font-size: 5rem;
    }

    .error-title {
        font-size: 2.2rem;
    }

    .btn-group {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}