body {
    margin: 0;
    padding: 0;
}

:root {
    --primary-font: 'Outfit', sans-serif;
    --paragraph-font: 'Jost', sans-serif;
    --secondary-font: 'Kanit', sans-serif;
    --nav-font: 'Montserrat', sans-serif;
    --primary-color: #c50606;
    --paragraph-color: #373737;
    --heading-color: #182333;
}

.request-btn {
    font-size: 15px;
    padding: 18px 16px;
    border-radius: 10px 20px 10px 20px;
    font-weight: 600;

    font-family: var(--primary-font);
    color: #fff;
    text-decoration: none;
    transition: all linear .3s;
    background:#e21b22;
}

.request-btn:hover {
    font-size: 15px;
    padding: 18px 25px;
    border-radius: 20px 10px 20px 10px;
    color: #fff;
    text-decoration: none;
}




/*pre-hesder style */
.pre-header {
    background: #e21b22;
    color: #fff;
    padding: 3px 0;
    font-size: 14px;
    line-height: 30px;
}

.pre-item-left a {
    font-size: 14px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-family: var(--nav-font);
    white-space: nowrap;

}

.pre-item-left i {
    color: White;
    font-size: 13px;
    margin-top: 2px;
}

.pre-item-left {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.pre-item-left p {
    margin: 0;
    font-size: 14px;
}

.dropdown-item {
    font-family: var(--nav-font);
    font-weight: 600;
    font-size: 13px;
}

.social-icon a {
    color: #fff;
    font-size: 16px;
    transition: 0.3s;
    padding-right: 10px;
}

/* .social-icon a:hover {
    color: #f8c200;
} */
.social-icon {
    display: flex;
    justify-content: flex-end;
}


/*navbar style */

.navbar {
    background-color: white;
    padding: 0;

}

.nav-item .nav-link {
    font-family: var(--nav-font);
    color: black;
    font-weight: 600;
    font-size: 13px;


}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

.btn-close:focus {
    outline: none;
    box-shadow: none;
}

.navbar-nav .nav-link {
    font-size: 13px;

}

.navbar-nav .nav-link.active {
    color: #e21b22;
}

.navbar-toggler {
    border: none;
    font-size: 16px;
}

/* Navbar links */
.navbar .nav-link {
    font-weight: 600;
    padding: 10px 15px;
    transition: color 0.3s ease;
    font-family: var(--nav-font);
    font-size: 13px;
    margin-right: 27px;
}

.navbar .nav-link:hover {
    color: #c50606;
}

/* Hover dropdown */
.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
    animation: fadeDown 0.3s ease;
}

/* Dropdown animation */
@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Dropdown menu style */
.dropdown-menu {
    border-radius: 8px;
    border: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}


/* .icon-btn {
    margin-left: 12px;
    position: relative;
}

.icon-btn img {
    width: 22px;
} */

/* .cart-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background: #e63946;
    color: #fff;
    font-size: 11px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    text-align: center;
    line-height: 18px;
    font-weight: 600;
}

.user-dropdown {
    position: relative;
} */

/* Dropdown menu */
.user-menu {
    position: absolute;
    top: 140%;
    right: 0;
    width: 180px;
    background: #fff;
    list-style: none;
    padding: 8px 0;
    margin: 0;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    z-index: 999;
}

/* Show on hover */
.user-dropdown:hover .user-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Menu links */
.user-menu li a {
    display: block;
    padding: 8px 15px;
    font-size: 14px;
    color: #333;
    text-decoration: none;
    transition: background 0.2s;
}

.user-menu li a:hover {
    background: #f5f5f5;
}

/* Divider */
.user-menu .divider {
    height: 1px;
    background: #eee;
    margin: 6px 0;
}

/* Logout color */
.user-menu .logout {
    color: #e63946;
}

/* Icons */
.icon-btn {
    margin-left: 12px;
    position: relative;
}

.icon-btn img {
    width: 22px;
}


.navbar-brand img {

    height: 70px;
}

.offcanvas-header img {

    height: 80px;
}

/*hero style */

.hero-wrapper {
    position: relative;
}

.hero-img {

    object-fit: cover;
}

/* Dark overlay */

.hero-content {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    z-index: 2;
}
.quote-form {
    background: rgba(0, 0, 0, 0.75);
    padding: 25px;
    border-radius: 15px;
    color: #fff;
    width:400px;
    margin: auto;
}
.quote-form select {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    border-radius: 10px;
}

.quote-form select option {
    color: #000;
}
.quote-form h3 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
    font-family: var(--primary-font);
}

.quote-form input,
.quote-form textarea {
    background: transparent;
    border: 1px solid #555;
    color: #fff;
    font-family: var(--paragraph-font);
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
    color: #ccc;
}

.quote-form button {
    border-radius: 25px;
    padding: 10px 30px;
}
.hero-title {
    font-size: 36px;
    font-weight: 700;
    font-family: var(--secondary-font);
    margin: 20px 0;
    color: #fff;
    text-shadow: 1px 2px 3px rgb(0 0 0 / 10%);
}

.welcome-text {
    font-size: 14px;
    letter-spacing: 2px;
    font-family: var(--secondary-font);


}

.hero-desc {
    max-width: 500px;
    font-weight: 500;
    font-family: var(--paragraph-font);
    font-size: 18px;
}


.quote {
    padding: 8px 10px;
    border: 2px solid white;
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-family: var(--nav-font);

    font-size: 14px;
    font-weight: 600;

}

.more {
    padding: 10px 16px;
    text-decoration: none;
    background-color:#c50606;
    font-weight: 500;
    font-family: var(--nav-font);
    color: white;
    font-size: 14px;
    font-weight: 600;
}


.service-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.service-card {
    position: relative;
    background: #fff;
    padding: 40px 25px;
    border-radius: 20px;
    text-align: center;
    overflow: hidden;
    transition: 0.4s;
    z-index: 1;
    box-shadow: 0 0 10px 0 #d1d1d1;
}
.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: linear-gradient(135deg, #ff0000 25%, transparent 25%);
    z-index: -1;
    transition: 0.4s;
}



/* ICON */
.service-card .icon img {
   width: 60px;
}

/* HOVER EFFECT */
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* BEFORE ANIMATION */
.service-card:hover::before {
    top: -20px;
    right: -20px;
    width: 250px;
    height: 250px;
}

/* TEXT HOVER COLOR CHANGE */
.service-card:hover h4,
.service-card:hover p,
.service-card:hover .icon {
   
}

/* TEXT STYLE */
.service-card h4 {
   
    margin-bottom: 10px;
    margin-top: 10px;
    font-family: var(--primary-font);
    font-size: 18px;
    font-weight: 600;
    color: #111; ;
}

.service-card p {
    font-size: 14px;
    color: #666;
    font-family: var(--paragraph-font);

    transition: 0.3s;
}


.why-us-section {
    padding: 80px 0;
   
    background-color: #e21b22;
}

/* Image */
.why-img img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}


.sub-title {
    color:white;
    font-weight: 600;
    letter-spacing: 1px;
    font-family: var(--primary-font);
    font-size: 24px;
}

.main-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
    color: yellow;
    font-family: var(--primary-font);
}

.why-info p {
    color: white;
    margin-bottom: 10px;
    font-weight: 500;
    font-family:  var(--paragraph-font);
}
.why-points {
    margin-top: 20px;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    padding: 12px 15px;
    border-radius: 10px;
    background: #f8f9fa;
    transition: 0.3s;
}

/* ICON */
.why-item .icon {
    font-size: 20px;
    color: #c50606;
    min-width: 30px;
}

/* TEXT */
.why-item p {
    margin: 0;
    color: #333;
    font-family: var(--paragraph-font);
    font-weight: 600;
}

/* HOVER EFFECT */
.why-item:hover {
    background-color: #c50606;
    color: #fff;
    transform: translateX(5px);
}

.why-item:hover p,
.why-item:hover .icon {
    color: #fff;
}
/* Responsive */
@media (max-width: 768px) {
  
}



.om-hero-area {
    padding: 60px 0;
    background: #ffffff;
}

/* Heading */
.om-hero-left h1 {
    font-size: 34px;
    color: #111;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: var(--primary-font);
}

/* Paragraph */
.om-subtext {
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
    font-family: var(--paragraph-font);
    font-size: 15px;
}

/* Item */
.om-item {
    display: flex;
    align-items: center;
    background: #f1f1f1;
    padding: 12px 15px;
    border-radius: 6px;
    margin-bottom: 15px;
    transition: 0.3s;
    font-family: var(--primary-font);
    font-weight: 600;
    font-size: 16px;
}

/* Icon */
.om-item i {
    background: #e60023;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    margin-right: 10px;
}

/* Hover */
.om-item:hover {
    background: #e60023;
}

.om-item:hover span {
    color: #fff;
}

.om-item:hover i {
    background: #fff;
    color: #e60023;
}

/* Image */
.om-hero-right img {
    max-width: 100%;
    border-radius: 50%;
    border: 5px solid #e60023;
    padding: 10px;
    background: #fff;
}

/* Mobile */
@media (max-width: 768px) {
    .om-hero-left h1 {
        font-size: 26px;
        text-align: center;
    }

    .om-subtext {
        text-align: center;
    }

    .om-hero-right {
        display: none;
    }
}


.om-counter-area {
    padding: 70px 0;
    background: #e21b22;
    color: #fff;
}

.om-counter-box {
    padding: 20px;
}

.om-counter-box h2 {
    font-size: 48px;
    font-weight: 700;
    
    margin-bottom: 10px;
    color: white;
    font-family: var(--primary-font);
}

.om-counter-box h4 {
    font-size: 20px;
    margin-bottom: 10px;
    font-family: var(--primary-font);
    color: white;
}

.om-counter-box p {
    color: white;
    font-size: 15px;
    max-width: 400px;
    margin: auto;
    font-family: var(--paragraph-font);
}

/* Mobile */
@media (max-width: 768px) {
    .om-counter-box h2 {
        font-size: 36px;
    }
}



.om-city-area {
    padding: 60px 0;
    background: #f9f9f9;
}

/* Heading */
.om-section-title {
    font-size: 34px;
    font-weight: 700;
    color: #111;
    font-family: var(--primary-font);
}

.om-section-sub {
    color: #666;
    margin-top: 10px;
}

/* List */
.om-city-list {
    list-style: none;
    padding: 0;
}

.om-city-list li a {
    text-decoration: none;
    color: #333;
    margin-bottom: 8px;
    display: block;
    width: 100%;
    font-family: var(--primary-font);
    font-weight: 600;
    text-align: center;
}

.om-city-list li:hover a {
    color:red;
}



.om-process-area {
    padding: 60px 0;
    background: #f9f9f9;
}

/* Box */
.om-process-box {
    padding: 20px;
    transition: 0.4s;
}

/* Image Circle */
.om-process-img {
    width: 180px;
    height: 180px;
    margin: auto;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    border: 5px solid #e60023;
    transition: 0.4s;
}

.om-process-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

/* Hover Effect */
.om-process-box:hover .om-process-img {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.om-process-box:hover .om-process-img img {
    transform: scale(1.1);
}

/* Text */
.om-process-box h4 {
    margin-top: 15px;
    font-size: 18px;
    font-weight: 600;
    color: #111;
    font-family: var(--primary-font);
}


.om-process-box p {
    font-size: 14px;
    color: #666;
    font-family: var(--paragraph-font);
}

/* Smooth underline effect */
.om-process-box:hover h4 {
    color: #e60023;
}

/* Mobile */
@media (max-width: 768px) {
    .om-process-img {
        width: 140px;
        height: 140px;
    }
}


.om-process-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px dashed #e60023;
    top: 0;
    left: 0;
    animation: spin 8s linear infinite;
    opacity: 0;
}

.om-process-box:hover .om-process-img::after {
    opacity: 1;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}


.om-review-area {
    padding: 40px 0;
    background: #ffffff;
}

/* Card */
.om-review-card {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 10px 0 #d1d1d1;
    transition: 0.3s;
}

.om-review-card:hover {
    transform: translateY(-5px);
}

/* Text */
.om-review-card p {
    font-size: 15px;
    color: #555;
    margin-bottom: 15px;
    font-family:var(--paragraph-font);
}

/* Name */
.om-review-card h4 {
    color: #111;
    font-size: 18px;
    margin-bottom: 5px;
    font-family: var(--primary-font);
}


.swiper-wrapper{
    height: 250px;
}

.swiper{
    padding: 5px !important;
}

.footer-section {
   background-color: #d3151b;

}

.footer-title {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--primary-font);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.8;
    color: white;
    font-family: var(--paragraph-font);
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 12px;
    font-size: 14px;
    transition: 0.3s;
    color: white;
    font-family: var(--paragraph-font);
}

.footer-links li:hover {
    color: white;
    padding-left: 5px;
    cursor: pointer;
}

.footer-contact i {
    color: #fafafa;
    margin-right: 10px;
}

.footer-img {
    position: relative;
    bottom: -40px;
}

.counter-item img {
    width: 40px;
    height: 40px;
}

.counter-info h2 {

    font-family: var(--primary-font);
    font-weight: 600;
    color: white;
}

.counter-infos h2 {

    font-family: var(--primary-font);
    font-weight: 600;
    color: #383838;
}

.counter-info p {

    font-family: var(--paragraph-font);
    font-size: 16px;
    font-weight: 600;
}

.about-info h4 {
    color: #111;
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 12px;
    font-family: var(--primary-font);
}
.section-title h2{
       font-size: 34px;
    font-weight: 700;
    color: #111;
    font-family: var(--primary-font);
}
.about-info p {
   font-family: var(--paragraph-font);
    font-size: 15px;
    color: #555;
}

.about-sections img {
    border-radius: 8px;
}

.services-section h4 {
    font-family: var(--primary-font);
    color: #1E3A8A;
    font-size: 26px;
    font-weight: 600;
}

.service-content p {
    font-family: var(--paragraph-font);
    color: var(--paragraph-color);
    font-size: 14px;
    font-weight: 400;
}


.services-section img {
    border-radius: 5px;
}

/* contact start */


.contact-banner {
    position: relative;
}

.contact-info {
    position: absolute;
    top: 50%;
    left: 50%;
    color: white;
    font-size: 22px;
    transform: translate(-50%, -50%);
    font-family: var(--primary-font);

}

.contact-area h2 {
    font-weight: 600;
    font-size: 35px;
    font-family: var(--primary-font);

}

.form-area {
    background-color:#c50606;
    padding-top: 20px;
    padding-right: 30px;
    padding-bottom: 50px;
    padding-left: 30px;
    font-family: var(--primary-font);
}

.form-area .form-control,
.form-area .form-select,
.form-area textarea {
    border-radius: 6px;
    height: 48px;
    font-size: 14px;
    padding: 10px 14px;
}

.form-area textarea {
    height: auto;
    resize: none;
}


.form-area ::placeholder {
    font-size: 13px;
    letter-spacing: 0.3px;
    color: #000;
    font-weight: 600;
    font-family: var(--primary-font);
}


.form-area .form-control:focus,
.form-area .form-select:focus,
.form-area textarea:focus {
    box-shadow: 0 0 0 0.15rem rgba(0, 0, 0, 0.08);
    color: #000;
    font-weight: 600;
}


.submit{
    color: white;
    background-color: #c50606;
    padding: 10px 18px;
    text-decoration: none;
}
.submit:hover{
    background-color: #c50606;
}
.form-area .btn-submit {
    padding: 10px 30px;
    font-size: 16px;
    border-radius: 8px;
    border: 1px solid white;
    color: white;
    font-family: var(--primary-font);

}

.card {
    border-radius: 8px;
}

.card-title {
    font-weight: 500;
    margin-bottom: 10px;
    font-size: 17px;
    color: #c50606;
    font-family: var(--primary-font);
}

.card-text {
    font-size: 14px;
    line-height: 1.6;
    font-family: var(--paragraph-font);
    font-weight: 600;
}


.gallery-item {
    overflow: hidden;
    border-radius: 10px;
}

.gallery-item img {
    transition: 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.whatsapp-btn {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background: #25D366;
    color: #fff;
    font-size: 22px;
    padding: 12px 15px;
    border-radius: 50%;
    z-index: 999;
}

.call-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #007bff;
    color: #fff;
    font-size: 20px;
    padding: 12px 15px;
    border-radius: 50%;
    z-index: 999;
}