/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: 'DM Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    font-size: 16px;
}

/* Sticky Header */
.sticky-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #FFFFFF;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

/* Blue button */
.button-classic {
    background: linear-gradient(94.46deg, #009DF5 14.34%, #005B8F 134.94%);
    width: auto;
    height: 48px;
    border-radius: 10px;
    padding: 10px 30px 10px 30px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    line-height: 28px;
    letter-spacing: 0px;
    text-align: center;
    text-transform: uppercase;
    box-shadow: 0px 2px 4px 0px #0000001A;
    color: #FFFFFF;
    border: none;
    text-decoration: none;
}

/* transparecnt button */
.button-transparent {
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    line-height: 28px;
    letter-spacing: 0px;
    text-align: center;
    text-transform: uppercase;
    border: 1px solid rgba(5, 107, 202, 1);
    width: auto;
    height: 48px;
    border-radius: 10px;
    border-width: 1px;
    padding: 10px 16px 10px 16px;
    color: rgba(5, 107, 202, 1);
    background: #FFFFFF;
    text-decoration: none;
}


/* Blue whitw */
.button-white {
    background: rgba(255, 255, 255, 1);
    width: auto;
    height: 48px;
    border-radius: 10px;
    display: inline-block;
    padding: 10px 20px 10px 20px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    line-height: 28px;
    letter-spacing: 0px;
    text-align: center;
    text-transform: uppercase;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
    color: #000000;
    border: none;
    text-decoration: none;
}


/* navbar */
.navbar-brand .logo {
    height: 80px;
    width: 250px;
}

.navbar-nav {
    display: flex;
    gap: 15px;
    align-items: baseline;
}
.input-box{
    height: 44px;
}
.navbar-nav .nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: #333;
    margin: 0 10px;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

/* Dropdown base styling */
.navbar .dropdown-menu {
    background-color: #fff;
    border-radius: 8px;
    border: none;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
    overflow: hidden;
  }
  
  /* Dropdown item styling */
  .navbar .dropdown-item {
    padding: 10px 16px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 110.00000000000001%;
    border-bottom: 1px solid rgba(5, 107, 202, 0.2);
    position: relative;
  }
  
  /* Blue separator line */
  .navbar .dropdown-item:not(:last-child)::after {
    content: "";
    display: block;
    height: 1.5px;
    background-color: #009DF5;
    margin-top: 6px;
    opacity: 0.4; /* slightly subtle */
  }
  
  /* Hover effect */
  .navbar .dropdown-item:hover {
    background-color: #009DF5;
    color: #fff;
  }
  

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


.nav-btn {
    margin-left: 10px;
    padding: 8px 20px;
    border-radius: 25px;
}

/* Hero Section */
.hero-section {
    /* padding: 100px 0 50px; */
    background-image: url('./assets/images/hero-image.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
}

.hero-container {
    background: linear-gradient(135deg, rgba(0, 142, 221, 0.8) 13.36%, rgba(0, 0, 0, 0) 83.06%);

}

.hero-container-body {
    min-height: calc(100vh - 92px);
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 4rem;
    letter-spacing: 0.2px;
}

.hero-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 28px;
    letter-spacing: 0.2px;
    margin-bottom: 2rem;
}

.hero-buttons .btn {
    margin-right: 15px;
    margin-bottom: 10px;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
}

/* presence section */
.presence-section {
    background: linear-gradient(90deg, #E1F4FF 0%, #FFFFFF 51.47%, #E1F4FF 100.38%);
}

.presence-section-body {
    padding: 60px 0px;
}

.presence-content {
    padding-right: 2rem;
}

.presence-title {
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 100%;
}

.presence-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 24px;
}

.presence-title span {
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 100%;
    color: rgba(0, 157, 245, 1);
}

.presence-section-box {
    opacity: 1;
    border-radius: 20px;
    border: 1px solid rgba(0, 157, 245, 0.4);
    background: linear-gradient(180deg, #009DF5 0%, #005B8F 100%);
    padding: 2rem;
}


.presence-item {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 157, 245, 1);
    border-radius: 12px;
    text-align: center;
    color: white;
    padding: 10px;
    min-height: 160px;
    max-height: 160px;
}

.presence-item h1 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.65rem;
    line-height: 40px;
    letter-spacing: 0.2px;
    text-align: center;
}

.presence-item p {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.65rem;
    line-height: 21px;
    letter-spacing: 0.2px;
    text-align: center;
    text-transform: uppercase;

}

/* services section */
.services-section-body {
    padding: 60px 0px 30px 0px;
}

.services-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 24px;
}

.services-card {
    border-radius: 10px;
    border: 1px solid rgba(53, 145, 255, 0.1);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 24.38px 29.25px -4.88px rgba(94, 147, 202, 0.08);
    padding: 6px 10px 0px 20px;
    height: 100%;
}


.servies-section-content-p {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: rgba(33, 39, 42, 0.8);
    text-align: left;
    margin-bottom: 1rem;
    ;
}

.services-section-list {
    text-align: left;
    padding-left: 1.7rem;
    margin-bottom: 20px;
}

.services-section-list li {
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 200%;
    color: rgba(40, 40, 40, 1);
}

.services-icon {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    text-align: left;
}

.services-text-with-icon {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.25rem;
    margin: 0;
    color: rgba(0, 157, 245, 1);
}

/* clinet sectiion */
.clients-section {
    /* min-height: calc(100vh - 92px); */
    background: linear-gradient(90deg, #E1F4FF 0%, #FFFFFF 51.47%, #E1F4FF 100.38%);
}

.clients-section-container{
    min-height: calc(100vh - 200px);
}

.client-tab-btn {
    background: linear-gradient(91.44deg, #009DF5 7.48%, #005B8F 123.05%);
    /* background: linear-gradient(91.44deg, #009DF5 7.48%, #005B8F 123.05%); */
    border: 1px solid rgba(0, 157, 245, 0.4);
    box-shadow: 0px 24.38px 35.5px -4.88px rgba(94, 147, 202, 0.4);
    border-radius: 4px;
    padding: 7px 10px 10px 5px;
    display: flex;
    justify-content: center;
    opacity: 0.3;
}


button.active {
    background: linear-gradient(91.44deg, #009DF5 7.48%, #005B8F 123.05%) !important;
    opacity: 1 !important;
    border: 1px solid rgba(0, 157, 245, 0.4);
    box-shadow: 0px 24.38px 35.5px -4.88px rgba(94, 147, 202, 0.4);
    border-radius: 4px;
    padding: 7px 10px 10px 5px;
    display: flex;
    justify-content: center;

}

.client-tab-btn h4 {
    font-weight: 500;
    font-size: 22px;
    line-height: 150%;
    text-align: center;
    margin: 0;
    color: #FFFFFF;
}

.nav-pills a {
    text-decoration: none;
}

.tab-content-wrapper {
    display: flex;
    gap: 10px;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    /* 10 equal columns */
    gap: 10px;
    margin: 30px 0;
}

.grid-box {
    background: #FFFFFF;
    color: white;
    border: 0.22px solid rgba(202, 214, 241, 1);
    box-shadow: 0px 11.19px 22.37px 0px rgba(22, 25, 79, 0.05);
    border-radius: 9px;
    text-align: center;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.grid-box img {
    height: 100%;
    width: 84px;
    object-fit: contain;
}

.us-sector-icons img {
    height: 60px;
    width: 70px;
}


/* discoer Section */
.discover-section {
    /* padding: 100px 0 50px; */
    background-image: url('./assets/images/e9acfaaa9ec880c59fd7522d43ec3c018954ed9c.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
}

.discover-container {
    background: linear-gradient(90deg, #005B8F 0%, #009DF5 100%);
    opacity: 0.9;
    padding: 70px;

}

.discover-container-body {
    min-height: calc(100vh - 700px);
}

.discover-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 100%;
    letter-spacing: 0.2px;
}

.discover-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    line-height: 28px;
    letter-spacing: 0.2px;
    margin-bottom: 2rem;
}


/* industries */
.industries-section-body {
    padding-top: 60px;
}

.industries-grid-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    /* 10 equal columns */
    gap: 10px;
    margin: 30px 0 80px 0;
}

.industries-grid-box {
    background: #FFFFFF;
    color: white;
    border: 1px solid rgba(53, 145, 255, 0.1);
    box-shadow: 0px 9.75px 9.75px -4.88px rgba(94, 147, 202, 0.03);
    border-radius: 10px;
    text-align: center;
    min-height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.industries-icon {
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.industries-icon img {
    height: 50px;
    width: 50px;
    margin-bottom: 15px;
}

.industries-text-with-icon {
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 150%;
    text-align: center;
    color: rgb(0, 0, 0);
}

/* testimonials sectiion */
.testimonials-section {
    min-height: calc(100vh - 400px);
    background: linear-gradient(90deg, #E1F4FF 0%, #FFFFFF 51.47%, #E1F4FF 100.38%);
}

.testimonial-title {
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 35px;
    line-height: 130%;
    text-align: center;
    vertical-align: middle;
    text-transform: capitalize;
    color: rgba(0, 157, 245, 1);
}

.testimonials-section-body {
    padding: 60px 0 10px 0;
}


.caraousel-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
    overflow: hidden;
}

.carousel-inner {
    padding: 1em;
}

.card-body {
    padding: 20px;
}

.card-text {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 150%;
    min-height: 115px;

}

.card-title {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    margin: 0;

}

.card-subtext {
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 150%;

}

.carousel-control-prev,
.carousel-control-next {
    width: 45px !important;
    height: 45px !important;
    opacity: 1;
    border-radius: 10px !important;
    background: linear-gradient(180deg, #009DF5 0%, #005B8F 100%);

}

.carousel-control-prev-icon {
    background-image: url('./assets/icons/Vector\ \(1\).png');
    width: 16px;
    height: 14px;
}

.carousel-control-next-icon {
    background-image: url('./assets/icons/Vector\ \(10\).png');
    width: 16px;
    height: 14px;
}

.carousel-indicators-line {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.carousel-indicators-line .indicator {
    width: 40px;
    height: 4px;
    background-color: #d0d0d0;
    border-radius: 2px;
    transition: background-color 0.3s, width 0.3s;
}

.carousel-indicators-line .indicator.active {
    background-color: #007BFF;
    /* blue */
    width: 60px;
}
img.footerLogo{width:auto; height:auto;}

@media screen and (min-width: 576px) {
    .carousel-inner {
        display: flex;
        width: 90%;
        margin-inline: auto;
        padding: 1em 0;
        overflow: hidden;
    }

    .carousel-item {
        display: block;
        margin-right: 0;
        flex: 0 0 calc(100% / 2);
    }
}

@media screen and (min-width: 768px) {
    .carousel-item {
        display: block;
        margin-right: 0;
        flex: 0 0 calc(100% / 3);
    }
}

.carousel .card {
    margin: 0 0.5em;
    border: 0;
    min-height: 270px;
    border: 1px solid rgba(0, 157, 245, 0.1);
    box-shadow: 0px 24.38px 29.25px -4.88px rgba(94, 147, 202, 0.08);

}

.carousel-control-prev,
.carousel-control-next {
    width: 3rem;
    height: 3rem;
    background-color: grey;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}


/* footer items */
.footer-items {
    background: linear-gradient(90deg, #005B8F 0%, #009DF5 100%);
    min-height: calc(100vh - 600px);
}

.sub-text1 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    color: #FFFFFF;
    margin-bottom: 80px;
    margin-top: 10px;
}

.head-text {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 15px;
    line-height: 150%;
    color: #FFFFFF;
}

.sub-text {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    color: #FFFFFF;
}

.conatct-items {
    margin-top: 25px;
}

.conatct-items ul {
    list-style: none;
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    color: #FFFFFF;
}

.conatct-items li {
    margin-bottom: 5px;
}


.text {
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 150%;
    color: #FFFFFF;
}

.socail-icons {
    padding: 0 !important;
}

.conatct-items ul li img {
    margin-right: 5px;
}

/* Footer */
.footer {
    background: #343a40 !important;
}

.footer p {
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 110.00000000000001%;
    text-align: center;
}

.footer-container {
    display: flex;
    /* ensures gap works */
    flex-wrap: wrap;
    /* still responsive */
    justify-content: space-between;
    padding: 30px 200px;
    gap: 30px;
    /* 👈 adds 20px gap between columns */
}

.footer-container>.col-3 {
    flex: 1 1 calc(25% - 30px);
    /* ensures 4 columns fit in one row */
    min-width: 225px;
    /* ensures it’s responsive */
}

.contact-section {
    padding: 50px 150px;
}

.contact-body {
    border: 1px solid rgba(53, 145, 255, 0.15);
    box-shadow: 0 20px 30px rgba(0, 93, 143, 0.08);
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
}

/* left image with slight gradient overlay and rounded left edges */
.conatct-images {
    position: relative;
}

.conatct-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.conatct-images:after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 157, 245, 0.35) 0%, rgba(0, 157, 245, 0) 70%);
    pointer-events: none;
}

.conatcta-title {
    font-weight: 500;
    font-size: 2rem;
    line-height: 100%;
    color: rgba(0, 157, 245, 1);
}

.conatcta-row {
    padding: 40px;
    text-align: left;
}


.conatcta-title span {
    font-weight: 500;
    font-size: 2rem;
    line-height: 100%;
    color: #000000;
}


.form-control {
    border: 1px solid rgba(0, 157, 245, 0.16)
}

.form-control::placeholder {
    color: rgba(163, 170, 194, 1);

}

/* Contact Form 7 layout/styles */
.cf7-appointment .wpcf7-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.cf7-appointment .wpcf7-form p {
    margin: 0;
}

/* make name and email in first row, phone full width under, message full width */
.cf7-appointment .wpcf7-form p:nth-child(1),
.cf7-appointment .wpcf7-form p:nth-child(2) {
    grid-column: span 1;
}

.cf7-appointment .wpcf7-form p:nth-child(3),
.cf7-appointment .wpcf7-form p:nth-child(4) {
    grid-column: 1 / -1;
}

.cf7-appointment input[type="text"],
.cf7-appointment input[type="email"],
.cf7-appointment input[type="tel"],
.cf7-appointment textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid rgba(0, 157, 245, 0.16);
    border-radius: 8px;
    outline: none;
    font-family: 'DM Sans', sans-serif;
}

.cf7-appointment textarea { min-height: 160px; }

.cf7-appointment input[type="submit"] {
    background: linear-gradient(94.46deg, #009DF5 14.34%, #005B8F 134.94%);
    color: #fff;
    border: none;
    padding: 12px 26px;
    border-radius: 10px;
    text-transform: uppercase;
    font-weight: 600;
    box-shadow: 0 6px 16px rgba(0, 93, 143, 0.25);
}

.cf7-appointment .wpcf7-spinner { display: none; }

/* helper text under form */
.cf7-appointment .required-note {
    grid-column: 1 / -1;
    color: #8b8f9a;
    font-size: 0.9rem;
}

/* responsive adjustments */
@media (max-width: 1200px) {
    .contact-section { padding: 40px 40px; }
}

@media (max-width: 768px) {
    .cf7-appointment .wpcf7-form { grid-template-columns: 1fr; }
    .contact-section { padding: 30px 16px; }
}


/* ✅ Responsive breakpoints */
@media (max-width: 1200px) {
    .grid-container {
        grid-template-columns: repeat(5, 1fr);
        /* 5 per row */
    }
}

@media (max-width: 768px) {

    .grid-container {
        grid-template-columns: repeat(4, 1fr);
        /* 4 per row */
    }

    .industries-grid-container {
        grid-template-columns: repeat(4, 1fr);
    }

    .hero-section {
        /* background-attachment: scroll; */
        padding: 80px 0 30px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 15px;
    }

    .navbar-nav {
        text-align: center;
        padding: 10px 0;
    }

    .nav-btn {
        margin: 10px 0;
        width: 100%;
    }

}

@media (max-width: 576px) {

    .grid-container {
        grid-template-columns: repeat(3, 1fr);
        /* 3 per row */
    }

    .industries-grid-container {
        grid-template-columns: repeat(3, 1fr);
    }

    .grid-box {
        min-height: 80px;
        padding: 20px 10px;
    }

    .industries-grid-box {
        min-height: 80px;
        padding: 20px 10px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-section {
        padding: 80px 0 30px;
    }

}

@media (max-width: 400px) {
    .grid-container {
        grid-template-columns: repeat(2, 1fr);
        /* 2 per row */
    }

    .industries-grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* iPad Specific Styles */
@media (min-width: 768px) and (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
	
    .hero-subtitle {
        font-size: 1.15rem;
    }

    .container {
        max-width: 95%;
    }

    .discover-container {
        padding: 20px;
    }
}

@media (max-width:1024px){
	.navbar-nav{gap:10px;}
}

@media (min-width: 1200px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1320px;
    }

}

@media screen and (max-width: 1440px) {
    .testimonials-section{
        min-height: 100vh;
    }

    .discover-container{
        padding: 70px;
    }
    
    .clients-section-container{
        min-height: 100vh;
    }
}

/* Animation for sticky header scroll */
.sticky-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* --- Mobile-first enhancements (no desktop layout changes) --- */
/* Ensure bootstrap toggler icon is visible on light header */
.navbar-toggler {
    border: 1px solid rgba(0,0,0,0.15);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.15rem rgba(0, 157, 245, 0.25);
}

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

/* Images inside grid boxes scale nicely on small screens */
.grid-box img {
    max-width: 100%;
    height: auto;
}

/* Make hero min-height less aggressive on short mobile viewports */
@media (max-width: 576px) {
    .hero-container-body {
        min-height: auto;
        padding: 60px 0 30px;
    }
}

/* Clients tabs: reduce horizontal padding on small screens */
@media (max-width: 576px) {
    .client-tab-btn {
        padding: 8px 8px;
    }
    .tab-content-wrapper h4 {
        font-size: 18px;
    }
}

/* Footer spacing adjustments for narrow widths */
@media (max-width: 992px) {
    .footer-container {
        padding: 30px 40px;
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .footer-container {
        padding: 24px 16px;
        gap: 16px;
    }
}

/* Contact section: prevent overflow and ensure good spacing */
@media (max-width: 992px) {
    .conatcta-row {
        padding: 24px;
    }
}

@media (max-width: 576px) {
    .conatcta-title {
        font-size: 1.6rem;
    }
    .conatcta-row {
        padding: 20px 14px;
    }
}

/* Grids: keep current desktop counts, but ensure comfortable tap targets on very small screens */
@media (max-width: 400px) {
    .grid-box {
        min-height: 72px;
        padding: 14px 8px;
    }
}

/* Contact Form Error Message Styles */
.error-message {
    color: #ef4444;
    font-size: 14px;
    margin-top: 5px;
    display: none;
    font-weight: 500;
}

.error-message.show {
    display: block;
}

.input-box.error {
    border-color: #ef4444;
    background: #fef2f2;
}

.button-classic:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}
