.theme_bg {
    background-color: #3675c5;
    padding: 0;
}
.theme_clr {
    color: #3675c5;
}

a.theme_bg {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

a.theme_bg:hover {
    transform: scale(1.05); /* slight zoom on hover */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); /* optional shadow for effect */
}

body {
    padding-top: 80px; /* adjust according to navbar height */
}

html {
    scroll-behavior: smooth;
}


/******************************************* header css **************************************************/

/* Toggler button */
.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
}

.navbar-toggler:hover,
.navbar-toggler:focus {
    border-color: #ffffff;
    box-shadow: none;
}

/* Hamburger icon white */
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255, 255, 255, 1%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/****************************************** banner section css *********************************/
.banner-section {
    position: relative;
}

.banner-image {
    position: relative;
    display: flex;
    align-items: center;
    /* vertically center content */
    justify-content: center;
    min-height: 600px;
    /* default desktop height */
    overflow: hidden;
}

.banner-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* cover entire banner area */
    z-index: 1;
}

/* Overlay */
.banner-overlay {
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

/* Banner Content */
.banner-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 2rem;
}

.banner-content h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.banner-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.banner-content a.btn {
    font-size: 1.2rem;
    padding: 0.75rem 1.5rem;
}

/************************************ Our  services section css ******************************/
.services-section .card {
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.services-section .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.services-section .service-icon i {
    display: inline-block;
}

/******************************************** Why Virdi Brothers Construction section css****************************/
.why-virdi-section h5 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.why-virdi-section i {
    flex-shrink: 0;
}

/******************************************** Regions We Serve section css************************************/

.regions-section .region-card {
    background-color: #fff;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.regions-section .region-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.regions-section i {
    transition: transform 0.3s;
}

.regions-section .region-card:hover i {
    transform: scale(1.2);
}

/********************************************** What Our Clients Say section css  *****************************************************/
.testimonials-section .testimonial-card {
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: default;
    height: 100%;
}

.testimonials-section .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.testimonials-section img {
    object-fit: cover;
}

/********************************************************* Ready to Start Your Project section css ********************************************************/
.enquiry-section h2 {
    font-size: 4.5rem;
}

.enquiry-section p {
    font-size: 1.1rem;
    color: #6c757d;
}

.enquiry-form input,
.enquiry-form textarea {
    border-radius: 8px;
    box-shadow: none;
    transition: box-shadow 0.3s, border-color 0.3s;
}

.enquiry-form input:focus,
.enquiry-form textarea:focus {
    border-color: #3675c5;
    box-shadow: 0 0 5px rgba(54, 117, 197, 0.3);
}

.enquiry-form button.btn {
    transition: transform 0.3s, box-shadow 0.3s;
}

.enquiry-form button.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
/****************************************************** Latest News & Insights section css ***************************************************/
.news-section .card {
    border: none;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.news-section .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.news-section .card-img-top {
    height: 200px;
    object-fit: cover;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

/**************************************************** Footer section css ******************************/
.footer-section .social-icons a {
    transition: color 0.3s, transform 0.3s;
}

.footer-section .social-icons a:hover {
    color: #3675c5;
    transform: scale(1.2);
}



