@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
/* --- Header & Layout --- */

body {
    font-family: "Roboto", sans-serif !important;
    overflow-x: hidden !important;
}

:root {
    --brown-color: #93290a;
    --brick-red: #B22222;
    /* Matches the Deep Red in the logo */
    --charcoal: #333333;
    --light-clay: #fdf5f2;
}

.brown_color {
    color: var(--brown-color);
}

.bg_color {
    background-color: var(--brown-color);
}

.template__header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.logo_website {
    height: 50px;
    /* Adjust based on your logo size */
    width: auto;
}

.template__header ul li {
    padding: 0px 20px !important;
}

/* --- Brand Text Animation --- */
.animation-box {
    border-left: 2px solid #ccc;
    padding-left: 15px;
    margin-left: 15px;
    height: 40px;
    overflow: hidden;
}

.carousel-indicators [data-bs-target] {
    width: 26px !important;
    height: 26px !important;
    border-radius: 100px !important;
}

.carousel-item img {
    height: 230px !important;
}

/* about */
.about_imgs {
    width: 100%;
    /* Animation apply kara */
    animation: upDownFloat 8s ease-in-out infinite;
}

/* Animation definition */
@keyframes upDownFloat {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
        /* 20px var gelyasarkhe vatel */
    }

    100% {
        transform: translateY(0px);
    }
}

/* nd of about */

/* --- Navigation Desktop --- */
.template__nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.template__nav-item a {
    text-decoration: none;
    color: #333;
    padding: 10px 15px;
    font-weight: 500;
    transition: color 0.3s;
}

.template__nav-item a:hover,
.template__nav-item a.active {
    color: #93290a;
    font-weight: bold !important;
    /* bluecolor */
}

/*  */
.dual-bg-animate {
    background-image: url(../images/wall-01.png);
    background-size: 100% 100%;
}

/* --- Mobile Menu (Hamburger) --- */
.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #333;
    transition: all 0.3s ease-in-out;
}

/* footer */
.footer-section {
    background-color: #222222;
    /* डार्क ग्रे बॅकग्राउंड */
    color: #ffffff;
    padding: 60px 0 20px 0;
}

.footer-logo img {
    max-width: 250px;
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 8px;
    /* font-size: 0.95rem; */
    color: #cccccc;
}

.contact-info a {
    color: #cccccc;
    text-decoration: none;
    transition: 0.3s;
}

.contact-info a:hover {
    color: #ffffff;
}

.social-icons {
    margin-top: 25px;
}

.social-icons a {
    color: #ffffff;
    background-color: transparent;
    border: 1px solid #ffffff;
    width: 35px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 10px;
    font-size: 1rem;
    transition: 0.3s;
    text-decoration: none;
}

.social-icons a:hover {
    background-color: #ffffff;
    color: #222222;
}

.map-container {
    border-radius: 4px;
    overflow: hidden;
    height: 250px;
}

.copyright-bar {
    border-top: 1px solid #333333;
    margin-top: 40px;
    padding-top: 20px;
    /* font-size: 0.85rem; */
    color: #cccccc;
}

/* Floating Contact Us Button */
.floating-contact {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #cccccc;
    color: #333;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.floating-contact i {
    margin-right: 8px;
}

/* end of footer */

/* why choose */
.feature-item {
    transition: all 0.3s ease;
    /* इफेक्ट स्मूथ होण्यासाठी */
    cursor: pointer;
}

/* माऊस नेल्यावर होणारा बदल (Hover) */
.feature-item:hover {
    transform: translateY(-10px);
    /* कार्ड १० पिक्सेल वर उचलले जाईल */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2) !important;
    /* सावली वाढेल */
    filter: brightness(1.1);
    /* रंग थोडा ब्राईट होईल */
}

/* आयकॉन अ‍ॅनिमेशन */
.feature-item:hover i {
    transform: scale(1.2);
    transition: transform 0.3s ease;
}

/* end */

/* contact */
/* Custom Brick Red Color */
.bg-brick {
    background-color: #C04126 !important;
}

.btn-brick {
    background-color: #C04126;
    color: white;
    border: none;
    padding: 10px 40px;
    font-weight: 600;
}

.btn-brick:hover {
    background-color: #a0351f;
    color: white;
}

.contact-card {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: none;
}

.form-control {
    border-radius: 0;
    padding: 12px;
    border: 1px solid #ced4da;
}

.form-control:focus {
    box-shadow: none;
    border-color: #C04126;
}

.info-section {
    padding: 60px 40px;
}

/* Matching the icon spacing in your image */
.contact-detail-item {
    margin-top: 2rem;
}

/* end contact */

/* process */

/* Header Styling */
.process-header h1 {
    font-weight: 800;
    /* font-size: 3rem; */
    line-height: 1;
}

.arrow-icon {
    width: 50px;
    height: 50px;
    border: 1px solid #000;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

/* Card Name Styling (Dark Section) */
.card-name-box {
    background-color: #5a5a5a;
    color: white;
    min-height: 180px;
    transition: all 0.3s ease;
    border: none;
}

.card-name-box:hover {
    background-color: #444;
    transform: translateY(-5px);
}

/* Detail Section Styling */
.detail-card {
    border-left: 5px solid #5a5a5a;
    border-top: 0;
    border-right: 0;
    border-bottom: 0;
    background: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.step-tag {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888;
}

/* end process */
.bricks_all_photos {
    background-image: url(../images/Bricks.webp);
    background-attachment: fixed;
    background-size: cover;
    width: 100vw;
    height: 500px;
}

/*  */
.Dimensions {
    background: #ffffff24;
    padding: 10px;
    width: 67px !important;
    border-radius: 50px !important;

    /* Animation add kela aahe */
    animation: blink-bg 1.5s infinite ease-in-out;
}


/* Blinking Animation chi definition */
@keyframes blink-bg {
    0% {
        background-color: #ffffff24;
    }

    50% {
        background-color: #ffffff80;
    }

    100% {
        background-color: #ffffff24;
    }
}

.brand-title {
    color: var(--charcoal);
    font-weight: 800;
    /* text-transform: uppercase; */
    letter-spacing: 1px;
}

.title-underline {
    width: 60px;
    height: 4px;
    background-color: var(--brick-red);
    margin: 15px auto;
}

/* Dimension Card Styling */
.dimension-card {
    border: 2px solid transparent;
    transition: all 0.3s ease;
    background-image: url(../images/redbricks.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    border-radius: 20px;
}

.dimension-card:hover {
    border-color: var(--brick-red);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(178, 34, 34, 0.1);
}

.icon-container {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.text-white2 {
    color: whitesmoke !important;
}

.size-text {
    color: #dcd8d8;
    font-weight: 700;
}

.table-custom-header {
    background-color: #5a5a5a !important;
    color: white !important;
}

/* Table Styling */
.table-custom-header {
    background-color: var(--charcoal) !important;
    color: white !important;
}

.badge-precision {
    background-color: var(--brick-red);
}

.badge1 {
    font-size: 15px !important;
    color: white;
}

.badge-market {
    background-color: var(--charcoal);
}

/* Process Section Styling */
.process-card {
    background-color: var(--charcoal);
    color: white;
    border-bottom: 5px solid var(--brick-red);
    transition: background 0.3s;
}

.process-card:hover {
    background-color: #222;
}

.process-card h3 {
    color: #fff;
    border-left: 3px solid var(--brick-red);
    padding-left: 15px;
}

/*  */

.gallery-title {
    font-weight: 800;
    /* font-size: 2.5rem; */
    margin-bottom: 40px;
}

/* Gallery Item Styling */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    /* Rounded corners like your sample */
    cursor: pointer;
    margin-bottom: 24px;
}

.gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Dark Overlay - Hidden by default */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    /* Dark background */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    /* Hidden */
    transition: opacity 0.4s ease;
    color: white;
    padding: 20px;
}

/* Icon Circle Styling */
.icon-circle {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: var(--brick-red);
}

.gallery-text {
    font-weight: 700;
    font-size: 1.2rem;
    text-align: center;
    text-transform: uppercase;
}

/* Hover States */
.gallery-item:hover .gallery-overlay {
    opacity: 1;
    /* Show overlay */
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
    /* Slight zoom effect */
}

/*  */
.about-bg-wrapper {
    position: relative;
    overflow: hidden;
    /* Image container chya baher janar nahi */
}

.about-bg-wrapper::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 500px;
    /* Tumchi size */
    height: 400px;
    /* Image chi height andajane */
    background-image: url('../images/brick\ wall-01.png');
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: contain;
    z-index: -1;
    /* Text chya mage janyasathi */

    /* Animation suru kara */
    animation: floatImage 4s ease-in-out infinite;
}

/* Var-Khali honyasathi Animation */
@keyframes floatImage {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
        /* 20px var gelyasarkhe vatel */
    }

    100% {
        transform: translateY(0px);
    }
}


/* --- Responsive Media Queries --- */
@media (max-width: 991px) {
    .hamburger {
        display: block;
    }

    .template__nav {
        position: absolute;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    }

    .template__nav.active {
        left: 0;
    }

    .template__nav-item {
        margin: 15px 0;
    }
}

@media (min-width: 991px) {
    .logo_website {
        height: 90px;
        /* Adjust based on your logo size */
        width: auto;
    }

    .carousel-item img {
        height: 600px !important;
    }

}

/*  */

.typewriter-text {
  display: inline-block;
  overflow: hidden; /* Ensures the content is not revealed until the animation */
  border-right: .15em solid #7b3f00; /* The typewriter cursor color (adjust to your brown) */
  white-space: nowrap; /* Keeps the content on a single line */
  margin: 0 auto; 
  /* letter-spacing: .1em;  */
  
  /* 1st animation: typing
     2nd animation: blinking cursor
     'infinite' makes it loop forever 
  */
  animation: 
    typing 4s steps(16, end) infinite,
    blink-caret .75s step-end infinite;
}

/* The typing effect */
@keyframes typing {
  0% { width: 0 }
  40% { width: 100% } /* Finished typing at 40% mark */
  60% { width: 100% } /* Pause while fully typed */
  90% { width: 0 }    /* Quickly "delete" back to start */
  100% { width: 0 }
}

/* The typewriter cursor effect */
@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: #7b3f00; } /* Matches your brown_color */
}

html {
    /* Isse click karne par section header ke niche rahega */
    scroll-padding-top: 100px; 
    
    /* Isse scroll smooth hoga, jhatke se nahi jayega */
    scroll-behavior: smooth;
}

