@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

body {
    font-family: "Poppins", sans-serif;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
.custom-navbar {
    background: #041d3d;
    padding: 15px 0;
}

.navbar-nav .nav-link {
    color: white;
    font-weight: 500;
}

.navbar-nav .nav-link:hover {
    color: #9aa7ff;
}

.dropdown-menu {
    border-radius: 6px;
}

.custom-btn {
    background: linear-gradient(90deg, #6a5cff, #5f6dfc);
    color: white;
    padding: 10px 22px;
    border-radius: 30px;
    border: none;
}

.custom-btn:hover {
    color: white;
    opacity: 0.9;
}

/*banner */
.hero-section {
    background: #f4f6f9;
    padding: 80px 0;
}

.hero-title {
    font-size: 46px;
    font-weight: 700;
    color: #0c3c84;
    line-height: 1.3;
    margin-bottom: 20px;
}

.hero-text {
    font-size: 16px;
    color: #6c757d;
    margin-bottom: 25px;
    max-width: 450px;
}

.hero-btn {
    background: #0c3c84;
    color: #fff;
    padding: 12px 22px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
}

.hero-btn:hover {
    background: #072a5d;
    color: #fff;
}

.hero-img {
    max-width: 100%;
}

.certifications {
    margin-top: 35px;
    display: flex;
    gap: 25px;
    align-items: center;
    flex-wrap: wrap;
}

.certifications img {
    width: 60px;
    height: 60px;
    opacity: 0.8;
}

/* Mobile Responsive */

@media (max-width: 768px) {
    .hero-section {
        text-align: center;
        padding: 60px 0;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-text {
        margin: auto;
        margin-bottom: 25px;
    }

    .certifications {
        justify-content: center;
    }
}

/* banner end */

/* about */
.services-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-subtitle {
    color: #6c757d;
    max-width: 600px;
    margin: auto;
}

.service-box {
    padding: 30px 20px;
}

.service-icon {
    height: 70px;
    margin-bottom: 20px;
}

.service-box h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-box p {
    font-size: 15px;
    color: #6c757d;
}

.service-link {
    text-decoration: none;
    font-weight: 600;
    color: #000;
    border: 1px solid #0d6efd;
    padding: 8px 20px;
    border-radius: 30px;
    display: inline-block;
    margin-top: 15px;
}

.service-link:hover {
    color: #0d6efd;
}

/* about end */

/* features */
.features-section {
    padding: 80px 0;
}

.section-title {
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.feature-card {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 2rem 1.5rem;
    height: 100%;
    transition: box-shadow 0.3s ease;
}

/* Optional: Slight hover effect */
.feature-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* The circular red checkmark icon */
.icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    border: 3px solid #c92a3b; /* Red border */
    border-radius: 50%;
    color: #c92a3b; /* Red checkmark */
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #212529;
}

.feature-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #495057;
    margin-bottom: 0;
}
/* features*/

/* owl cvarousel */
.testimonial-section {
    padding: 80px 0;
}

.testimonial-heading {
    font-weight: 800;
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 3rem;
}

/* The main bordered box */
.testimonial-card-wrapper {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 3rem 4rem;
    max-width: 900px;
    margin: 0 auto;
    background-color: #fff;
    position: relative;
}

.testimonial-img {
    width: 100%;
    max-width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    margin: 0 auto;
}

.testimonial-text {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.testimonial-name {
    font-weight: 700;
    font-size: 1.2rem;
    color: #1a1a1a;
    margin-bottom: 0.2rem;
}

.testimonial-title {
    font-size: 0.85rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Owl Carousel Navigation Customization */
.testimonial-card-wrapper .owl-nav {
    margin: 0;
}

.testimonial-card-wrapper .owl-nav button.owl-prev,
.testimonial-card-wrapper .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem !important;
    color: #1a1a1a !important;
    background: transparent !important;
    width: 40px;
    height: 40px;
    transition: color 0.3s ease;
}

.testimonial-card-wrapper .owl-nav button:hover {
    color: #666 !important;
}

.testimonial-card-wrapper .owl-nav button.owl-prev {
    left: 10px;
}

.testimonial-card-wrapper .owl-nav button.owl-next {
    right: 10px;
}

/* Remove the default focus outline from Owl buttons */
.testimonial-card-wrapper .owl-nav button:focus {
    outline: none;
}

/* Owl Carousel Dots Customization */
.testimonial-section .owl-theme .owl-dots {
    text-align: center;
    margin-top: 2rem !important; /* Pushes dots below the card */
}

.testimonial-section .owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    background: #d3d3d3; /* Light grey dots */
    border-radius: 50%;
    margin: 5px 6px;
    transition: background-color 0.3s ease;
}

.testimonial-section .owl-theme .owl-dots .owl-dot.active span,
.testimonial-section .owl-theme .owl-dots .owl-dot:hover span {
    background: #555555; /* Dark grey active dot */
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .testimonial-card-wrapper {
        padding: 2rem 2.5rem;
    }
    .testimonial-card-wrapper .owl-nav button.owl-prev {
        left: 0px;
    }
    .testimonial-card-wrapper .owl-nav button.owl-next {
        right: 0px;
    }
    .testimonial-img {
        margin-bottom: 1.5rem;
        max-width: 200px;
        height: 200px;
    }
}
/* owl cvarousel end */

/* artical */
.article-section {
    background-color: #061224;
    padding: 40px 0;
    min-height: 400px; /* Just to ensure the dark background fills the screen */
}

/* Card Container */
.article-card {
    position: relative;
    display: block;
    min-height: 320px; /* Fixed height for consistency */
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none; /* Removes underline from links */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Background Image Layer */
.article-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease;
}

/* Subtle zoom effect on hover */
.article-card:hover .article-card-bg {
    transform: scale(1.05);
}

/* Dark Gradient Overlay */
.article-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient that is dark at the bottom and fades to transparent */
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.1) 100%
    );
    z-index: 1;
}

/* Text Content */
.article-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px 25px;
    z-index: 2; /* Keeps text above the overlay */
}

.article-title {
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); /* Helps legibility */
}
.btn-see-all {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;

    padding: 12px 40px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px; /* Gives it a nice pill shape */
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-see-all:hover {
    background-color: #ffffff;
    color: #061224; /* Matches the dark section background */
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.15); /* Soft glow effect */
    transform: translateY(-2px); /* Slight lift on hover */
}
/* artical */

/* recent work */
.recent-works-section {
    padding: 80px 0;
    background-color: #f8f9fa; /* Very light grey background matching the image */
}

.section-title {
    font-weight: 800;
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 3rem;
}

/* Portfolio Item Styles */
.portfolio-item {
    position: relative;
    overflow: hidden; /* Keeps the zoomed image contained */
    background-color: #ffffff; /* Fallback background */
}

.portfolio-item img {
    width: 100%;
    height: auto; /* Fixed height so all screenshots align perfectly */
    object-fit: cover; /* Ensures images fill the space without stretching */
    object-position: top center; /* Focuses on the top part of the website screenshot */
    transition: transform 0.4s ease;
    border: 1px solid #e0e0e0; /* Very subtle border to separate white images */
}

/* Subtle hover effect */
.portfolio-item:hover img {
    transform: scale(1.05);
    z-index: 10;
}

/* Optional label that shows underneath (visible under the first image in your screenshot) */
.portfolio-label {
    text-align: center;
    padding: 15px 10px;
    font-weight: 600;
    color: #333;
    font-size: 1.1rem;
    background: #fff;
}
/* recent work end */

/* footer */
.site-footer {
    background-color: #031024; /* Deep dark blue */
    color: #e0e6ed; /* Soft white/gray for readability */
    padding: 70px 0 40px;
    font-family: sans-serif;
}

/* Left column description text */
.footer-about-text {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 1.5rem;
    color: #b0c4de; /* Slightly muted text */
}

/* Footer Logo */
.footer-logo {
    max-width: 120px; /* Adjust based on your actual logo size */
    margin-bottom: 1rem;
}

/* Footer Headings */
.footer-heading {
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

/* Special case for the "SEO & GEO" heading which looks unbolded in your image */
.footer-heading-light {
    font-weight: 400;
}

/* Footer Lists */
.footer-links {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 1rem;
}

/* Footer Anchors */
.footer-links a {
    color: #b0c4de;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff; /* Turns bright white on hover */
    text-decoration: underline;
}

/* Mobile spacing */
@media (max-width: 991px) {
    .footer-col {
        margin-bottom: 2.5rem;
    }
}
/* footer end */

/****** about us page *****/
.stats-section {
    background-color: #0b1a6a; /* Deep blue matching the image */
    padding: 80px 0;
    color: #ffffff;
    font-family: sans-serif;
}

.stats-title {
    font-weight: 700;
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.stats-subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    color: #e0e6ed;
    margin-bottom: 3rem;
}

/* Individual Stat Cards */
.stat-card {
    background-color: #2b3a82; /* Lighter blue for the card */
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    height: 100%;
    transition:
        transform 0.3s ease,
        background-color 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    background-color: #324294; /* Slightly brighter on hover */
}

/* Icon Styling */
.stat-icon {
    font-size: 2.5rem;
    color: #ffffff;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Text Wrapper inside the card */
.stat-text-wrapper {
    text-align: left;
}

.stat-number {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 2px;
    color: #ffffff;
}

.stat-label {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: #c4cdec; /* Light blueish-grey for secondary text */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .stats-title {
        font-size: 1.8rem;
    }
    .stat-card {
        justify-content: center; /* Centers content on mobile */
    }
}

.about-section {
    padding: 60px 0;
    background-color: #ffffff;
    font-family: sans-serif;
}

/* The green line indicator */
.featured-in-label {
    border-left: 4px solid #7ab800; /* Bright green matching the image */
    padding-left: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    color: #333333;
    margin-bottom: 3rem;
}

/* Main image styling */
.about-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    /* Optional: Add a subtle shadow if you want it to pop slightly */
    /* box-shadow: 0 4px 15px rgba(0,0,0,0.05); */
}

/* Typography */
.about-title {
    font-weight: 700;
    font-size: 2.2rem;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.about-text {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 1.2rem;
}

/* Mobile adjustments */
@media (max-width: 991px) {
    .about-title {
        font-size: 1.8rem;
        margin-top: 2rem; /* Adds space above title when stacked on mobile */
    }
}
.quote-banner {
    background-color: #276ef1; /* Vibrant blue matching your design */
    padding: 90px 0;
    color: #ffffff;
    font-family: sans-serif;
}

/* Main Quote Text */
.quote-text {
    font-size: 1.75rem;
    font-weight: 400;
    line-height: 1.6;
    max-width: 950px;
    margin: 0 auto 2.5rem auto; /* Centers the text block and adds space below */
}

/* Chunky Quote Marks */
.quote-mark {
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 0; /* Keeps the marks from messing up the line height */
    position: relative;
    top: 8px; /* Nudges the quotes down slightly to align with text */
    margin: 0 5px;
}

/* Author/Attribution Text */
.quote-author {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .quote-banner {
        padding: 60px 20px;
    }
    .quote-text {
        font-size: 1.35rem;
    }
}
.principles-section {
    padding: 80px 0;
    background-color: #ffffff;
    font-family: sans-serif;
}

/* Heading Styling */
.principles-title {
    font-weight: 700;
    font-size: 2.2rem;
    color: #1a1a1a;
    margin-bottom: 2rem;
}

/* Custom List Styling */
.principles-list {
    list-style: none; /* Removes default bullets */
    padding-left: 0;
    margin: 0;
}

.principles-list-item {
    display: flex;
    align-items: flex-start; /* Aligns icon with the top line of text */
    margin-bottom: 1.25rem;
}

/* Green Checkmark Icon */
.principles-icon {
    color: #7ab800; /* Bright green matching your design */
    font-size: 1.3rem;
    margin-right: 15px;
    line-height: 1;
    margin-top: 2px; /* Slight nudge to align perfectly with text */
}

.principles-text {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #6c757d; /* Muted gray text */
    margin: 0;
}

/* Image Styling */
.principles-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
}

/* Mobile adjustments */
@media (max-width: 991px) {
    .principles-title {
        font-size: 1.8rem;
    }
    .principles-image-col {
        margin-top: 3rem; /* Adds space above the image when stacked on mobile */
    }
}

.values-section {
    min-height: 100vh;
    background-color: #2563eb;
    padding: 5rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Header */
.header {
    text-align: center;
    max-width: 48rem;
    margin-bottom: 3rem;
}

.header h2 {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}

.header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
}

/* Cards Container */
.cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    max-width: 72rem;
    margin-bottom: 2rem;
}

/* Individual Cards */
.value-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border: none;
    border-radius: 0.75rem;
    padding: 1.5rem;
    min-width: 160px;
    max-width: 200px;
    flex: 1;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.value-card svg {
    color: #3b82f6;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.value-card span {
    color: #111827;
    font-weight: 600;
    text-align: center;
    line-height: 1.25;
}

/* Hover & Active States */
.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.value-card.active {
    box-shadow:
        0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 0 0 4px #93c5fd;
    transform: scale(1.05);
    z-index: 10;
}

.value-card.active svg {
    color: #2563eb;
}

/* Detail Panel */
.detail-panel {
    background-color: #ffffff;
    width: 100%;
    max-width: 72rem;
    border-radius: 1rem;
    padding: 2rem 2.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: all 0.5s ease-in-out;
}

.detail-panel h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.detail-panel p {
    color: #4b5563;
    font-size: 1.125rem;
    line-height: 1.625;
}

/* Responsive tweaks */
@media (min-width: 768px) {
    .header h2 {
        font-size: 3rem;
    }
    .header p {
        font-size: 1.25rem;
    }
    .detail-panel h3 {
        font-size: 1.875rem;
    }
    .detail-panel p {
        font-size: 1.25rem;
    }
}

.team-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: flex;
    align-items: center;
    gap: 3rem;
}

/* Left Content Column */
.content-col {
    flex: 1;
    max-width: 600px;
}

.content-col h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: #000;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.content-col p {
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Testimonial Block */
.testimonial-box {
    background-color: #f8fafc;
    border-left: 4px solid #22c55e; /* Green border */
    padding: 1.5rem;
    border-radius: 0 0.5rem 0.5rem 0;
    margin-bottom: 1.5rem;
    font-style: italic;
    color: #64748b;
    font-size: 1.05rem;
}

/* Author Info */
.author-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.author-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-weight: 500;
    color: #1e293b;
    font-size: 0.95rem;
}

/* CTA Button */
.cta-button {
    background-color: #65a30d; /* Matching the specific green */
    color: #ffffff;
    border: none;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.cta-button:hover {
    background-color: #4d7c0f;
}

/* Right Image Column */
.image-col {
    flex: 1;
    position: relative;
    display: flex;
}

.image-col img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.image-overlay-text {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: #1e3a8a; /* Deep blue */
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
}

/* Responsive Design for Mobile */
@media (max-width: 868px) {
    .team-section {
        flex-direction: column;
    }

    .content-col h2 {
        font-size: 1.875rem;
    }

    .image-overlay-text {
        font-size: 2.5rem;
    }
}

/* contact us */
.contact-section {
    background-color: #0d1b5e; /* Deep dark blue background */
    padding: 5rem 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Header Styles */
.contact-header {
    text-align: center;
    max-width: 900px;
    margin-bottom: 3.5rem;
}

.contact-header h2 {
    color: #ffffff;
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.contact-header p {
    color: #ffffff;
    font-size: 1.125rem;
    line-height: 1.6;
    font-weight: 300;
}

/* Green accent links */
.text-green {
    color: #84cc16; /* Lime green */
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.text-green:hover {
    opacity: 0.8;
}

/* Cards Container */
.contact-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    width: 100%;
    max-width: 1200px;
}

/* Individual Card Styles */
.contact-card {
    background-color: #ffffff;
    border-radius: 0.5rem;
    padding: 2rem 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Icon Container */
.card-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon svg {
    width: 40px;
    height: 40px;
    color: #84cc16;
    stroke-width: 1.5;
}

/* Card Text Information */
.card-info {
    display: flex;
    flex-direction: column;
}

.card-info h3 {
    color: #1e293b; /* Dark slate */
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.card-info p {
    color: #64748b; /* Slate gray */
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Spacing for the middle card text */
.contact-details {
    margin-bottom: 0.25rem;
}
.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

/* Left Side: Form Panel */
.form-panel {
    flex: 2;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 0.5rem;
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.05),
        0 2px 4px -1px rgba(0, 0, 0, 0.03);
    border: 1px solid #f1f5f9;
}

.form-panel h2 {
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 2rem;
    font-weight: 700;
}

/* Form Layout */
.form-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.25rem;
    gap: 1.5rem;
}

.form-label {
    width: 140px;
    flex-shrink: 0;
    padding-top: 0.5rem;
    font-size: 0.95rem;
    color: #334155;
    font-weight: 500;
}

.required {
    color: #ef4444; /* Red asterisk */
}

.form-input-wrapper {
    flex-grow: 1;
}

/* Form Controls */
.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #cbd5e1;
    border-radius: 0.375rem;
    font-size: 0.95rem;
    color: #475569;
    font-family: inherit;
    transition: border-color 0.2s ease;
    background-color: #fff;
}

.form-control::placeholder {
    color: #94a3b8;
}

.form-control:focus {
    outline: none;
    border-color: #84cc16;
    box-shadow: 0 0 0 3px rgba(132, 204, 22, 0.1);
}

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

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23475569'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
    padding-right: 2.5rem;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    background-color: #78c800; /* Bright green */
    color: white;
    border: none;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 0.375rem;
    cursor: pointer;
    margin-top: 1rem;
    transition: background-color 0.2s ease;
}

.submit-btn:hover {
    background-color: #65a30d;
}

/* Right Side: Sidebar Cards */
.sidebar-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background-color: #ffffff;
    padding: 1.75rem;
    border-radius: 0.5rem;
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.05),
        0 2px 4px -1px rgba(0, 0, 0, 0.03);
    border: 1px solid #f1f5f9;
}

.info-card h3 {
    color: #78c800; /* Bright green */
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.info-card p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
}

.info-link {
    color: #78c800;
    text-decoration: none;
    transition: opacity 0.2s;
}

.info-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 900px) {
    .contact-container {
        flex-direction: column;
    }

    .form-panel,
    .sidebar-panel {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .form-group {
        flex-direction: column;
        gap: 0.25rem;
    }

    .form-label {
        width: 100%;
        padding-top: 0;
    }
}

/* Container for the map */
.map-container {
    position: relative;
    width: 100%;
    height: 70vh; /* Full screen height */
    background-color: #e5e3df; /* Fallback map background color */
}

/* The actual Google Maps iframe */
.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Floating Info Card (Top Left) */
.map-info-card {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #ffffff;
    width: 340px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    padding: 16px;
    z-index: 5; /* Ensure it stays above the map */
}

/* Card Header Area */
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 4px;
}

.card-title {
    font-size: 1.125rem;
    font-weight: 500;
    color: #202124;
    margin: 0;
}

/* Action Icons (Directions & Share) */
.action-icons {
    display: flex;
    gap: 12px;
}

.icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #1a73e8; /* Google Blue */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    padding: 2px;
    border-radius: 50%;
    transition: background-color 0.2s;
}

.icon-btn:hover {
    background-color: #f1f3f4;
}

/* Address and Meta Details */
.card-address {
    font-size: 0.875rem;
    color: #70757a;
    line-height: 1.4;
    margin-bottom: 12px;
    padding-right: 20px;
}

.card-meta {
    font-size: 0.875rem;
    color: #70757a;
}

/* Responsive adjustment for small screens */
@media (max-width: 400px) {
    .map-info-card {
        width: calc(100% - 20px);
    }
}

/* privacy policy */
.privacy-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 3rem 4rem;
    border-radius: 0.75rem;
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.05),
        0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

/* Header */
.privacy-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 3rem 4rem;
    border-radius: 0.75rem;
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.05),
        0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

/* Header */
.privacy-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.privacy-header h1 {
    font-size: 2.5rem;
    color: #0f172a;
    font-weight: 800;
    letter-spacing: -0.025em;
    margin-bottom: 0.5rem;
}

.privacy-header p {
    color: #64748b;
    font-size: 0.95rem;
}

/* Content Typography */
.privacy-content h2 {
    font-size: 1.5rem;
    color: #1e293b;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.privacy-content p {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
}

.privacy-content ul {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
}

.privacy-content li {
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.privacy-content a {
    color: #2563eb; /* Professional Blue */
    text-decoration: none;
    font-weight: 500;
}

.privacy-content a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 640px) {
    .privacy-container {
        padding: 2rem 1.5rem;
    }

    .privacy-header h1 {
        font-size: 2rem;
    }
}

/* terms and conditions */
/* Container */
.policy-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 3rem 4rem;
    border-radius: 0.75rem;
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.05),
        0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

/* Header */
.policy-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.policy-header h1 {
    font-size: 2.5rem;
    color: #0f172a;
    font-weight: 800;
    letter-spacing: -0.025em;
    margin-bottom: 0.5rem;
}

.policy-header p {
    color: #64748b;
    font-size: 0.95rem;
}

/* Content Typography */
.policy-content h2 {
    font-size: 1.5rem;
    color: #1e293b;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.policy-content p {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
}

.policy-content ul {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
}

.policy-content li {
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.policy-content a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

.policy-content a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 640px) {
    .policy-container {
        padding: 2rem 1.5rem;
    }

    .policy-header h1 {
        font-size: 2rem;
    }
}

/* hire developer */
/* Hero Banner Container */
.hero-banner {
    position: relative;
    width: 100%;
    height: 70vh; /* Takes up 70% of the screen height */
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* Background Image from Unsplash */
    background-image: url("https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80");
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Creates a subtle parallax effect */
}

/* Dark Overlay to make text readable */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(7 8 10 / 85%); /* Deep slate with 85% opacity */
    z-index: 1;
}

/* Content Wrapper */
.hero-content {
    position: relative;
    z-index: 2; /* Sits above the overlay */
    max-width: 900px;
    padding: 0 2rem;
}

/* Typography */
.hero-title-name {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    color: #e2e8f0;
    font-size: 1.25rem;
    line-height: 1.6;
    font-weight: 400;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Button */
.hero-btn {
    display: inline-block;
    background-color: #7ecc00; /* Signature green */
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 700;
    text-decoration: none;
    padding: 1.25rem 2.5rem;
    border-radius: 0.375rem;
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.2),
        0 2px 4px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.hero-btn:hover {
    background-color: #69aa00;
    transform: translateY(-3px);
    box-shadow:
        0 10px 15px -3px rgba(0, 0, 0, 0.3),
        0 4px 6px -2px rgba(0, 0, 0, 0.15);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-banner {
        height: 60vh;
    }
    .hero-title-name {
        color: #ffffff;
        font-size: 1.5rem;
        font-weight: 500;
        line-height: 1.15;
        margin-bottom: 1.5rem;
        letter-spacing: -0.025em;
        text-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
        position: relative;
        z-index: 1;
    }
    .hero-btn {
        font-weight: 500;
        padding: 1rem;
        font-size: 16px;
    }
    .btn-green {
        padding: 10px !important;
    }
}

/* remote work */
/* Featured In Section */
.featured-section {
    background-color: #ffffff;
    padding: 1.5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.featured-label {
    font-size: 1.125rem;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* The green vertical line */
.featured-label::before {
    content: "";
    display: block;
    width: 4px;
    height: 24px;
    background-color: #65a30d; /* Brand Green */
}

/* Remote Work Process Section */
.process-section {
    background-color: #f4f5f6; /* Light gray background */
    padding: 5rem 2rem;
    text-align: center;
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
}

.process-section h2 {
    font-size: 2.25rem;
    color: #1a1a1a;
    margin-bottom: 4rem;
    font-weight: 700;
}

/* Grid for the 3 steps */
.process-grid {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    align-items: flex-start;
}

.process-step {
    flex: 1;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    position: relative;
}

.process-step::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 10%;
    height: 4px;
    background-color: #1e3a8a; /* Dark Blue */
}
.process-step::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 10%;
    height: 4px;
    background-color: #1e3a8a; /* Dark Blue */
}

.process-step:hover::before,
.process-step:hover::after {
    width: 100%;
    transition: all 0.9s ease-in-out;
}

/* Icon Styling */
.step-icon {
    color: #1e3a8a; /* Dark Blue */
    margin-bottom: 1.5rem;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon svg {
    width: 64px;
    height: 64px;
    stroke-width: 1.5;
}

/* Typography for Steps */
.process-step h3 {
    font-size: 1.25rem;
    color: #111827;
    margin-bottom: 1rem;
    font-weight: 700;
}

.process-step p {
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive Design for Mobile */
@media (max-width: 868px) {
    .process-grid {
        flex-direction: column;
        gap: 4rem;
    }

    .process-section h2 {
        font-size: 1.875rem;
        margin-bottom: 3rem;
    }

    .process-step {
        max-width: 400px;
        margin: 0 auto;
    }
}
/* why here */
/* Section Layout */
.hire-section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hire-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

/* Left Column: Text Content */
.hire-content {
    flex: 1;
    max-width: 600px;
}

.hire-content h2 {
    font-size: 2.25rem;
    color: #1a1a1a;
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

/* Text Blocks (Businesses & Agencies) */
.text-block {
    margin-bottom: 2rem;
}

.text-block:last-child {
    margin-bottom: 0;
}

.text-block h3 {
    font-size: 1.35rem;
    color: #2d3748; /* Dark slate */
    font-weight: 600;
    margin-bottom: 0.875rem;
}

.text-block p {
    color: #4a5568; /* Medium gray */
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Right Column: Image */
.hire-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hire-image img {
    width: 100%;
    max-width: 550px;
    height: auto;
    display: block;
}

/* Responsive Design for Mobile and Tablets */
@media (max-width: 968px) {
    .hire-container {
        flex-direction: column;
        gap: 3rem;
    }

    .hire-content h2 {
        font-size: 2rem;
        text-align: center;
    }

    /* Optional: center text on mobile if preferred */
    .hire-content {
        max-width: 100%;
    }

    .hire-image {
        order: -1; /* Moves the image above the text on mobile screens */
    }
}

/* how does */
/* Main Container */
.save-time-container {
    background-color: #1e3a8a; /* Deep dark blue */
    border-radius: 0.75rem;
    padding: 3.5rem;
    max-width: 1200px;
    margin: 0 auto;
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Top Section (Text & Checklist) */
.top-content {
    display: flex;
    gap: 4rem;
    margin-bottom: 3rem;
}

/* Left Column */
.intro-column {
    flex: 0 0 32%; /* Takes up roughly a third of the space */
}

.intro-column h2 {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

.intro-column p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #e2e8f0;
    margin-bottom: 2rem;
}

.btn-green {
    display: inline-block;
    background-color: #7ecc00; /* Bright Green */
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    padding: 0.875rem 1.5rem;
    border-radius: 0.375rem;
    transition: background-color 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-green:hover {
    background-color: #69aa00;
}

/* Right Column (Checklist) */
.benefits-column {
    flex: 1;
}

.benefits-column h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem 2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
    line-height: 1.4;
    color: #e2e8f0;
}

.check-icon {
    color: #7ecc00;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 2px;
}

/* Bottom Section (Testimonial Card) */
.testimonial-card {
    background-color: #ffffff;
    border-radius: 0.5rem;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    position: relative;
}

/* Card Content (Left side) */
.card-content {
    flex: 1;
    padding-left: 1rem;
}

.company-logo {
    height: 24px;
    margin-bottom: 1rem;
}

.card-quote {
    font-size: 1.25rem;
    color: #1a202c;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.card-author {
    font-size: 0.9rem;
    color: #4a5568;
}

.card-author strong {
    color: #2d3748;
}

/* Card Media (Right side with Video Button) */
.card-media {
    position: relative;
    width: 280px;
    height: 180px;
    flex-shrink: 0;
    border-radius: 0.25rem;
    overflow: hidden;
}

.card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.watch-btn {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #7ecc00;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

/* Pagination Dots */
.pagination {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #cbd5e1;
}

.dot.active {
    background-color: #7ecc00;
    width: 24px;
    border-radius: 4px;
}

/* Mobile Responsiveness */
@media (max-width: 968px) {
    .top-content {
        flex-direction: column;
        gap: 3rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr; /* Stack checklist on smaller screens */
    }

    .testimonial-card {
        flex-direction: column;
        padding-bottom: 3.5rem; /* Make room for pagination */
    }

    .card-media {
        width: 100%;
        height: 250px;
    }

    .pagination {
        bottom: 1rem;
    }
}

/* Section Container */
.tech-section {
    padding: 5rem 2rem;
    text-align: center;
    background-color: #f9fafb; /* Light gray background */

    margin: 0 auto;
}

/* Header Typography */
.tech-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #111827; /* Deep Navy/Slate */
    margin-bottom: 0.75rem;
    letter-spacing: -0.025em;
}

.tech-section p {
    font-size: 1.25rem;
    color: #7ed321; /* Bright Green */
    font-weight: 500;
    margin-bottom: 3.5rem;
}

/* Grid Layout */
.tech-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
    max-width: 950px;
    margin: 0 auto;
}

/* Individual Tech Pill */
.tech-pill {
    background-color: #ffffff;
    border: 1px solid #7ed321;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1.5rem;
    border-radius: 50px; /* Makes it a pill shape */
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.05),
        0 2px 4px -1px rgba(0, 0, 0, 0.03);
    font-weight: 600;
    color: #374151;
    font-size: 1rem;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
    cursor: pointer;
}

.tech-pill:hover {
    transform: translateY(-3px);
    box-shadow:
        0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Icon Sizing */
.tech-pill img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* Specific adjustment for the custom SVG target icon */
.tech-pill svg {
    width: 24px;
    height: 24px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .tech-section h2 {
        font-size: 2rem;
    }

    .tech-section p {
        font-size: 1.1rem;
    }

    .tech-pill {
        padding: 0.5rem 1.25rem;
        font-size: 0.95rem;
    }
}

/* Section Container */
.features-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 6rem; /* Space between the two main rows */
}

/* Individual Row Layout */
.feature-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

/* Reverse the layout for every even row (the 2nd one) */
.feature-row:nth-child(even) {
    flex-direction: row-reverse;
}

/* Text Content Column */
.feature-text {
    flex: 1;
    max-width: 550px;
}

/* Green Subtitle / Eyebrow Text */
.feature-subtitle {
    display: inline-block;
    color: #65a30d; /* Brand Green */
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

/* Main Heading */
.feature-text h2 {
    font-size: 2.5rem;
    color: #1e293b; /* Dark Slate */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

/* Paragraph Text */
.feature-text p {
    font-size: 1.05rem;
    color: #475569; /* Medium Gray */
    line-height: 1.6;
}

/* Image Column */
.feature-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
}

/* Responsive Design for Mobile & Tablets */
@media (max-width: 968px) {
    .features-section {
        gap: 5rem;
        padding: 4rem 1.5rem;
    }

    /* Stack columns vertically on small screens */
    .feature-row,
    .feature-row:nth-child(even) {
        flex-direction: column-reverse; /* Puts image above text on mobile */
        text-align: center;
        gap: 2.5rem;
    }

    .feature-text h2 {
        font-size: 2rem;
    }

    .feature-text {
        max-width: 100%;
    }
}

/* call */
/* Banner Container */
.cta-banner {
    background-color: #2563eb; /* Vibrant Blue */
    border-radius: 15px;
    padding: 1.5rem 4rem;
    width: 100%;
    max-width: 900px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    color: #ffffff;
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.2);
    margin: 0 auto;
}

/* Left Section: Icon & Text */
.cta-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.icon-phone {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    fill: #65a30d;
}

.cta-text {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.2;
    max-width: 600px;
    letter-spacing: -0.02em;
}

/* Right Section: Headset & Button */
.cta-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    flex-shrink: 0;
}

.icon-headset {
    width: 40px;
    height: 40px;
    fill: none;
    stroke: #65a30d;

    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cta-btn {
    background-color: #ffffff;
    color: #0f172a;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    padding: 0.875rem 2.5rem;
    border-radius: 0.375rem;
    transition: all 0.2s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.cta-btn:hover {
    background-color: #f1f5f9;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px -1px rgba(0, 0, 0, 0.15);
}

/* Responsive Design */
@media (max-width: 868px) {
    .cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 2.5rem 2rem;
        gap: 2.5rem;
    }

    .cta-left {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-text {
        font-size: 1.75rem;
    }
}

/* accordion */
.service-section {
    padding: 80px 0;
    background: #f5f5f5;
}

.service-image img {
    width: 100%;
    border-radius: 6px;
}

.accordion-item {
    border: none;
    margin-bottom: 10px;
}

.accordion-button {
    background: #fff;
    font-weight: 600;

    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.accordion-button:not(.collapsed) {
    color: #000;
    background: #fff;
}

.accordion-body {
    color: #666;
    font-size: 15px;
}

.accordion-button::after {
    transform: scale(0.8);
}
/* price */
.pricing-section {
    padding: 80px 0;
    background: #f2f2f2;
}

.section-title {
    text-align: center;
    font-weight: 700;
    margin-bottom: 40px;
}

.price-card {
    padding: 40px 30px;
    color: #fff;
    height: 100%;
}

.price-card h3 {
    font-weight: 700;
    margin-bottom: 20px;
}

.price {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.feature-list li {
    margin-bottom: 15px;
}

.feature-list li i {
    margin-right: 10px;
    color: #fff;
}

.btn-green {
    background: #7ed321;
    border: none;
    color: #fff;
    font-weight: 600;
    padding: 12px;
    width: 100%;
    border-radius: 6px;
}

.btn-green:hover {
    background: #6bc01b;
    color: #fff;
}

.card1 {
    background: #2d66c3;
}

.card2 {
    background: #1649a5;
}

.card3 {
    background: #0f2f66;
}

.currency-box {
    position: absolute;
    right: 80px;
    top: 90px;
}
/* =========================================
       SECTION 2: PRICING TABLE
       ========================================= */
.pricing-section {
    margin: 4rem auto;
    padding: 2rem 2rem;
}

.pricing-header-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-bottom: 2rem;
}

.pricing-header-wrap h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #000;
    text-align: center;
}

.currency-select {
    position: absolute;
    right: 0;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    border: 1px solid #10b981;
    border-radius: 4px;
    background: #fff;
    color: #333;
    outline: none;
    cursor: pointer;
}

.pricing-grid {
    display: flex;
    width: 100%;
    /* Removing gap to make columns touch exactly like the design */
}

.pricing-card {
    flex: 1;
    padding: 2.5rem 2rem;
    color: #fff;
    display: flex;
    flex-direction: column;
}

/* The three blue shades */
.card-light {
    background-color: #2f3f62;
} /* Light Blue */
.card-medium {
    background-color: #151b2c;
} /* Medium Blue */
.card-dark {
    background-color: #020712;
} /* Dark Blue */

.pricing-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1.5rem;
}

.price {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.price-subtext {
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.green-link {
    display: block;
    text-align: center;
    color: #7ecc00;
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.green-link:hover {
    text-decoration: underline;
}

.features-list {
    list-style: none;
    margin-top: 1.5rem;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
    line-height: 1.4;
}

.check-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.btn-pricing {
    width: 100%;
    background-color: #fff;
    color: #fff;
    border: none;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
    color: #1e293b;
}

.btn-pricing:hover {
    background-color: #5f6dfc;
    color: #fff;
}

/* Responsive Design */
@media (max-width: 968px) {
    /* Stack Services */
    .services-container {
        flex-direction: column;
    }
    .services-image {
        width: 100%;
    }

    /* Stack Pricing */
    .pricing-header-wrap {
        flex-direction: column;
        gap: 1.5rem;
    }
    .currency-select {
        position: static;
    }
    .pricing-grid {
        flex-direction: column;
    }
}
/* compare */
/* Section Container */
.compare-section {
    max-width: 1100px;
    margin: 0 auto;
}

/* Header Styles */
.compare-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.compare-header h2 {
    font-size: 2.25rem;
    color: #1e293b; /* Dark Slate */
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.compare-header p {
    color: #7ecc00; /* Signature Green */
    font-size: 1.125rem;
    font-weight: 500;
}

/* Table Responsive Wrapper */
.table-responsive {
    width: 100%;
    overflow-x: auto; /* Allows horizontal scrolling on small screens */
    -webkit-overflow-scrolling: touch;
    border-radius: 0.5rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

/* Table Styles */
.compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px; /* Ensures it doesn't squish too much on mobile */
    background-color: #ffffff;
}

/* Header Row Colors */
.compare-table th {
    padding: 1.25rem 1rem;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
    border-right: 1px solid #e2e8f0;
    color: #ffffff;
}

.compare-table th:first-child {
    background-color: #f8fafc; /* Empty top-left cell */
    border-right: 1px solid #e2e8f0;
}

.compare-table th.col-fixed {
    background-color: #2f3f62;
} /* Light Blue */
.compare-table th.col-resource {
    background-color: #151b2c;
} /* Medium Blue */
.compare-table th.col-team {
    background-color: #020712;
    border-right: none;
} /* Dark Blue */

/* Sub-header Row (e.g., Talent Access) */
.section-row td {
    background-color: #f1f5f9;
    font-weight: 600;
    color: #1e293b;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    text-align: left;
}

/* Standard Table Rows */
.compare-table td {
    padding: 7px;
    border-bottom: 1px solid #e2e8f0;
    border-right: 1px solid #e2e8f0;
    color: #475569;
    font-size: 0.95rem;
    text-align: center;
    vertical-align: middle;
    line-height: 1.5;
}

.compare-table td:first-child {
    text-align: left;
    font-weight: 500;
    color: #334155;
}

.compare-table td:last-child {
    border-right: none;
}

.compare-table tr:last-child td {
    border-bottom: none;
}

/* Icons and Empty States */
.icon-check {
    width: 20px;
    height: 20px;
    color: #111827; /* Dark almost black */
    display: inline-block;
    stroke-width: 2.5;
}

.empty-dash {
    color: #cbd5e1;
    font-weight: bold;
}
/* faq */

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='white' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* 404 */
.error-container h1 {
    font-size: 120px;
    font-weight: 800;
    color: #0d6efd;
}

.error-container h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.error-container p {
    color: #6c757d;
    margin-bottom: 30px;
}

.btn-home {
    background: #0d6efd;
    color: white;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
}

.btn-home:hover {
    background: #084298;
    color: white;
}

.error-img {
    max-width: 250px;
    margin-bottom: 20px;
}
.error-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}
/* downfooter */
.downfooter {
    border-top: 1px solid #e1e1e1;
    background: #031024;
    color: #ccc;
    text-align: center;
    padding: 20px 10px;
    font-size: 14px;
}

.downfooter strong {
    color: #fff;
}

.downfooter span {
    color: #0d6efd;
    font-weight: 500;
}

.downfooter p {
    margin: 5px 0;
}
/* scroll to top */
#scrollTopBtn {
    width: 50px;
    height: 50px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #5f6dfc;
    color: white;
    border: none;
    padding: 12px 16px;
    font-size: 18px;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
    z-index: 999;
}

#scrollTopBtn:hover {
    background: #084298;
}

/* get in touch */
.contact-section {
    background: #0d2f5b;
    padding: 80px 20px;
    color: #fff;
}

.container {
    max-width: 1200px;
    margin: auto;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding: 12px 0;
    margin-bottom: 20px;
    color: #6b7574;
    font-size: 15px;
}

.contact-form textarea {
    height: 80px;
}

.contact-form button {
    background: #7bd100;
    border: none;
    padding: 15px;
    width: 100%;
    font-size: 16px;
    color: #fff;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
}

.contact-right h3 {
    margin-bottom: 20px;
}

.video-box iframe {
    width: 100%;
    height: 200px;
    margin-bottom: 40px;
}

.awards {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.awards img {
    width: 100px;
    background: #fff;
    padding: 10px;
    border-radius: 6px;
}

.contact-right h4 {
    margin-bottom: 20px;
}

/* HERO */

.portfolio-hero {
    background: #0d2f5b;
    color: white;
    padding: 100px 20px;
}

.portfolio-hero h1 {
    font-size: 48px;
    font-weight: 700;
}

/* FILTER */

.portfolio-filter {
    background: #f5f7fb;
    padding: 40px 0;
}

.filter-btn {
    border: none;
    background: #e9ecef;
    padding: 10px 22px;
    margin: 5px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
    background: #0d6efd;
    color: white;
}

/* GRID */

.portfolio-section {
    padding: 80px 0;
}

/* CARD */

.portfolio-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.portfolio-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: 0.4s;
}

/* OVERLAY */

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.85);
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: 0.4s;
}

.portfolio-card:hover img {
    transform: scale(1.1);
}

.portfolio-card:hover .portfolio-overlay {
    transform: translateY(0);
}

/* BUTTON */

.portfolio-btn {
    display: inline-block;
    background: #0d6efd;
    padding: 8px 18px;
    border-radius: 20px;
    color: white;
    text-decoration: none;
    font-size: 14px;
    margin-top: 10px;
}

.process-section {
    padding: 90px 0;
    background: linear-gradient(135deg, #3150af, #2b55d4);
}

.section-title {
    font-size: 36px;
    font-weight: 700;
}

.process-box {
    background: white;
    padding: 30px;
    border-radius: 10px;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.process-box i {
    font-size: 40px;
    color: #0d6efd;
    margin-bottom: 15px;
}

.process-box:hover {
    transform: translateY(-8px);
}

.portfolio-cta {
    padding: 100px 20px;
    background: #0d6efd;
    color: white;
}

.cta-btn {
    background: white;
    color: #65a30d;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid #65a30d;
}

/* RESPONSIVE */
.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    color: #fff !important;
}

/* =========================================
   SERVICE PAGES — Shared Styles
   ========================================= */

/* Service Intro Section */
.service-intro-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.service-intro-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.service-badge {
    display: inline-block;
    background: linear-gradient(135deg, #6a5cff, #2563eb);
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 18px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.service-intro-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.service-intro-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 1rem;
}

@media (max-width: 991px) {
    .service-intro-section .col-lg-6:last-child {
        margin-top: 2.5rem;
    }
    .service-intro-title {
        font-size: 1.8rem;
    }
}

/* Service Offer Section */
.service-offer-section {
    padding: 80px 0;
    background-color: #f8f9fb;
}

.service-offer-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem 1.75rem;
    height: 100%;
    border: 1px solid #e8ecf1;
    transition: all 0.3s ease;
    text-align: center;
}

.service-offer-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border-color: #2563eb;
}

.service-offer-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, #eef2ff, #dbeafe);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.service-offer-icon i {
    font-size: 1.75rem;
    color: #2563eb;
}

.service-offer-card h5 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.service-offer-card p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Service Tech Section */
.service-tech-section {
    padding: 80px 0;
    background-color: #ffffff;
}

/* Service Process Section (reuses existing process-box styles) */
.service-process-section {
    padding: 80px 0;
    background-color: #f8f9fb;
}

/* ===== Enquiry Modal Styles ===== */
#enquiryModal .modal-dialog {
    max-height: 95vh;
    margin: 1rem auto;
}

.enquiry-modal-content {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    background: #041d3d;
    color: #fff;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.enquiry-modal-header {
    background: linear-gradient(135deg, #0b1a6a 0%, #041d3d 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px 20px;
    flex-shrink: 0;
}

.enquiry-modal-header .modal-title {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 1.15rem;
}

.enquiry-modal-body {
    padding: 16px 20px;
    overflow-y: auto;
}

.enquiry-modal-subtitle {
    color: #7ecc00;
    font-size: 0.85rem;
    margin-bottom: 12px;
    font-weight: 500;
}

.enquiry-modal-body .form-label {
    color: #c9d1d9;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 2px;
}

.enquiry-input {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 0.85rem;
    transition:
        border-color 0.3s,
        box-shadow 0.3s;
}

.enquiry-input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.enquiry-input:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: #7ecc00;
    box-shadow: 0 0 0 3px rgba(126, 204, 0, 0.15);
    color: #fff;
}

.enquiry-submit-btn {
    background: #7ecc00;
    color: #041d3d;
    border: none;
    border-radius: 8px;
    padding: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: 4px;
    transition:
        background 0.3s,
        transform 0.2s;
}

.enquiry-submit-btn:hover {
    background: #65a30d;
    transform: translateY(-1px);
}

.enquiry-submit-btn:disabled {
    opacity: 0.7;
    transform: none;
}

@media (max-width: 576px) {
    #enquiryModal .modal-dialog {
        margin: 0.5rem;
        max-height: 98vh;
    }
    .enquiry-modal-content {
        max-height: 95vh;
    }
    .enquiry-modal-body {
        padding: 12px 14px;
    }
}
/* modern banner */
.modern-banner {
    position: relative;
    height: 520px;
    background: url("images/banner.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: #0d2f5b;
}

.banner-content {
    position: relative;
    max-width: 850px;
    padding: 20px;
}

.banner-content h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
}

.banner-content h1 span {
    color: #7ed321;
}

.banner-content p {
    margin-top: 20px;
    font-size: 18px;
    color: #ddd;
}

.banner-buttons {
    margin-top: 30px;
}

.btn-primary {
    background: #7ed321;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    color: #fff;
    margin-right: 10px;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #69b81c;
    transform: translateY(-3px);
}

.btn-outline {
    border: 2px solid #fff;
    padding: 13px 30px;
    border-radius: 8px;
    text-decoration: none;
    color: #fff;
    transition: 0.3s;
}

.btn-outline:hover {
    background: #fff;
    color: #000;
}
/*mordern design*/
.modern-save-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1f3c88, #2b55d4);
    color: #fff;
}

.save-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: center;
}

.save-left h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
}

.save-left p {
    color: #e4e4e4;
    line-height: 1.7;
}

.save-btn {
    display: inline-block;
    margin-top: 25px;
    background: #7ed321;
    color: #fff;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.save-btn:hover {
    transform: translateY(-3px);
    background: #6bc31a;
}

.save-right h3 {
    margin-bottom: 25px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 18px;
    border-radius: 10px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    transition: 0.3s;
}

.benefit-card i {
    color: #7ed321;
    font-size: 20px;
}

.benefit-card p {
    margin: 0;
    font-size: 15px;
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

/* ============================================
   Checkout Page
   ============================================ */
.checkout-section {
    padding: 80px 0 60px;
    min-height: calc(100vh - 200px);
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
}

.checkout-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.checkout-icon {
    font-size: 48px;
    color: #0c3c84;
    margin-bottom: 10px;
}

.checkout-title {
    font-size: 28px;
    font-weight: 700;
    color: #0c3c84;
    margin-bottom: 5px;
}

.checkout-subtitle {
    color: #666;
    font-size: 15px;
}

.checkout-input {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 14px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.checkout-input:focus {
    border-color: #6a5cff;
    box-shadow: 0 0 0 3px rgba(106, 92, 255, 0.15);
}

.checkout-input.is-invalid {
    border-color: #dc3545;
}

.checkout-pay-btn {
    background: linear-gradient(90deg, #6a5cff, #5f6dfc);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.checkout-pay-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(106, 92, 255, 0.4);
    color: #fff;
}

.checkout-pay-btn:disabled {
    opacity: 0.7;
    transform: none;
    box-shadow: none;
}

@media (max-width: 576px) {
    .checkout-card {
        padding: 24px 20px;
    }
    .checkout-title {
        font-size: 22px;
    }
}
