@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&family=Inter+Tight:ital,wght@0,100..900;1,100..900&display=swap');

*,
::after,
::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2EB8FF;
    --blue-color: #05324B;
    --blue-sec: #062D4B;
    --yellow-color: #FDBB30;
    --linear-bg: linear-gradient(180deg, rgba(1, 2, 27, 1) 0%, rgba(1, 2, 27, 0) 100%);
    --light-gray: #727171;
    --linear-white-bg: linear-gradient(90deg, #fefefe 0%, rgba(234, 234, 234, 0.5) 50%, #e2e2e2 100%);

}

body:has(h1, h2, h3, h4, h5, h6) {
    font-family: "Inter Tight", sans-serif;
}

body {
    font-family: "Instrument Sans", sans-serif;
}


.main-header {
    padding: 30px 0;
    z-index: 1000;
    position: absolute;
    width: 100%;
    top: 0;
    background: linear-gradient(180deg,
            rgba(1, 2, 27, 1) 0%,
            rgba(1, 2, 27, 0) 100%);
}

/* === NAV LINKS === */
.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 16px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #fff;
}

/* === CENTER LOGO === */
.navbar-brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    /* ensures logo stays above nav background */
}

.navbar-brand img {
    height: 60px;
    transition: transform 0.3s ease;
}

.navbar-brand img:hover {
    transform: scale(1.05);
}

/* === RIGHT SIDE === */
.phone {
    font-weight: 500;
    color: #fff;
}

.talk-btn {
    background: var(--primary-color);
    border: none;
    color: #fff;
    font-weight: 600;
    border-radius: 10px;
    padding: 8px 24px;
    transition: all 0.3s ease;
    text-transform: capitalize;
    display: inline-block;
}

.talk-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.4);
    background: white;
    color: var(--blue-sec);
}

/* === TOGGLER (Animated Hamburger) === */
.navbar-toggler {
    border: none;
    background: transparent;
    position: relative;
    z-index: 1050;
}

.navbar-toggler-icon {
    background-image: none;
    width: 25px;
    height: 2px;
    background-color: #fff;
    position: relative;
    display: inline-block;
    transition: all 0.3s;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s;
}

.navbar-toggler-icon::before {
    top: -8px;
}

.navbar-toggler-icon::after {
    top: 8px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    transform: rotate(45deg);
    top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    transform: rotate(-45deg);
    top: 0;
}

.hero-section {
    color: white;
    padding-top: 100px;
    position: relative;
    width: 100%;
    height: 100vh;	
    overflow: hidden;
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: fill; 
    z-index: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45); /* Adjust opacity & color */
    z-index: 2;
}


.hero-content {
    position: relative;
    z-index: 2;
    color: white; /* optional */
}
.hero-btns img {
    height: auto;
    width: 100px !important;
}

.hero-btns {
    display: flex;
    align-items: center;
    gap: 35px;
}

.hero-text h2 {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 2rem;
}

.hero-text p {
    margin-bottom: 2rem;
    color: #FFF;
}

.hero-customers {
    display: inline-flex;
}

.hero-customers {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.hero-customers strong {
    color: var(--yellow-color);
}


.prev-next-custom {

    /* position: absolute; */
    /* bottom: 50px; */
    /* z-index: 9999; */

}


.prev-next-custom button {
    background: transparent;
    color: white;
    border: none;
    box-shadow: none;
}

.prev-next-custom button:hover {
    color: #918D8D;
}

.hero-image {
    position: relative;
}

.client-logos img {
    position: absolute;
    width: 110px !important;
    height: 60px;
    background: #fff;
    border-radius: 10px;
    padding: 12px;
    box-shadow: 0 0 60px 0 #ff9900;
    transition: all 0.3s ease;
    z-index: 2;
    object-fit: contain;
}

.client-logos img:nth-child(1) {
    top: 45%;
    left: 1%;
}

.client-logos img:nth-child(2) {
    top: 45%;
    right: 5%;
}

.client-logos img:nth-child(3) {
    bottom: 10%;
    left: 0%;
}

.client-logos img:nth-child(4) {
    bottom: 22%;
    right: 30%;
}


/* Hover effect */
.client-logos img:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.marketing-solution-sec {
    padding: 3rem 0;
}

.marketing-solution-sec p {
    color: var(--light-gray);
}

.marketing-solution-sec p strong {
    color: #000000;
}

.title-wrapper h2 {
    font-size: 45px;
    font-weight: 400;
    margin: 0.7rem 0;
}

.title-wrapper>span {
    position: relative;
    display: inline-block;
    margin: 1rem 0;
    font-size: 18px;
    color: #000000;
    font-weight: 500;
}

.title-wrapper>span::before {
    content: "";
    position: absolute;
    left: -27px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: url(../img/star.png) no-repeat center center / contain;
}

.title-wrapper>span::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -100px;
    transform: translateY(-50%);
    width: 90px;
    height: 2px;
    background: linear-gradient(90deg, #BEBEBE 0%, #FFFFFF 100%);
    border-radius: 2px;
}


.card-image {
    margin: 1.5rem 0;
    border-radius: 34px;
    overflow: hidden;
}

.card-content {
    text-align: center;
}

.card-content h3 {
    font-weight: 700;
}


.services_slider {
    position: relative;
}

.card-image img {
    width: 100%;
}

/* ===== Round Owl Nav Buttons ===== */
.marketing-solution-sec .owl-carousel .owl-nav button.owl-prev,
.marketing-solution-sec .owl-carousel .owl-nav button.owl-next {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-color) !important;
    color: #fff !important;
    border: none;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 5;
}


.marketing-solution-sec .owl-carousel .owl-nav button.owl-prev:hover,
.marketing-solution-sec .owl-carousel .owl-nav button.owl-next:hover {
    background: var(--blue-color) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.marketing-solution-sec .owl-carousel .owl-nav button span {
    font-size: 22px;
    font-weight: normal;
    line-height: 1;
}


.marketing-solution-sec .owl-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 10px;
}


.explore-btn {
    display: inline-block;
    margin-top: 20px;
    background: var(--blue-sec);
    color: #fff;
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
}



.explore-btn:hover {
    background: var(--primary-color);

}

.about-section {
    background: var(--primary-color);
    color: white;
    padding: 2rem 0;
    position: relative;
}

.about-section::after {
    content: "";
    height: 50%;
    width: 100%;
    background-color: white;
    position: absolute;
    top: 0;
}

.about-wrapper {
    background: var(--blue-sec);
    padding: 2rem;
    border-radius: 50px;
    position: relative;
    z-index: 1;
}

.image-wrapper img {
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
}

.image-wrapper {
    height: 100%;
    text-align: center;
}

.about-text {
    padding-left: 15px;
}

.about-text .title-wrapper span {
    color: white;
    margin: 0;
    margin-left: 21px;
}

.about-section .explore-btn {
    background: white;
    color: black;
}

.about-section p {
    color: #BFBFBF;
}

.about-section .explore-btn:hover {
    background: var(--primary-color);
    color: white;
}

.mission-wrapper {
    display: grid;
    grid-template-columns: 25% 75%;
    align-items: center;
    background: url(../img/blue-bg.png);
    border-radius: 16px;
    padding: 35px 20px;
    position: relative;
    color: #fff;
    overflow: hidden;
    background-size: cover;
}

.about-se {
    display: flex;
    align-items: stretch;
}


.about-section .title-wrapper h2 {
    font-size: 45px;
}

.mission-left {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: right;
    position: relative;
}

.mission-left::after {
    content: "";
    position: absolute;
    right: 20px;
    top: 0%;
    height: 100%;
    width: 1px;
    background: rgba(255, 255, 255, 0.5);
}

.mission-left h4 {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.3;
    color: #fff;
    text-align: center;
    margin: 0;
}

/* Right Side: Description */
.mission-right p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    font-weight: 300;
}

.mission-right strong {
    font-weight: 700;
    color: #fff;
}

.why-choose-us-sec {
    background: var(--primary-color);
    color: white;
    padding: 2rem 0;
}

.icon-wrap {
    margin: 1.5rem 0;
    height: 270px;
    background: white;
    place-content: center;
    text-align: center;
    border-radius: 36px;
}


.whychoose_card {
    text-align: center;
}

.whychoose_card h3 {
    font-size: 24px;
}

.whychoose_card p {
    font-size: 14px;
}

.why-choose-us-sec .title-wrapper>span {
    color: white;
}

.why-choose-us-sec .title-wrapper>span::before {
    filter: brightness(0) invert(1);
}

.why-choose-us-sec .title-wrapper>span::after,
.about-section .title-wrapper>span::after {
    background: linear-gradient(90deg, #ffffff 0%, #ffffff00 100%);
}


.case-study-sec {
    padding: 3rem 0;
}

.case-study-sec .title-wrapper>span {
    margin-left: 30px;
}


.case-card {
    position: relative;
    border-radius: 24px;
    background-size: cover;
    background-position: center;
    min-height: 395px;
    display: flex;
    align-items: flex-start;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    padding-top: 30px;
    height: 100%;
}

/* Dark overlay for better text contrast */
.case-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #001e3ccf;
    backdrop-filter: blur(1px);
    transition: background 0.3s ease;
}

.case-card:hover::before {
    background: rgba(0, 30, 60, 0.75);
}

.case-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* ==== Case Content ==== */
.case-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 30px 40px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
}

.case-tag {
    display: inline-block;
    background: #fff;
    color: #001b33;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 8px;
    margin-bottom: 18px;
    max-width: fit-content;
}


.case-content h3 {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #fff;
    font-family: "Instrument Sans", sans-serif;
}

.case-category {
    display: block;
    color: #fcbf49;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 15px;
}

.case-brands {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.case-brands img {
    background: white;
    padding: 8px;
    height: 40px;
    width: 80px;
    object-fit: contain;
    border-radius: 5px;
}

.brand-tag img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    margin-right: 6px;
}

.brand-tag:hover {
    background: #f1f1f1;
}


.counter-section {
    background: #fff;
    padding: 80px 0;
    text-align: center;
}

.counter-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    border-radius: 12px;
}

.counter-box {
    flex: 1;
    padding: 0 20px;
    position: relative;
}

.counter-box:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 70px;
    width: 1px;
    background: rgba(0, 0, 0, 0.1);
}

.counter-box h4 {
    font-size: 64px;
    font-weight: 700;
    color: var(--blue-sec);
    line-height: 1;
    margin-bottom: 12px;
}

.counter-box h4 span {
    font-weight: 500;
    color: var(--blue-color);
}

.counter-box h4.highlight {
    color: var(--primary-color);
}

.counter-box p {
    font-size: 15px;
    color: #333;
    line-height: 1.5;
    margin: 0;
}

.counter-box strong {
    font-weight: 600;
    color: #000;
}



.testimonial-section {
    padding: 3rem 0;
}


.star-icons {
    width: 100px !important;
}

.review p {
    font-size: 20px;
    margin: 1.5rem 0;
}

.author-info img {
    width: 60px !important;
    height: 60px;
    border-radius: 50%;
}

.author-info {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.testimonial-card {
    background: var(--linear-white-bg);
    border: 1px solid #f3f3f3;
    border-radius: 34px;
    padding: 40px 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    margin: 1.5rem 0;
    position: relative;
}

.testimonial-section .title-wrapper>span {
    margin-left: 30px;
}

.testimonial-section .owl-nav {
    display: flex;
    width: 100%;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
}

.testimonial-section .owl-nav button {
    border: 1px solid black !important;
    width: 27px;
    height: 27px;
    border-radius: 50% ! IMPORTANT;
}

.testimonial-section .owl-nav button:hover {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}


.maximize-sec {
    padding: 3rem 0;
    color: white;
    min-height: 500px;
    place-content: center;
    position: relative;
}

.maximize-sec::before {
    content: "";
    background: linear-gradient(300deg, rgba(6, 45, 75, 0) 0%, rgba(6, 45, 75, 1) 100%);
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    top: 0;
    width: 100%;
}

.faq-section {
    padding: 3rem 0;
}


.faq-wrapper {
    max-width: 80%;
    margin: 30px auto;
}

.faq-item {
    border-bottom: 1px solid #e4e4e4;
    padding: 20px 0;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    outline: none;
    color: #062D4B;
    font-size: 20px;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #005a8c;
}

.faq-icon {
    font-size: 22px;
    color: #0b2845;
    transition: transform 0.3s ease, color 0.3s ease;
    border: 1px solid;
    width: 30px;
    text-align: center;
    border-radius: 50%;
    line-height: initial;
    margin: 0;
    align-items: center;
    height: 30px;
}

.faq-answer {
    font-size: 15px;
    color: #333;
    padding: 0 0 10px 0;
    margin: 0;
    line-height: 1.7;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.view-more-btn {
    display: inline-block;
    background: linear-gradient(90deg, #083357 0%, #0b4d7e 100%);
    color: #fff;
    font-weight: 600;
    border-radius: 8px;
    padding: 10px 26px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.view-more-btn:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    color: white;
}



.contact-us-section {
    position: relative;
    background-color: #062D4B;
    color: #fff;
    padding: 3rem 0;
    overflow: hidden;
}

.contact-us-section .title-wrapper>span {
    margin-left: 28px;
    color: white;
}

.contact-us-section .title-wrapper>span::before {
    filter: brightness(0) invert(1);
}

.contact-content {
    padding-right: 30px;
}

.contact-form .form-control {
    border-radius: 10px;
    border: none;
    padding: 12px 16px;
    font-size: 15px;
}

.contact-form .form-control::placeholder {
    color: #999;
}

.send-btn {
    background: var(--primary-color);
    color: #fff;
    font-weight: 600;
    border-radius: 10px;
    padding: 10px 30px;
    border: none;
    transition: all 0.3s ease;
}

.send-btn:hover {
    background: linear-gradient(90deg, #0b4d7e 0%, #3ec6ff 100%);
    transform: translateY(-2px);
}


.contact-image-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    width: 48%;
    height: 100%;
    overflow: hidden;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    background: #fff;
}

.contact-image {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-left: 5px solid #062D4B;

}


.contact-us-section .title-wrapper>span::after,
.about-section .title-wrapper>span::after {
    background: linear-gradient(90deg, #ffffff 0%, #ffffff00 100%);
}

/* === FOOTER === */
.main-footer {
    background-color: #000;
    color: #fff;
    font-family: "Inter", sans-serif;
    padding: 80px 0 30px;
}

.footer-newsletter h5 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.footer-newsletter h3 {
    font-size: 26px;
    font-weight: 400;
    line-height: 1.4;
    margin: 18px 0 25px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.newsletter-form input {
    border: none;
    border-radius: 8px;
    padding: 14px 16px;
    font-size: 15px;
    color: #000;
    width: 100%;
}

.newsletter-form input::placeholder {
    color: #777;
}

.newsletter-form button {
    background: #3ec6ff;
    border: none;
    color: #000;
    font-weight: 600;
    border-radius: 8px;
    padding: 12px;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #0099ff;
    color: #fff;
}


.main-footer h6 {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    background: #0d0d0d;
    border: 1px solid #1c1c1c;
    border-radius: 10px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.footer-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ccc;
    padding: 12px 15px;
    text-decoration: none;
}

.footer-list li i {
    font-size: 17px;
    color: white;
    text-align: center;
    border: 1px solid #434343;
    width: 35px;
    height: 35px;
    place-content: center;
    border-radius: 5px;
}


.footer-list li:hover {
    background: #1a1a1a;
    border-color: #2a2a2a;
}

.footer-list li:hover a {
    color: #fff;
}

.footer-list li:hover i {
    color: #fff;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 50px;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    color: #888;
    font-size: 14px;
}

.footer-bottom .footer-links {
    list-style: none;
    display: flex;
    gap: 15px;
    padding: 0;
    margin: 0;
}

.footer-bottom .footer-links a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom .footer-links a:hover {
    color: #3ec6ff;
}


/* Responsive */
@media (max-width: 992px) {
    .main-footer {
        text-align: center;
    }

    .footer-newsletter {
        margin-bottom: 30px;
    }

    .footer-list li a {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }
}


/* Inner page css */
.solution-section {
    padding-top: 150px;
    color: white;
    padding-bottom: 3rem;
    position: relative;
}

.solution-section::after {
    content: "";
    background: white;
    height: 40%;
    width: 100%;
    position: absolute;
    bottom: 0;
}

.breadcrumb-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 8px;
    font-size: 16px;
    color: #2EB8FF;
    position: relative;
    width: fit-content;
}

.breadcrumb-list li a {
    color: #2EB8FF;
    text-decoration: none;
}

.breadcrumb-list::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -100px;
    transform: translateY(-50%);
    width: 90px;
    height: 2px;
    background: linear-gradient(90deg, #2EB8FF 0%, #BEBEBE 100%);
    border-radius: 2px;
}

.solution-section h1 {
    font-size: 50px;
    font-weight: 600;
    margin: 2rem 0;
}

.inner-about-wrapper {
    background: #2EB8FF;
    padding: 2rem;
    color: white;
    border-radius: 50px;
    position: relative;
    z-index: 1;
    margin-top: 3rem;
}

.inner-about-wrapper .explore-btn {
    background: white;
    color: var(--blue-sec);
}

.inner-about-wrapper .explore-btn:hover {
    background: var(--blue-sec);
    color: white;
}

.inner-about-wrapper .title-wrapper>span::before {
    filter: brightness(0) invert(1);
}

.join-planing-sec {
    background: var(--blue-sec);
    color: white;
    padding: 3rem 0;
}

.join-planing-sec .title-wrapper>span {
    color: white;
    margin-left: 28px;
}

.join-planing-sec .title-wrapper>span::before {
    filter: brightness(0) invert(1);
}

.retail-Process-sec {
    padding: 3rem 0;
}

.retail-Process-sec .title-wrapper>span {
    margin: 0;
}

.cards-wrapper {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.process-card {
    background: var(--primary-color);
    width: 400px;
    padding: 40px 25px;
    border-radius: 20px;
    text-align: center;
    color: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.process-card:hover{
    background: var(--blue-color);
}
.process-card .icon img {
    width: 100px;
    margin-bottom: 20px;
}

.process-card h3 {
    margin-bottom: 15px;
    font-size: 30px;
    font-weight: 600;
}

.process-card p {
    font-size: 14px;
    line-height: 1.6;
}

.wpcf7-not-valid-tip:not(:nth-child(1)):not(:nth-child(2)) {
    display: none;
}

/* CSS ADDED BY MADHAV */

.card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* .comment-form {
  max-width: 550px;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid #e5e5e5;
  background: #ffffff;
  margin: 0 auto;
}

.comment-notes {
  font-size: 14px;
  color: #666;
  margin-bottom: 18px;
}

.comment-form label {
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 6px;
  display: block;
  color: #333;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #dcdcdc;
  background: #fafafa;
  font-size: 15px;
  transition: all 0.2s ease;
  margin-top: 5px;
}

.comment-form textarea {
  resize: vertical;
  min-height: 120px;
}

.comment-form input:focus,
.comment-form textarea:focus {
  outline: none;
  background: #fff;
  border-color: #111;
}

.comment-form-cookies-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 15px 0 20px;
  font-size: 14px;
  color: #444;
}

.comment-form-cookies-consent input {
  margin-top: 4px;
}

.comment-form input[type="submit"] {
  background: #111;
  color: white;
  padding: 12px 22px;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.comment-form input[type="submit"]:hover {
  background: #333;
}

.comment-form p {
  margin-bottom: 18px;
} */


.comment-form {
  max-width: 780px;
  padding: 25px;
  border-radius: 12px;
  background: #062D4B;
  margin: 0 auto;
}

p.comment-notes {
    color: #fff;
}

.comment-form > p.comment-form-author,
.comment-form > p.comment-form-email,
.comment-form > p.comment-form-url {
  display: flex;
  flex-direction: column;
}

.comment-form-author,
.comment-form-email,
.comment-form-url {
  flex: 1;
}

.comment-form-author,
.comment-form-email {
  display: inline-flex !important;
  width: 48%;
  margin-right: 2%;
}

.comment-form-email {
  margin-right: 0;
}

.comment-form-url {
  display: inline-flex !important;
  width: 99%;
  margin-right: 2%;
}

.comment-form-comment {
  width: 99%;
  display: block;
}

.comment-form label {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 6px;
  color: #fff;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid #dadada;
  background: #fff;
  font-size: 15px;
  transition: 0.2s;
}

.comment-form input:focus,
.comment-form textarea:focus {
  border-color: #0d4b7d;
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 75, 125, 0.15);
}

.comment-form-cookies-consent {
  display: flex;
  gap: 10px;
  font-size: 14px;
}

.comment-form input[type="submit"] {
  background: #0d4b7d;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  cursor: pointer;
}
.comment-form input[type="submit"]:hover {
  background: #083757;
}

@media (max-width: 600px) {
  .comment-form-author,
  .comment-form-email,
  .comment-form-url {
    width: 100% !important;
    margin-right: 0 !important;
  }
}





