body {
    font-family: 'Roboto', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin: 0 0 12px;
    letter-spacing: 0.3px;
}


p,
span {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    letter-spacing: 1px;
}


/* ===== Main Header ===== */
.rn-header {
    background-color: #fff;
    padding: 15px 40px;
    border-bottom: 1px solid #ddd;
}

.rn-logo img {
    height: 55px;
    object-fit: contain;
}

.rn-header .nav-link:hover {
    color: #f4aa1d !important;
}

.rn-header .nav-link {
    font-size: 15px;
    font-weight: 500;
    color: #111;
    margin: 0 10px;
    position: relative;
    padding: 10px 0;
    transition: all 0.3s ease-in-out;
    display: inline-block;
}

.rn-header .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 10%;
    height: 3px;
    width: 0;
    background-color: #000;
    transition: width 0.4s ease-in-out;
}

.rn-header .nav-link:hover::after {
    width: 60%;
}

/* === Custom Dropdown === */
.rn-dropdown-parent {
    position: relative;
}

.rn-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    padding: 10px 0;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    z-index: 999;
    transition: all 0.3s ease;
}

.rn-dropdown-parent:hover .rn-dropdown {
    display: block;
}

.rn-dropdown-link {
    display: block;
    padding: 10px 20px;
    color: #111;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
    white-space: nowrap;
}

.rn-dropdown li {
    list-style: none;
}

.rn-dropdown-link:hover {
    background-color: #000;
    color: #fff;
    border-radius: 4px;
}

/* Icon next to dropdown */
.rn-dropdown-toggle .rn-dropdown-icon {
    font-size: 13px;
    transition: transform 0.3s ease;
}

/* Rotate icon when dropdown open */
.rn-dropdown-parent.open .rn-dropdown-icon {
    transform: rotate(180deg);
}

@media (min-width: 992px) {

    /* Desktop & Laptop view: center menu */
    .rn-nav-links {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .rn-dropdown-parent:hover .rn-dropdown-icon {
        transform: rotate(180deg);
    }
}

/* ===== Tablet View (768px - 991px) ===== */
@media (min-width: 768px) and (max-width: 991px) {
    .rn-header {
        padding: 15px !important;
    }

    .rn-nav-links {
        text-align: left;
        padding-top: 15px;
    }

    .rn-header .nav-link {
        padding: 10px 15px;
        margin: 2px 0;
        font-size: 14px;
        /* Tablet menu size */
    }

    .rn-logo {
        margin-bottom: 10px;
    }

    .rn-dropdown {
        position: static;
        display: none;
        box-shadow: none;
        border: none;
        padding-left: 0;
        margin-top: 5px;
    }

    .rn-dropdown-parent.open .rn-dropdown {
        display: block;
    }

    .rn-dropdown-link {
        padding: 10px 15px;
        border-bottom: 1px solid #eee;
    }

    .rn-dropdown-link:last-child {
        border-bottom: none;
    }
}

/* ===== Mobile View (≤767px) ===== */
@media (max-width: 767px) {
    .rn-header-top {
        justify-content: center !important;
        padding: 8px 15px;
    }

    .rn-header {
        padding: 15px !important;
    }

    .rn-logo img {
        height: 40px;
    }

    .rn-header .navbar-toggler {
        outline: none;
    }

    .rn-header .navbar-collapse {
        background-color: #fff;
        padding: 15px;
        border-top: 1px solid #ddd;
    }

    .rn-header .nav-link {
        font-size: 14px;
        /* Mobile menu size */
    }
}


/* footer section css  */
.rn-footer {
    background-color: #fff;
    color: #000;
    font-size: 14px;
    z-index: 1;
    overflow: hidden;
    padding: 50px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    /* subtle top border */
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
    /* soft shadow from top */
}

/* .rn-footer>.container {
    position: relative;
    z-index: 1;
} */

.ssl-aaa {
    color: #000;
    text-decoration: none !important;
    font-weight: 500;
}

.ssl-aaa:hover {
    color: #f4aa1d;
}

.rn-footer-title {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #000;
}

.rn-footer-links li,
.rn-footer-contact li {
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #000;
}

.rn-footer-links li:hover,
.rn-footer-contact li:hover {
    color: #f4aa1d;
}

.rn-footer-social a {
    display: inline-block;
    padding: 5px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.rn-footer-social-icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.rn-footer-social a:hover {
    background-color: #000;
    transform: scale(1.05);
}

.rn-footer-bottom {
    font-size: 13px;
    color: #ddd;
}

.digispheretech {
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    color: #000 !important;
}

.digispheretech:hover {
    color: #f4aa1d !important;
}

/* Footer Logo Image */
.footer-section-img {
    max-width: 150px;
    height: auto;
    border-radius: 6px;
    display: block;
}

.footer-para {
    font-size: 14px;
    text-align: start;
    color: #000;
}

/* ===== Tablet View (991px and below) ===== */
@media (max-width: 991px) {
    .rn-footer .row>div {
        text-align: start;
        /* Align left */
        margin-bottom: 0px;
    }

    .rn-footer .rn-footer-about img {
        margin: 0 0 15px 0;
    }

    .rn-footer-title {
        font-size: 16px;
    }

    .rn-footer-links li,
    .rn-footer-contact li {
        font-size: 12px;
    }

    .rn-footer-social a {
        margin: 0 4px 4px 0;
    }

    .footer-para {
        font-size: 12px;
        text-align: start;
    }

    .footer-section-img {
        max-width: 130px;
    }
}

/* ===== Mobile View (575px and below) ===== */
@media (max-width: 575px) {
    .rn-footer {
        padding: 30px 15px;
        text-align: start;
    }

    .rn-footer .row>div {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .rn-footer-title {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .footer-para {
        font-size: 12px;
        text-align: start;
    }

    .rn-footer-links li,
    .rn-footer-contact li {
        font-size: 13px;
        line-height: 1.6;
    }

    .rn-footer-social {
        margin-top: 15px;
    }

    .rn-footer-bottom {
        padding-top: 10px;
        font-size: 12px;
    }

    .footer-section-img {
        max-width: 120px;
    }
}


/* slider section css  */
.carousel-section {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.carousel-bg {
    height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.carousel-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(37, 37, 37, 0.26);
    z-index: 1;
}

.carousel-overlay {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    color: white;
    max-width: 830px;
    z-index: 2;
    /* added */
}

.carousel-subtitle {
    font-size: 18px;
    color: #fff;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 0px;
    font-family: 'gotham';
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    /* Added shadow */
}

.carousel-title {
    font-size: 64px;
    color: #fff;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 20px;
    font-family: 'open sans' !important;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.6);
    /* Added shadow */
}


.carousel-description {
    font-size: 16px;
    margin-bottom: 30px;
    font-family: 'open sans';
    letter-spacing: 1.3px !important;
}

.carousel-buttons .btn {
    padding: 12px 24px;
    font-weight: 600;
    border-radius: 4px;
}

.carousel-bottom {
    background-color: #D4D4D4;
    /* or use #FFC107 if closer match needed */
    width: 100%;
    z-index: 10;
    position: relative;
    font-size: 18px !important;
}

.carousel-bottom p {
    margin: 0;
    padding: 4px 10px;
    color: #000 !important;
    font-weight: 500;
    letter-spacing: 0.3px;
    font-size: 16px;
}

/* Tablet View (991px and below) */
@media (max-width: 991.98px) {
    .carousel-section {
        height: 300px !important;
    }

    .carousel-bg {
        height: 300px !important;
    }

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

    .carousel-description {
        font-size: 14px;
    }

    .carousel-overlay {
        left: 5%;
        right: 5%;
        max-width: 100%;
        top: 50%;
        transform: translateY(-50%);
    }

    .carousel-buttons .btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .carousel-bottom p {
        font-size: 14px;
    }
}

/* Mobile View (576px and below) */
@media (max-width: 575.98px) {
    .carousel-section {
        height: 250px !important;
    }

    .carousel-bg {
        height: 250px !important;
    }

    .carousel-title {
        font-size: 22px;
        margin-bottom: 4px;
    }

    .carousel-subtitle {
        font-size: 10px;
        margin-bottom: 0px;
    }

    .carousel-description {
        font-size: 10px;
        margin-bottom: 0px;
    }

    .carousel-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .carousel-buttons .btn {
        width: 100%;
        font-size: 14px;
        padding: 10px;
    }

    .carousel-bottom p {
        font-size: 13px;
        padding: 6px 12px;
    }

    .carousel-overlay {
        left: 20px;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }
}



/* our services section css  */
.home-services-section {
    background-color: #f9f7f1;
    /* Light beige background */
}

.home-services-title {
    font-size: 30px;
    font-weight: 700;
    margin-top: 10px;
}

.home-services-nav {
    display: flex;
    gap: 10px;
}

.home-services-nav-btn {
    background: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
    color: #ffc30f;
    /* Yellow icon color */
}

.home-services-slider {
    overflow: hidden;
    position: relative;
}

.home-services-track {
    display: flex;
    transition: transform 0.4s ease;
}

.home-services-card {
    flex: 0 0 25%;
    /* 4 cards visible at once */
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.home-services-card:hover {
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1);
}

.home-services-icon {
    width: 310px;
    height: 200px;
    margin-bottom: 20px;
    object-fit: cover;
}

.home-services-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.home-services-link {
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    color: #3f3d3d;
}

.home-services-link:hover {
    text-decoration: underline;
}

/* ===== Tablet View: 2 cards ===== */
@media (max-width: 992px) {
    .home-services-card {
        flex: 0 0 50%;
        padding: 18px;
    }

    .home-services-icon {
        height: 250px;
    }

    .home-services-title {
        font-size: 24px;
    }

    .home-services-name {
        font-size: 1rem;
    }
}

/* ===== Mobile View: 1 card ===== */
@media (max-width: 576px) {
    .home-services-card {
        flex: 0 0 100%;
        padding: 20px;
    }

    .home-services-icon {
        height: 200px;
    }

    .home-services-title {
        font-size: 14px;
        /* Matches your request for mobile titles */
    }

    .home-services-name {
        font-size: 14px;
    }

    .home-services-subtitle,
    .home-services-link {
        font-size: 12px;
        /* Matches paragraph size on mobile */
    }

    .home-services-nav {
        justify-content: center;
        gap: 5px;
    }

    .home-services-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* home banner section css  */
.rn-homebanner {
    background: linear-gradient(to right, #ffffff, #f9f9f9);
}

.rn-homebanner-row {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: nowrap;
    /* keep in one row */
}

/* Left Side Content */
.rn-homebanner-content {
    color: #222;
}

.rn-homebanner-tagline {
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 600;
    color: #ff6b00;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.rn-homebanner-title {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #0c1c36;
}

.rn-homebanner-subtitle {
    font-size: 20px;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 10px;
    color: #0c1c36;
}

.rn-homebanner-desc {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.rn-btns {
    display: inline-block;
    padding: 10px 28px;
    background: #000;
    border: 2px solid #000;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;

}

.rn-btns:hover {
    background: transparent;
    border: 2px solid #ffc30f;
    color: #000;
    transform: translateY(-2px);

}

.rn-homebanner-left {
    flex: 1;
    /* take available space */
    min-width: 0;
    /* fix flex overflow issue */
}

.rn-homebanner-right {
    flex: 1;
    min-width: 0;
}

/* Image Wrapper */
.rn-homebanner-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.rn-homebanner-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.rn-homebanner-image-wrapper:hover .rn-homebanner-image {
    transform: scale(1.05);
}

/* ===== Tablet View ===== */
@media (max-width: 991.98px) {
    .rn-homebanner-row {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .rn-homebanner-title {
        font-size: 24px;
    }

    .rn-homebanner-subtitle {
        font-size: 18px;
    }

    .rn-homebanner-desc {
        font-size: 14px;
    }

    .rn-btns {
        padding: 8px 22px;
        font-size: 14px;
    }
}

/* ===== Mobile View ===== */
@media (max-width: 767.98px) {
    .rn-homebanner-row {
        flex-direction: column;
        gap: 15px;
        text-align: start;
    }

    .rn-homebanner-tagline {
        font-size: 12px;
    }

    .rn-homebanner-title {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .rn-homebanner-subtitle {
        font-size: 14px;
        margin-top: 15px;
        margin-bottom: 8px;
    }

    .rn-homebanner-desc {
        font-size: 12px;
        line-height: 1.6;
    }

    .rn-btns {
        padding: 6px 18px;
        font-size: 13px;
    }
}

/* what we do section css  */
/* ========== WHAT WE DO SECTION ========== */
.rn-whatwe {
    background: #ffffff;
}

.home-services-subtitle {
    font-size: 0.85rem;
    letter-spacing: 2px;
    font-weight: 600;
    color: #ffc30f;
    /* padding: 4px 14px; */
    border-radius: 20px;
    display: inline-block;
    border: none;
}

.rn-whatwe-title {
    font-size: 30px;
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 1.5rem;
}

.rn-whatwe-highlight {
    background: #fff;
    /* border-radius: 12px; */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
}

.rn-whatwe-count {
    font-size: 3rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 5px;
}

.rn-whatwe-label {
    font-size: 1rem;
    font-weight: 500;
    color: #666;
}

.rn-whatwe-points {
    max-width: 650px;
    margin: 2rem auto 0;
}

/* Unified, non-shrinking icon container */
.rn-icon-box,
.rn-whychoose-icon,
.rn-icon {
    /* optional helper class you can add to HTML */
    width: 40px;
    height: 40px;
    padding: 0;
    box-sizing: border-box;
    display: inline-flex;
    /* use inline-flex to avoid strange flex parent behavior */
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background-color: none;
    color: #ffc30f;
    transition: all 0.25s ease;
    margin-right: 10px;
    /* prevent parent flex from shrinking it */
}

/* Make sure all possible icon element types are forced to the same visible size */
.rn-icon-box i,
.rn-whychoose-icon i,
.rn-icon-box svg,
.rn-whychoose-icon svg,
.rn-icon-box img,
.rn-whychoose-icon img {
    display: block;
    width: 22px;
    /* visible icon width */
    height: 22px;
    /* visible icon height */
    line-height: 1;
    font-size: 22px;
    /* for font-awesome <i> icons */
    margin: 0;
    padding: 0;
    object-fit: contain;
    /* for <img> */
    vertical-align: middle;
}

/* If FontAwesome inserts SVGs and another rule still overrides size,
   use these stronger rules (only if necessary) */
.rn-icon-box svg,
.rn-whychoose-icon svg {
    width: 22px !important;
    height: 22px !important;
}

/* ========== WHY CHOOSE US SECTION ========== */
.rn-whychoose-subtitle {
    font-size: 0.85rem;
    letter-spacing: 2px;
    font-weight: 600;
    color: #856404;
    background: #fff3cd;
    padding: 4px 14px;
    border-radius: 20px;
    display: inline-block;
    border: 1px solid #ffeeba;
}

.rn-whychoose-title {
    font-size: 30px;
    font-weight: 700;
    color: #2d2d2d;
}

.rn-whychoose-desc {
    font-size: 1rem;
    color: #555;
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.7;
}


.rn-whychoose-text {
    margin: 0;
    font-size: 0.95rem;
    color: #333;
    font-weight: 500;
}

/* ===== Tablet View ===== */
@media (max-width: 992px) {

    .rn-whatwe-title,
    .rn-whychoose-title {
        font-size: 24px;
    }

    .rn-whatwe-count {
        font-size: 24px;
    }

    .rn-whatwe-label,
    .rn-whychoose-desc {
        font-size: 0.9rem;
    }

    .rn-whychoose-text {
        font-size: 12px;
        margin: 0;
        text-align: start;
    }
}

@media (max-width: 576px) {

    .rn-whychoose-points .col-6 {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        text-align: left;
        gap: 5px;
        /* consistent spacing */
    }

    .rn-whychoose-icon {
        margin-right: 0;
        flex-shrink: 0;
    }

    .rn-whychoose-text {
        font-size: 12px;
        margin: 0;
        text-align: start;
    }
}


/* our services page css  */
.service-section {
    padding: 50px;
    background-color: #fff;
    color: #333;
}

/* Service Image */
.service-image img {
    border-radius: 25px !important;
    height: 400px;
    width: 100%;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Headings */
.service-content h2 {
    font-weight: 700;
    font-size: 28px;
    color: #1c1c1c;
}

.service-content h4 {
    font-size: 22px;
    font-weight: 600;
    color: #1c4b44;
}

.service-content p {
    font-size: 16px;
    line-height: 1.7;
}

/* List Styling */
.service-list ul li {
    display: flex;
    align-items: flex-start;
    font-size: 15px;
    margin-bottom: 10px;
    color: #444;
}

.service-list ul li i {
    color: #f36f21 !important;
}

/* Steps Section */
.service-step {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.03);
    padding: 25px;
    transition: all 0.3s ease-in-out;
}

.service-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.service-step h6 {
    font-weight: 600;
    font-size: 16px;
    color: #1c4b44;
}

.service-step p {
    font-size: 14px;
    color: #666;
    margin-bottom: 0px;
    text-align: center;
}

/* Sidebar Boxes */
.service-sidebar,
.service-social,
.service-help {
    border-radius: 25px !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.service-sidebar {
    background: #ecebde !important;
}

.service-sidebar-title {
    font-weight: 600;
    font-size: 21px;
    color: #1c4b44;
}

.service-category li {
    padding: 8px 0;
}

.service-category li a {
    color: #222;
    background: #fff;
    border-radius: 25px;
    font-size: 15px;
    text-decoration: none;
    display: block;
    padding: 10px 15px;
    transition: all 0.2s ease-in-out;
    font-weight: 600;
}

.service-category li a:hover {
    color: #f36f21;
    padding-left: 25px;
}

/* Service Social Block */
.service-social {
    background-color: #ecebde !important;
}

.service-social h6 {
    font-size: 18px;
    font-weight: 600;
    color: #1c4b44;
}

/* Social Circle Styling */
.social-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.social-img-icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease;
}

/* Help Box */
.service-help {
    background-color: #1c1c1c;
}

.service-help-icon i {
    color: #ffa500;
}

.service-help p,
.service-help h5 {
    margin-bottom: 10px;
}

.service-help a.btn {
    font-weight: 600;
    border-radius: 30px;
}

.fade-in {
    opacity: 1 !important;
    transition: opacity 0.3s ease;
}


.service-content {
    transition: opacity 0.3s ease;
}

/* Buttons */
.btn-warning {
    background-color: #f36f21;
    border: none;
    padding: 10px 20px;
    transition: 0.3s;
}

.btn-warning:hover {
    background-color: #d85c17;
    color: #fff;
}

.sidebar-link.active {
    color: #f36f21 !important;
    background-color: #fff3e6;
    font-weight: 700;
}

/* ============ RESPONSIVE DESIGN ============ */


/* ===== Mobile Devices (up to 767px) ===== */
@media (max-width: 767px) {
    .service-section {
        padding: 30px 15px;
    }

    .service-image img {
        height: 200px;
        border-radius: 15px !important;
    }

    .service-content h2 {
        font-size: 22px;
    }

    .service-content h4 {
        font-size: 14px;
    }

    .service-social {
        display: none;
    }

    .service-step {
        margin-bottom: 20px;
    }

    .service-sidebar,
    .service-help {
        margin-top: 30px;
    }

    .service-step h6 {
        font-size: 15px;
    }

    .service-step p {
        font-size: 13px;
    }

    .service-social i {
        padding: 8px;
        font-size: 16px !important;
    }

    .service-category li a {
        font-size: 12px;
        padding: 10px 12px;
    }

    .service-list ul li {
        font-size: 12px;
    }

    .service-content p {
        font-size: 12px;
    }

    .btn-warning {
        font-size: 14px;
        padding: 8px 16px;
    }

    .service-help h5 {
        font-size: 18px;
    }
}

/* ===== Tablets (768px to 991px) ===== */
@media (min-width: 768px) and (max-width: 991px) {
    .service-section {
        padding: 50px 30px;
    }

    .service-image img {
        height: 250px;
    }

    .service-social {
        display: none;
    }

    .service-content h2 {
        font-size: 26px;
    }

    .service-step {
        padding: 20px;
    }

    .service-step h6 {
        font-size: 16px;
    }

    .service-step p {
        font-size: 14px;
    }

    .service-category li a {
        font-size: 15px;
    }

    .btn-warning {
        font-size: 15px;
        padding: 9px 18px;
    }
}

/* banner section css  */
.constructio-banner {
    height: 350px;
    overflow: hidden;
}

.constructio-banner-img {
    object-fit: cover;
    height: 100%;
}

.constructio-banner-overlay {
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.constructio-banner-content {
    z-index: 2;
}

.constructio-banner-title {
    font-size: 48px;
    font-weight: 700;
}

.constructio-breadcrumb {
    font-size: 16px;
}

.constructio-breadcrumb-link {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.constructio-breadcrumb-link:hover {
    color: #ffc107;
}

.constructio-breadcrumb-active {
    color: #ffc107;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .constructio-banner {
        height: 220px;
    }

    .constructio-banner-title {
        font-size: 32px;
    }

    .constructio-breadcrumb {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .constructio-banner-title {
        font-size: 26px;
    }

    .constructio-breadcrumb {
        font-size: 13px;
    }
}

/* contact us page css  */
.contact-page-section {
    background: #f8fbfd;
    position: relative;
    padding: 50px;
}

.contact-page-card {
    background: #fff;
    border-radius: 15px;
    border: 1px solid #eee;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease-in-out;
    height: 100%;
}

.contact-page-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}

.contact-page-icon {
    font-size: 40px;
    color: #ffc30f;
}

.contact-page-title {
    font-weight: 700;
    font-size: 18px;
    margin-top: 10px;
    color: #0f1f3e;
}

.contact-page-text {
    color: #5f6368;
    font-size: 12px;
    margin: 5px 0;
}

.contact-page-text a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-page-text a:hover {
    color: #1c4b44;
    text-decoration: underline;
}


.contact-page-form {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.05);
}

.contact-page-form h3 {
    font-weight: 700;
    color: #0f1f3e;
    font-size: 40px;
}

.contact-page-input {
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 14px;
}

.contact-page-image-box {
    /* background: url('/assets/contact-us.jpeg') center/cover no-repeat; */
    /* Background image */
    /* border-radius: 12px; */
    padding: 30px 20px;
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); */
    color: #000;
    width: 100%;
    height: 480px;
    /* Makes text visible on image */
}

.contact-page-social-icons .contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(41, 39, 39, 0.15);
    /* Transparent white circle */
    border-radius: 50%;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    /* Glass effect */
}

.contact-page-social-icons .contact-icon img {
    width: 35px;
    height: 35px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.contact-page-social-icons .contact-icon:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.contact-page-social-icons .contact-icon:hover img {
    transform: scale(1.2);
}

.contact-page-map iframe {
    width: 100%;
    height: 450px;
    border: none;
}

.contatc-button-page {
    background: transparent;
    border: 2px solid #000;
    color: #000;
    font-weight: 600;
    padding: 8px 35px;
}

.contatc-button-page:hover {
    background: #000;
    color: #fff;
}

/* Tablet View (≤ 992px) */
@media (max-width: 992px) {
    .contact-page-section {
        padding: 30px;
    }

    .contact-page-form h3 {
        font-size: 28px;
    }

    .contact-page-image-box {
        height: 380px;
        padding: 20px;
    }

    .contact-page-social-icons {
        gap: 15px;
    }

    .contact-page-title {
        font-size: 16px;
        /* Slightly smaller titles for tablet */
    }

    .contact-page-text {
        font-size: 13px;
        /* Slightly smaller paragraphs for tablet */
    }
}

/* Mobile View (≤ 768px) */
@media (max-width: 768px) {
    .contact-page-section {
        padding: 20px;
    }

    .contact-page-card {
        margin-bottom: 20px;
    }

    .contact-page-form h3 {
        font-size: 22px;
        text-align: center;
    }

    .contact-page-title {
        font-size: 14px;
        /* Title size for mobile */
    }

    .contact-page-text {
        font-size: 12px;
        /* Paragraph size for mobile */
    }

    .contact-page-image-box {
        height: 300px;
        padding: 15px;
        text-align: center;
    }

    .contact-page-social-icons {
        flex-wrap: wrap;
        gap: 10px;
    }

    .contact-page-social-icons .contact-icon {
        width: 40px;
        height: 40px;
    }

    .contact-page-social-icons .contact-icon img {
        width: 28px;
        height: 28px;
    }

    .contatc-button-page {
        display: block;
        width: 100%;
        text-align: center;
    }
}

/* Small Mobile (≤ 480px) */
@media (max-width: 480px) {
    .contact-page-form h3 {
        font-size: 20px;
        text-align: start;
    }

    .contact-page-title {
        font-size: 14px;
        /* Title fixed size */
    }

    .contact-page-text {
        font-size: 12px;
        /* Paragraph fixed size */
    }

    .contact-page-image-box {
        height: 250px;
    }

    .contact-page-social-icons .contact-icon {
        width: 36px;
        height: 36px;
    }

    .contact-page-social-icons .contact-icon img {
        width: 24px;
        height: 24px;
    }
}


/* Section: Paint Home Brands */
.painthomebrands-main1 {
    padding: 40px 0;
    background: #f8f7f0;
}

/* Brand Slider Container */
.painthomebrands-slider {
    overflow: hidden;
    position: relative;
    border-radius: 10px;
    padding: 20px 0;
}

/* View Link Style */
.painthomebrands-view {
    color: #000;
    font-size: 14px;
    font-weight: 500;
}

.painthomebrands-view:hover {
    color: #022179;
    text-decoration: none;
}

/* Scroll Track Animation */
.painthomebrands-track {
    display: flex;
    width: max-content;
    animation: painthomebrandsScroll 20s linear infinite;
}

/* Each Brand Logo */
.painthomebrands-item {
    min-width: 200px;
    margin: 0 10px;
    display: flex;
    height: 100px;
    justify-content: center;
    align-items: center;
    background: white;
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.painthomebrands-item img {
    max-width: 100%;
    height: auto;
}

/* Continuous Animation */
@keyframes painthomebrandsScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .painthomebrands-track {
        animation-duration: 25s;
    }
}

@media (max-width: 480px) {
    .painthomebrands-item {
        min-width: 140px;
    }
}

/* about us page css  */
.about-page {
    background-color: #fff;
    color: #222;
}

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

.about-header {
    border-bottom: 2px solid #000;
    padding-bottom: 10px;
}

.about-title {
    font-size: 38px;
    font-weight: 700;
    color: #000;
}

.about-subtitle-text {
    font-size: 16px;
    color: #555;
}

.about-subtitle {
    font-size: 26px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
}

.about-text {
    font-size: 15.5px;
    color: #444;
    line-height: 1.8;
}

.about-section {
    margin-bottom: 50px;
}

.about-leader-box {
    background: #f9f9f9;
    border-radius: 5px;
}

.about-leader-name {
    font-weight: 600;
    color: #111;
}

.about-why-box {
    background: #fdfdfd;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.about-why-box:hover {
    background-color: #f1f1f1;
}

.about-subtitle {
    font-size: 28px;
    font-weight: 600;
    color: #000;
}

.about-cert-card {
    background-color: #f9f9f9;
    transition: all 0.3s ease;
}

.about-cert-card:hover {
    background-color: #fff;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.08);
}

.about-cert-text {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

/* ===== Tablet View (768px - 991px) ===== */
@media screen and (min-width: 768px) and (max-width: 991px) {
    .about-container {
        padding: 0 30px;
    }

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

    .about-subtitle {
        font-size: 22px;
    }

    .about-text {
        font-size: 14.5px;
        line-height: 1.7;
    }

    .about-section {
        margin-bottom: 40px;
    }
}

/* ===== Mobile View (up to 480px) ===== */
@media screen and (max-width: 480px) {
    .about-container {
        padding: 0 20px;
    }

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

    .about-subtitle {
        font-size: 20px;
        text-align: center;
    }

    .about-subtitle-text,
    .about-text {
        font-size: 14px;
        line-height: 1.6;
        text-align: start;
    }

    .about-section {
        margin-bottom: 30px;
    }

    .about-leader-box,
    .about-why-box {
        padding: 15px;
    }

    .about-why-box:hover {
        background-color: #f9f9f9;
    }
}

/* gallery section css  */
.gallery-section {
    background-color: #fff;
    padding: 50px 20px;
}

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

.gallery-title-box {
    text-align: center;
    margin-bottom: 40px;
}

.gallery-title {
    font-size: 36px;
    font-weight: 700;
    color: #102c57;
    border-bottom: 2px solid #102c57;
    display: inline-block;
    padding-bottom: 10px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.gallery-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.4s ease;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    width: 100%;
    padding: 12px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px !important;
    text-align: center;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 991px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-title {
        font-size: 26px;
    }

    .gallery-caption {
        font-size: 13px;
    }
}


/* specification page and permission section css  */
.certification-section-alt {
    background: #fafafa;
    padding: 50px 0;
}

/* Title & Subtitle */
.certification-title-alt {
    font-size: 36px;
    font-weight: 700;
    color: #222;
    text-align: center;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.certification-subtitle-alt {
    font-size: 16px;
    color: #666;
    text-align: center;
    max-width: 720px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

/* Card Box */
.cert-box {
    position: relative;
    background: #fff;
    padding: 28px 22px;
    border-radius: 14px;
    border: 1px solid #eee;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    height: 100%;
}

.cert-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* Card Icon */
.cert-box-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    overflow: hidden;
    border-radius: 10px;
}

.icon-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.cert-box:hover .icon-img {
    transform: scale(1.05);
}

/* Card Content */
.cert-box-content h5 {
    font-size: 19px;
    font-weight: 600;
    color: #1c2c4c;
    margin-bottom: 10px;
}

.cert-box-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.65;
    margin-bottom: 0;
}

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

    .cert-box-content h5,
    .cert-box-content p,
    .cert-box-content {
        text-align: start;
    }

    .icon-img {
        height: 200px;
    }

    .certification-section-alt .col-md-4 {
        width: 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* ===== Mobile View ===== */
@media (max-width: 576px) {
    .icon-img {
        height: 180px;
    }

    /* Smaller titles & text for mobile */
    .cert-box-content h5 {
        font-size: 14px;
    }

    .cert-box-content p {
        font-size: 12px;
        line-height: 1.5;
        text-align: start;
    }

    .certification-title-alt {
        font-size: 24px;
    }

    .certification-subtitle-alt {
        font-size: 14px;
    }
}


.rn-btn {
    display: inline-block;
    padding: 10px 24px;
    background-color: #111;
    /* main color */
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid transparent;
    /* Prevents size jump on hover */
    transition: all 0.3s ease;
}

/* Hover effect */
.rn-btn:hover {
    background-color: transparent;
    color: #000;
    /* Text turns black */
    border: 2px solid #000;
    /* Adds border */
}

/* teams page section  */

/* ===== Team Page Base ===== */
.team-page-section {
    background-color: #fff;
}

.team-page-title {
    font-size: 2rem;
    font-weight: 700;
    color: #0c1c36;
}

.team-page-member {
    text-align: center;
    padding: 20px;
}

/* Yellow circle border */
.team-page-image-wrapper {
    width: 200px;
    height: 200px;
    border: 6px solid #f9c400;
    border-radius: 50%;
    overflow: hidden;
    background-color: transparent;
}

/* Black background inside the circle */
.team-page-image-bg {
    width: 100%;
    height: 100%;
    background-color: #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Team photo/silhouette */
.team-page-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.team-page-name {
    font-size: 1rem;
    font-weight: 700;
    color: #000;
    margin-top: 10px;
    margin-bottom: 10px;
}

.team-page-description {
    font-size: 12px;
    color: #333;
    line-height: 1.4;
    text-align: start;
}

/* Service Card Images */
.rn-service-card-imgsss {
    width: 100%;
    height: 275px;
    object-fit: cover;
    border: 1px solid #ccc;
}

.rn-service-title {
    font-size: 14px;
    font-weight: 700;
    color: #0c1c36;
    text-align: start;
    margin-bottom: 5px !important;
}

.rn-service-titless {
    font-size: 12px;
    font-weight: 600;
    color: #ffc30f;
    margin-bottom: 10px;
    text-align: start;
}

/* ===== Tablet View ===== */
@media (max-width: 991.98px) {
    .team-page-image-wrapper {
        width: 160px;
        height: 160px;
    }

    .team-page-img {
        max-width: 90%;
        max-height: 90%;
    }

    .team-page-name {
        font-size: 0.95rem;
    }

    .team-page-description {
        font-size: 0.85rem;
    }

    /* Align text to start for tablet */
    .rn-service-card {
        text-align: start;
    }
}

/* ===== Mobile View ===== */
@media (max-width: 575.98px) {
    .team-page-member {
        padding: 10px;
    }

    .team-page-image-wrapper {
        width: 200px;
        height: 200px;
        margin-bottom: 15px;
    }

    .team-page-title {
        font-size: 1.5rem;
    }

    .team-page-description {
        font-size: 0.8rem;
    }

    /* Align text to start for mobile */
    .rn-service-card {
        text-align: start;
    }

    .rn-service-title {
        font-size: 0.95rem;
    }

    .rn-service-titless {
        font-size: 0.85rem;
    }
}


/* completed projects css  */
.project-card {
    display: flex;
    flex-direction: column;
    height: 500px;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.project-card-img {
    width: 100%;
    height: 300px;
    /* Keep this as you requested */
    object-fit: cover;
}

.project-card-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
    padding: 15px;
}

.project-card:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.project-card-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0d1b2a;
}

.project-card-info p {
    font-size: 14px;
    color: #555;
    margin-bottom: 5px;
}

.project-card-link {
    text-decoration: none;
    color: inherit;
}

/* ===== Gallery View ===== */
.project-gallery-section {
    animation: fadeIn 0.4s ease-in-out;
}

.project-gallery-section .gallery-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: zoom-in;
}

.project-gallery-section .gallery-img:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* ===== Classic Black Button ===== */
.download-btn {
    padding: 10px 24px;
    background-color: #000;
    /* Solid black background */
    color: #fff;
    /* White text */
    border-radius: 50px;
    /* Smooth pill shape */
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #000;
    /* Border for solid look */
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.download-btn:hover {
    background-color: #111;
    /* Slightly lighter black */
    border-color: #f4aa1d;
    /* Accent border on hover */
    color: #f4aa1d;
    /* Accent text color */
    transform: scale(1.05);
    /* Slight zoom */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    /* Soft shadow */
}

.download-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(244, 170, 29, 0.5);
    /* Focus ring */
}


/* ===== Animation ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

/* ===== Responsive Tablet (max-width: 992px) ===== */
@media (max-width: 992px) {
    .project-card {
        height: auto;
        /* Let content decide height for tablets */
    }

    .project-card-info {
        padding: 12px;
    }

    .project-card-info h4 {
        font-size: 16px;
    }

    .project-card-info p {
        font-size: 13px;
        margin-bottom: 4px;
    }
}

/* ===== Responsive Mobile (max-width: 576px) ===== */
@media (max-width: 576px) {
    .project-card {
        height: auto;
        /* No fixed height for mobile */
    }

    .project-card-info {
        padding: 10px;
    }

    .project-card-info h4 {
        font-size: 14px;
        line-height: 1.3;
    }

    .project-card-info p {
        font-size: 12px;
        margin-bottom: 3px;
    }

    .download-btn {
        padding: 8px 16px;
        font-size: 13px;
    }

    .project-inner-title {
        font-size: 14px;
    }
}

/* home page teams section css  */
.rn-founder {
    background-color: #fff;
}

.rn-founder-subtitle {
    font-size: 14px;
    letter-spacing: 2px;
    color: #ffc30f;
    text-transform: uppercase;
}

.rn-founder-title {
    font-size: 30px;
    font-weight: 700;
    color: #000;
}

.rn-founder-card-wrapper {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rn-founder-card-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.founder-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    min-height: 300px;
    border-right: 1px solid #eee;
}

.rn-founder-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* vertical center */
    align-items: center;
    /* horizontal center */
    text-align: center;
    /* center text */
    height: 100%;
}

.rn-founder-bio {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
    max-width: 90%;
    /* keeps content narrower for better readability */
}

.rn-founder-quote {
    font-size: 16px;
    font-style: italic;
    color: #1c4b44;
    border-left: 4px solid #ffc30f;
    padding-left: 15px;
    margin-top: 15px;
    max-width: 90%;
}

/* ===== Responsive ===== */
@media (max-width: 991.98px) {
    .founder-img {
        border-right: none;
        border-bottom: 1px solid #eee;
        min-height: 250px;
    }
}

@media (max-width: 767.98px) {
    .rn-founder-title {
        font-size: 18px;
    }

    .rn-founder-subtitle {
        font-size: 12px;
    }

    .rn-founder-bio,
    .rn-founder-quote {
        font-size: 14px;
    }

    .founder-img {
        min-height: 200px;
    }
}


.upcoming-project {
    position: relative;
    height: 100vh;
    background: radial-gradient(circle at top, #444 0%, #111 40%, #000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: 'Arial', sans-serif;
    color: #d0d6db;
    overflow: hidden;
}

.upcoming-project::before {
    content: "";
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.35), transparent 70%);
}

.content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 20px;
}

.content h1 {
    font-size: 42px;
    letter-spacing: 0.6px;
    margin-bottom: 10px;
    color: #cfd6dc;
}

.content h2 {
    font-size: 42px;
    letter-spacing: 0.6px;
    margin-bottom: 20px;
    color: #cfd6dc;
}

.divider {
    width: 120px;
    height: 2px;
    background-color: #cfd6dc;
    margin: 0 auto 30px;
}

.description {
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 1.5px;
    margin-bottom: 35px;
    color: #bfc6cc;
    font-weight: 600;
}

.note {
    font-size: 16px;
    letter-spacing: 1px;
    color: #a9b0b6;
}

/* Mobile view */
@media (max-width: 768px) {
    .upcoming-project {
        height: auto;
        padding: 100px 15px 80px;
    }

    .content h1 {
        font-size: 28px;
        letter-spacing: 0.5px;
    }

    .content h2 {
        font-size: 34px;
        letter-spacing: 0.5px;
    }

    .description {
        font-size: 14px;
        line-height: 1.7;
        letter-spacing: 1px;
    }

    .note {
        font-size: 14px;
    }

    .divider {
        width: 80px;
        margin-bottom: 25px;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .content h1 {
        font-size: 24px;
    }

    .content h2 {
        font-size: 30px;
    }

    .description {
        font-size: 13px;
    }
}