@import url("https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&display=swap");
* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: "Archivo", sans-serif;
}
body {
    height: 100vh;
}
.bg-image {
    background-image: url("../images/herobg.jpg");
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    /* or specific height */
}
.bg-image-bread {
    background-image: url("../images/herobg.jpg");
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 40%;
    /* or specific height */
}
.raju {
    text-decoration: none;
    color: #222222;
}
.raju:hover {
    color: #1153b2;
}
.btn-custom {
    background-color: #1153b2;
}
.hero-btn {
    border-radius: 20px;
    background: #1153b2;
    padding: 7px 30px;
}
.hero-btn a {
    text-decoration: none;
}

.hero-btn:hover {
    background-color: #1153b2;
}
.nav-link {
    color: white;
}
.nav-link:hover {
    color: #ffa500 !important;
    /* Orange on hover */
}
.navbar-nav .nav-link.active {
    color: #ffa500 !important;
    /* Orange example */
    font-weight: bold;
}

.box {
    background-color: #f0ad4e;
    color: white;
    padding: 40px;
    text-align: center;
    border-radius: 8px;
    margin-bottom: 20px;
    cursor: pointer;
}
.contact-form {
    background-color: #fbfbfb;
    color: #222222;
}

.form-bg {
    background: url("https://images.pexels.com/photos/1595385/pexels-photo-1595385.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1")
        no-repeat center center/cover;
    position: relative;
    padding: 4rem 0;
    width: 100%;
}

.form-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1;
}

.form-section {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-container {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 1rem;
    max-width: 600px;
    color: #222222;
    backdrop-filter: blur(6px);
}

.form-control,
.btn {
    border-radius: 0.5rem;
}

.btn-primary-custom {
    background-color: #1153b2;
    color: white;
    border: none;
}

.btn-primary-custom:hover {
    background-color: #4074c0;
}

@media screen and (max-width: 768px) {
    .form-bg {
        padding: 2rem 0;
        height: auto;
    }
}
.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}

.my-float {
    margin-top: 16px;
}
footer {
    background-color: #fbfbfb;
    color: #222222;
}

footer a {
    color: #222222;
    transition: color 0.3s;
}

footer a:hover {
    color: #4074c0;
}
.import-box {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); */
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    text-align: center;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-primary {
    background-color: #1153b2;
    border-color: #1153b2;
}

.btn-primary:hover {
    background-color: #4074c0;
    border-color: #4074c0;
}
.info-section {
    padding: 100px 0;
    height: auto;
    display: flex;
    align-items: center;
}

.left-heading {
    font-size: 2rem;
    font-weight: 600;
    color: #000;
}

.right-content {
    font-size: 1rem;
    color: #333;
    line-height: 1.8;
}

.footer-guru {
    color: #c29663;
    font-weight: 600;
    margin-top: 30px;
}

.cororor {
    max-width: 1140px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.main-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #222;
}

.gold-line {
    width: 100%;
    height: 3px;
    background: #c9a063;
    max-width: 450px;
    margin-top: 0.5rem;
}

.swiper {
    width: 100%;
    height: 600px;
    /* Set fixed height */
}

.swiper-wrapper,
.swiper-slide {
    height: 100%;
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 10px;
}

.swiper-slide div {
    height: 100%;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.gypsum-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    text-align: justify;
    margin-bottom: 1.2rem;
}

.product-btns .btn {
    background-color: #1153b2;
    color: #fff;
    border: none;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
    transition: background 0.2s;
}

.product-btns .btn:hover {
    background-color: #4074c0;
}

@media (max-width: 768px) {
    .swiper {
        height: 250px;
    }

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

    .gold-line {
        display: none;
    }
}

.navbar-toggler-icon {
    filter: invert(1);
    /* turns black → white */
}
.box-1 {
    background: url("../images/box1.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.box-2 {
    background: url("../images/al-najm.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
