* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
}

/* ==========================
   Global Typography
========================== */

h1 {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.2;
}

h2 {
    font-size: 35px;
    font-weight: 600;
    line-height: 1.3;
    color:#03163B;
}

h3 {
    font-size: 28px;
    font-weight: 600;
}

p {
    font-size: 16px;
    line-height: 1.8;
}

/* ==========================
   Large Desktop (1400px+)
========================== */

@media (min-width:1400px) {

    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 35px;
    }

}

/* ==========================
   Desktop (1200px–1399px)
========================== */

@media (min-width:1200px) and (max-width:1399px) {

    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 35px;
    }

}

/* ==========================
   Laptop (992px–1199px)
========================== */

@media (min-width:992px) and (max-width:1199px) {

    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 35px;
    }

}

/* Large Laptop (1200px - 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 35px;
    }
}

/* Extra Large Laptop/Desktop (1400px and above) */
@media (min-width: 1400px) {
    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 35px;
    }
}

/* ==========================
   Tablet
========================== */

@media (max-width:991px) {

    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 30px;
    }

    h3 {
        font-size: 24px;
    }

    p {
        font-size: 15px;
    }

}

/* ==========================
   Mobile
========================== */

@media (max-width:576px) {

    h1 {
        font-size: 30px;
    }

    h2 {
        font-size: 26px;
    }

    h3 {
        font-size: 22px;
    }

    p {
        font-size: 14px;
        line-height: 1.7;
    }

}

/* Starting to header section */
/* Navbar */

.navbar {
    background: #EDF9FF;

    padding: 2px 0;
    backdrop-filter: blur(8px);
    z-index: 999;
}

.logo {
    font-size: 33px;
    font-weight: 600;
}

.nav-link {
    color: #000;

    margin: 0 18px;
    font-size: 16px;

    font-weight: 400;
}

.nav-link:hover {

    color: #E75905 !important;
}

.login-btn {

    padding: 5px 25px;

    border: 2px solid rgba(255, 255, 255, .8);

    border-radius: 50px;

    color: #fff;

    text-decoration: none;
    font-size: 16px;
    transition: .3s;
}


i.bi.bi-person-fill {
    font-size: 18px;
}

.navbar-brand img {
    height: 60px;
    width: auto;
    display: block;
}

/* Header section End */


/* Hero Section Start */

.hero {
    height: 100vh;
    background-image: url("../images/banner.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    /* background: rgba(0, 0, 0, .58); */
    background: #06449b69;
    left: 0;
    top: 0;
}

.hero-content {

    position: relative;

    z-index: 2;

    color: #fff;
}

.hero-tag {
    display: inline-block;
    background: #E75905;
    padding: 12px 10px;
    border-radius: 30px;
    font-size: 17px;
    margin-bottom: 25px;
}

.hero h1 {

    font-size: 40px;
    font-weight: 600;
    line-height: 1.05;
    margin-bottom: 20px;
}

.hero p {
    font-size: 15px;
    line-height: 1.3;
    color: #ddd;
    max-width: 650px;
}

/* Tablet */

@media(max-width:992px) {

    .hero {

        text-align: center;
    }

    .hero h1 {

        font-size: 40px;
    }

    .hero p {

        font-size: 13px;

        margin: auto;
    }

    .navbar-nav {

        margin: 20px 0;
    }

    .login-btn {

        display: inline-block;

        margin-top: 20px;
    }

}

/* Mobile */

@media(max-width:576px) {

    .hero h1 {

        font-size: 28px;
        line-height: 1.08;
    }

    .hero-tag {
        margin-top: 40px;
        font-size: 11px;
        padding: 10px 20px;
    }

    .hero p {

        font-size: 11px;
    }

    .logo {

        font-size: 28px;
    }

}

@media (max-width: 991px) {
    .hero {
        height: 500px;
    }
}

.about-vyorise {
    background: #fff;
}

.about-title {
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #03163B;
}

.about-title span {
    color: #E75905;
}

.about-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.list-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 18px;
    color: #03163B;
}
.nav-link:hover,
.nav-link:focus,
.nav-link.active {
    color: #03163B !important;
}
.about-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    font-size: 16px;
    color: #444;
}

.about-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #E75905;
    font-weight: bold;
}

.about-image img {
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* Tablet */
@media(max-width:991px) {

    .about-vyorise {
        padding: 60px 0;
    }

    .about-title {
        font-size: 30px;
    }

    .about-image img {
        height: 400px;
    }

}

/* Mobile */
@media(max-width:767px) {

    .about-title {
        font-size: 28px;
        text-align: center;
    }

    .about-text {
        text-align: center;
    }

    .list-title {
        margin-top: 20px;
    }

    .about-image {
        margin-top: 30px;
    }

    .about-image img {
        height: auto;
    }

}

.gallery-section {
    background: #f0f0f0e6;
}

.section-heading {
    font-size: 40px;
    font-weight: 600;
}

.section-text {
    max-width: 600px;
    margin: auto;
    color: #666;
    line-height: 28px;
}

.gallery-card {

    background: #fff;

    border-radius: 20px;

    overflow: hidden;

    box-shadow: 0 12px 30px rgba(0, 0, 0, .08);

    transition: .4s;

    height: 100%;
}

.gallery-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 20px 40px rgba(0, 0, 0, .15);

}

.gallery-card img {

    width: 100%;
    object-fit: cover;

    display: block;

}

.gallery-content {
    padding: 20px;
    text-align: center;

}

.gallery-content h5 {

    margin: 0;
    font-size: 16px;
    font-weight: 600;

}

/* Laptop */

@media(max-width:1199px) {

    .gallery-card img {

        height: 260px;

    }

}

/* Tablet */

@media(max-width:991px) {

    .section-heading {

        font-size: 36px;

    }

    .gallery-card img {

        height: 250px;

    }
}

/* Mobile */

@media(max-width:767px) {

    .section-heading {
        font-size: 30px;
    }

    .gallery-card img {

        height: 280px;

    }

}

/* Small Mobile */

@media(max-width:575px) {

    .section-heading {

        font-size: 26px;

    }

    .gallery-card img {
        height: 240px;
    }
}

.dashboard-section {

    background: #fff;
    padding: 80px 0;

}

.dashboard-title {

    font-size: 35px;
    font-weight: 600;
    color: #03163B;
    margin-bottom: 15px;

}

.dashboard-title span {

    color: #f26722;

}

.dashboard-card {

    background: #fff;
    border: 1px solid #ececec;
    border-radius: 20px;
    padding: 25px 25px;
    text-align: center;
    height: 100%;
    transition: .4s;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .04);

}

.dashboard-card:hover {

    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .10);
    border-color: #f26722;

}

.icon-box {

    width: 95px;
    height: 95px;
    background: #fff3ed;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;

}

.icon-box i {

    font-size: 42px;
    color: #f26722;

}

.dashboard-card h4 {

    font-size: 24px;
    color: #f26722;
    font-weight: 600;
    margin-bottom: 18px;

}

.dashboard-card p {

    font-size: 15px;
    line-height: 28px;
    color: #666;
    margin: 0;

}

/* Laptop */

@media(max-width:1199px) {

    .dashboard-title {

        font-size: 40px;

    }

    .dashboard-card {

        padding: 35px 25px;

    }

}

/* Tablet */

@media(max-width:991px) {

    .dashboard-title {

        font-size: 34px;

    }

    .dashboard-card h4 {

        font-size: 22px;

    }

    .dashboard-card p {

        font-size: 15px;

    }

}

/* Mobile */

@media(max-width:767px) {

    .dashboard-section {

        padding: 60px 0;

    }

    .dashboard-title {

        font-size: 28px;
        line-height: 40px;

    }

    .dashboard-card {

        padding: 30px 20px;

    }

    .icon-box {

        width: 80px;
        height: 80px;
        margin-bottom: 25px;

    }

    .icon-box i {

        font-size: 35px;

    }

    .dashboard-card h4 {

        font-size: 20px;

    }

    .dashboard-card p {

        font-size: 14px;
        line-height: 26px;

    }

}

.dashboard-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    background: #f26722;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: 0.3s ease;
    box-shadow: 0 10px 25px rgba(242, 103, 34, .25);
}

.dashboard-btn:hover {
    background: #d95312;
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(242, 103, 34, .35);
}

.dashboard-btn i {
    transition: .3s;
}

.dashboard-btn:hover i {
    transform: translateX(6px);
}

/* Responsive */
@media(max-width:767px) {

    .dashboard-btn {
        padding: 12px 28px;
        font-size: 16px;
    }

}

.setup-section {
    background: #f0f0f0e6;

}

.setup-image {
    overflow: hidden;
    border-radius: 18px;
}

.setup-image img {
    width: 100%;
    border-radius: 18px;
    transition: .5s;
    display: block;
}

.setup-image:hover img {
    transform: scale(1.05);
}

.setup-content h2 {
    font-size: 35px;
    font-weight: 600;
    line-height: 1.2;
    color: #03163B;
    margin-bottom: 15px;

}

.setup-content h2 span {

    color: #f26722;

}

.setup-desc {

    color: #555;
    font-size: 15px;
    line-height: 25px;
    margin-bottom: 15px;

}

.setup-item {

    border-bottom: 1px solid #e8e8e8;
    padding-bottom: 15px;
    margin-bottom: 15px;

}

.setup-item h4 {
    color: #f26722;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 7px;

}

.setup-item p {

    color: #555;
    font-size: 15px;
    line-height: 28px;
    margin: 0;

}

/* Laptop */

@media(max-width:1199px) {

    .setup-content h2 {

        font-size: 40px;

    }

}

/* Tablet */

@media(max-width:991px) {

    .setup-section {

        padding: 70px 0;

    }

    .setup-content {

        margin-top: 20px;

    }

    .setup-content h2 {

        font-size: 34px;
        text-align: center;

    }

    .setup-desc {

        text-align: center;

    }

}

/* Mobile */

@media(max-width:767px) {

    .setup-section {

        padding: 60px 0;

    }

    .setup-content h2 {

        font-size: 28px;
        line-height: 40px;
        text-align: center;

    }

    .setup-desc {

        font-size: 15px;
        line-height: 28px;
        text-align: center;
        margin-bottom: 25px;

    }

    .setup-item {

        padding-bottom: 18px;
        margin-bottom: 18px;

    }

    .setup-item h4 {

        font-size: 20px;

    }

    .setup-item p {

        font-size: 14px;
        line-height: 26px;

    }

    .setup-image {

        border-radius: 15px;

    }

    .setup-image img {

        border-radius: 15px;

    }

}

.feature-image-section {
    background: #fff;
}

.section-title {
    font-size: 35px;
    font-weight: 600;
    color: #03163B;
    margin-bottom: 10px;
}

.section-title span {
    color: #f26722;
}

.section-desc {
    max-width: 760px;
    margin: auto;
    font-size: 17px;
    color: #666;
    line-height: 20px;
}

.feature-image {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .08);
}

.feature-image img {
    width: 100%;
    display: block;
    border-radius: 22px;
    transition: .5s;
}

.feature-image:hover img {
    transform: scale(1.03);
}

/* Laptop */

@media(max-width:1199px) {

    .section-title {
        font-size: 35px;
    }

}

/* Tablet */

@media(max-width:991px) {

    .feature-image-section {
        padding: 70px 0;
    }

    .section-title {
        font-size: 34px;
    }

    .section-desc {
        font-size: 16px;
        line-height: 28px;
    }

}

/* Mobile */

@media(max-width:767px) {

    .feature-image-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 28px;
        line-height: 40px;
    }

    .section-desc {
        font-size: 15px;
        line-height: 26px;
    }

    .feature-image {
        border-radius: 15px;
    }

    .feature-image img {
        border-radius: 15px;
    }

}

.full-control-section {
    background: #fff;
}

.full-control-title {
    font-size: 35px;
    font-weight: 600;
    color: #03163B;
    margin-bottom: 10px;
}

.full-control-title span {
    color: #f26722;
}

.full-control-text {
    max-width: 760px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 30px;
    color: #666;
}

.dashboard-image {
    border-radius: 20px;
    overflow: hidden;
}

.dashboard-image img {
    width: 100%;
    display: block;
    border-radius: 20px;
}

/* Large Devices */

@media (max-width:1199px) {

    .full-control-title {
        font-size: 42px;
    }

}

/* Tablet */

@media (max-width:991px) {

    .full-control-section {
        padding: 70px 0;
    }

    .full-control-title {
        font-size: 36px;
    }

    .full-control-text {
        font-size: 16px;
        line-height: 28px;
    }

}

/* Mobile */

@media (max-width:767px) {

    .full-control-section {
        padding: 60px 0;
    }

    .full-control-title {
        font-size: 30px;
        line-height: 40px;
    }

    .full-control-text {
        font-size: 15px;
        line-height: 26px;
    }

    .dashboard-image {
        border-radius: 15px;
    }

    .dashboard-image img {
        border-radius: 15px;
    }

}

.feature-section {
    background: #03163B;

}

.feature-box {
    background: #fff;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    height: 100%;
    transition: .4s;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
}

.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .15);
}

.feature-icon {
    width: 75px;
    height: 75px;
    background: #fff3ec;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 30px;
    color: #f26722;
}

.feature-box h4 {
    font-size: 20px;
    font-weight: 700;
    color: #03163B;
    margin-bottom: 10px;
}

.feature-box p {
    font-size: 15px;
    color: #666;
    line-height: 28px;
    margin: 0;
}

/* Tablet */
@media(max-width:991px) {

    .feature-section {
        padding: 60px 0;
    }

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

    .feature-box h4 {
        font-size: 22px;
    }

}

/* Mobile */
@media(max-width:767px) {

    .feature-section {
        padding: 50px 15px;
    }

    .feature-box {
        padding: 25px 18px;
    }

    .feature-icon {
        width: 65px;
        height: 65px;
    }

    .feature-icon i {
        font-size: 26px;
    }

    .feature-box h4 {
        font-size: 20px;
    }

    .feature-box p {
        font-size: 14px;
        line-height: 24px;
    }

}

.testimonial-section {

    background: url(../images/fronted/design.png) center/cover no-repeat;

    padding: 90px 0;

    position: relative;
}

.testimonial-section::before {

    content: "";

    position: absolute;

    inset: 0;

    background: rgba(45, 25, 0, .55);
}

.container {

    position: relative;

    z-index: 2;
}

.testimonial-title {

    color: #fff;

    font-size: 45px;

    font-weight: 700;
}

.swiper {

    padding-bottom: 20px;
}

.testimonial-card {

    background: #fff;

    border-radius: 20px;

    display: flex;

    overflow: hidden;

    box-shadow: 0 10px 25px rgba(0, 0, 0, .15);
}

.testimonial-card {
    padding: 10px;
    text-align: center;
}

.testimonial-card img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 5px;
    display: block;
    margin: 0 auto;
}

.testimonial-content {

    padding: 25px;
}


.testimonial-content p {

    font-size: 15px;

    color: #444;
    text-align: justify;
    line-height: 28px;
}

.testimonial-content h5 {

    font-size: 18px;

    font-weight: 700;

    margin-top: 20px;
}

.testimonial-content span {

    color: #777;

    font-size: 15px;
}

@media(max-width:991px) {

    .testimonial-card {

        flex-direction: column;
    }

    .testimonial-card img {

        width: 100%;

        height: 260px;
    }

}

@media(max-width:767px) {

    .testimonial-title {

        font-size: 32px;
    }

    .testimonial-card img {

        height: 220px;
    }

}

.contact-tag {
    color: #f26500;
    font-size: 15px;
    font-weight: 600;
}

.contact-title {
    font-size: 35px;
    font-weight: 600;
    color: #1f2937;
    margin: 10px 0;
}

.contact-subtitle {
    color: #6b7280;
    font-size: 18px;
    margin-bottom: 35px;
}

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
}

.form-control,
.form-select {
    border: 1px solid #d8dce3;
    border-radius: 8px;
    font-size: 15px;
    box-shadow: none;
}

.form-control:focus,
.form-select:focus {
    border-color: #f26500;
    box-shadow: 0 0 0 .15rem rgba(242, 101, 0, .15);
}

textarea.form-control {
    resize: both;
}

.country-code {
    max-width: 90px;
}

.form-check-label {
    font-size: 14px;
    color: #374151;
}

.form-check-label a {
    color: #374151;
    text-decoration: underline;
}

.contact-btn {
    background: #f26500;
    color: #fff;
    padding: 10px;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    transition: .3s;
}

.contact-btn:hover {
    background: #db5a00;
    color: #fff;
}

/* ---------- Tablet ---------- */

@media(max-width:991px) {

    .contact-section {
        padding: 60px 0;
    }

    .contact-title {
        font-size: 40px;
    }

    .contact-subtitle {
        font-size: 16px;
    }

}

/* ---------- Mobile ---------- */

@media(max-width:767px) {

    .contact-section {
        padding: 45px 15px;
    }

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

    .contact-subtitle {
        font-size: 15px;
    }

    .form-control,
    .form-select {
        height: 48px;
    }

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

    .country-code {
        max-width: 75px;
    }

    .contact-btn {
        height: 50px;
        font-size: 15px;
    }

}

.footer-section {
    background: #03163B;

}

.footer-link {
    color: #d9e4ff;
    text-decoration: none;
    transition: .3s;
}

.footer-link:hover {
    color: #fff;
}

.social-icon {
    color: #fff;
    font-size: 20px;
    text-decoration: none;
}

.social-icon:hover {
    color: #ffc107;
}

/* Full Width */
.iti {
    width: 100%;
}

/* Bootstrap Input Match */
.iti__tel-input,
.iti input {
    height: 48px;
    border-radius: .375rem;
}

/* Flag Area */
.iti__selected-country {
    padding: 0 .75rem;
}

/* Dropdown */
.iti__country-list {
    max-height: 250px;
    overflow-y: auto;
}

.scroll-btn {
    position: fixed;
    right: 15px;
    bottom: 15px;
}

.scroll-btn button {
    width: 45px;
    height: 45px;
    border: 0;
    border-radius: 50%;
    background: #f26722;
    color: #fff;
    font-size: 18px;
}

.footer-bottom {
    width: 100%;
    text-align: center;
    padding: 10px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    /* Optional */
}

.footer-bottom p {
    margin: 0;
    color: #fff;
    font-size: 16px;
}

/* 
login */
.login-section {
    min-height: 100vh;
    padding-top: 60px;
    /* Header height ke according */
    padding-bottom: 60px;
    background: #f7f7f7;
    display: flex;
    align-items: center;
}

.login-card {
    border-radius: 20px;
    padding: 35px;
}

.form-control {
    height: 55px;
    border-radius: 10px;
}

.form-control:focus {
    box-shadow: none;
    border-color: #cf6a18;
}

.login-btn {
    padding: 10px;
    border: none;
    border-radius: 50px;
    background: #03163B;
    color: #fff;
    font-weight: 600;
}



.password-toggle {
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
    cursor: pointer;
}

.forgot-link,
.signup-link {
    color: #cf6a18;
    text-decoration: none;
}

.google-btn {
    height: 50px;
}

/* Mobile */

@media (max-width:768px) {

    .login-section {
        padding-top: 100px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .login-card {
        padding: 25px;
    }

    .form-control,
    .login-btn {
        height: 50px;
    }

}


/* about section */
.about-section {
    background: #fff;
    padding-top: 120px;
}

.section-title {
    color: #d46b17;
    font-weight: 700;
    margin-bottom: 15px;
}

.about-section h6 {
    font-weight: 600;
    margin-bottom: 8px;
}

.about-section p {
    line-height: 1.8;
    font-size: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    font-size: 16px;
}

.contact-item i {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #d46b17;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: .3s;
}

.social-icons a:hover {
    background: #b85b12;
}

@media(max-width:768px) {

    .about-section {
        padding-top: 90px;
    }

    .about-section h5 {
        font-size: 17px;
    }

    .about-section p {
        font-size: 14px;
    }

}

/* about section end */

.topbar {
    background: linear-gradient(135deg, #C1560A 0%, #A44807 100%);
}

.service-card {
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 28px rgba(193, 86, 10, 0.16);
    border-color: #F3D9C4;
}

.service-card:active {
    transform: translateY(-2px);
}

.icon-badge {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.power-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s ease;
    color: #fff;
}

.power-btn:hover {
    background: rgba(255, 255, 255, 0.28);
    color: #fff;
}

:focus-visible {
    outline: 2px solid #C1560A;
    outline-offset: 2px;
}

/* ---- Responsive fine-tuning ---- */

/* Chhoti mobile screens: icon badge aur text thoda compact */
@media (max-width: 576px) {
    .icon-badge {
        width: 52px;
        height: 52px;
        font-size: 22px;
        border-radius: 14px;
    }

    .service-card span {
        font-size: 0.85rem;
        line-height: 1.3;
    }
}

/* Bade laptop/desktop pe cards thoda aur breathing space le */
@media (min-width: 1280px) {
    .icon-badge {
        width: 72px;
        height: 72px;
        font-size: 32px;
    }

    .service-card span {
        font-size: 1.05rem;
    }
}

/* Tailwind ka custom rust color agar config load na ho to fallback */
.bg-rust-50 {
    background-color: #FBF0E9;
}

.text-rust-500 {
    color: #C1560A;
}
.hero-btn {
    background: #EDF9FF;
    color: #000;
    border: 1px solid #CDEFFF;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    background: #D9F3FF;
    color: #000;
    border-color: #B6E7FF;
    transform: translateY(-2px);
}