/* ===== Root Variables ===== */
:root {
    --primary-red: #b3211e;
    --font-family: 'Poppins', sans-serif;
}

/* ===== Global Styles ===== */
body {
    font-family: var(--font-family);
    margin: 0;
    padding: 0;
}

/* ===== Top Bar ===== */
.top-bar {
    background-color: var(--primary-red);
    font-size: 14px;
}

.contact-item i {
    margin-right: 5px;
    color: white; /* Keep top-bar icons white */
}

.top-bar a {
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.top-bar a:hover {
    transform: translateY(-2px) scale(1.05);
}

/* ===== Social Icons ===== */
.social-icon {
    background-color: white;       /* White circle */
    color: var(--primary-red);     /* Icon takes primary color */
    border-radius: 50%;            /* Circle */
    padding: 5px 8px;              /* Size */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.social-icon i{
    color: var(--primary-red);
}
.social-icon:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* ===== Navbar ===== */
.navbar {
    transition: all 0.4s ease;
    font-weight: 500;
}

.nav-link {
    color: #333 !important;
    position: relative;
    margin: 0 10px;
    transition: color 0.3s ease;
    font-size: 15px;
}

/* Hover underline animation */
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-red);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-red) !important;
}

/* ===== Search Box ===== */
.search-box {
    position: relative;
}

.search-box input {
    padding-right: 35px;
    border: 1px solid #ddd;
    font-size: 14px;
    width: 200px;
}

.search-box i {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-red);
    cursor: pointer;
}

/* ===== Offcanvas (Mobile Menu) ===== */
.offcanvas {
    width: 280px !important;
}

.offcanvas .nav-link {
    font-size: 18px;
    border-bottom: 1px solid #f8f9fa;
    padding: 10px 0;
}

/* Mobile Contact Info */
.mobile-contact .contact-item i {
    color: var(--primary-red);
    margin-right: 5px;
}

/* Mobile Search */
.search-mobile input {
    width: 100%;
}

/* ===== Modern Toggle ===== */
.modern-toggle span {
    color: var(--primary-red);
    font-size: 45px;
}
img.logo {
    width: 270px;
}
/* ===== Responsive Adjustments ===== */
@media (max-width: 991px) {
    .search-desktop {
        display: none; /* Hide desktop search on mobile */
    }
}
.footer-section {
    background-color: #1a0b5a; /* Navy Blue Base */
    color: white;
    font-family: Arial, sans-serif;
}

.footer-heading {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-text {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Social Media Circular Icons */
.social-circle-link {
    width: 38px;
    height: 38px;
    background: white; /* Clean White Circles */
    color: #1a0b5a;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.4s ease-in-out;
}

.social-circle-link:hover {
    background: #b3211e; /* Brand Red */
    color: white;
    transform: rotate(360deg); /* Smooth spin animation */
}

/* Contact Circle Icons (Equal & Symmetrical) */
.contact-circle {
    width: 35px;
    height: 35px;
    min-width: 35px;
    border: 1.5px solid #b3211e; /* Red outline */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: 0.3s ease;
}

.contact-row:hover .contact-circle {
    background: #b3211e;
    box-shadow: 0 0 10px rgba(179, 33, 30, 0.5);
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #b3211e;
    padding-left: 5px;
}

.footer-hr {
    border-top: 2px solid #b3211e; /* Brand Red Line */
    opacity: 1;
}

.copyright-text {
    font-size: 0.85rem;
    opacity: 0.9;
}
/**********Hero Section*************/
/* Hero Item Styling */
.hero-item {
    height: 90vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.text-danger-custom {
    color: #ff4d4d;
    background: linear-gradient(to right, #fff, #ff4d4d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.btn-danger-custom {
    background-color: #96191c00;
    color: white;
    border: 1px solid;
    border: 1px solid #ff5a5a;
    padding: 10px 30px;
    transition: 0.3s;
}

.btn-danger-custom:hover {
    background-color: white;
    color: var(--brand-red);
    transform: translateY(-3px);
}

.hero-slider .owl-dots {
    position: absolute;
    bottom: 40px; 
    width: 100%;
    text-align: center;
    z-index: 10;
}

.hero-slider .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    background: #f8f9fa !important;
    margin: 0 6px;
    border-radius: 20px;
    display: block;
    transition: all 0.4s ease;
}

.hero-slider .owl-dots .owl-dot.active span {
    background: #f8f9fa !important;
    width: 35px; /* Attractive Pill Shape */
    box-shadow: 0 0 15px rgba(248, 246, 246, 0.7);
}

.hero-slider .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
    transition: 0.3s;
}

.hero-slider .owl-nav button:hover {
    background: var(--brand-red) !important;
    border-color: var(--brand-red) !important;
}

.hero-slider .owl-nav .owl-prev { left: 30px; }
.hero-slider .owl-nav .owl-next { right: 30px; }

/* Animation Controls */
.owl-animate-text {
    opacity: 0;
    transform: translateY(30px);
}

.owl-item.active .owl-animate-text {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
}

/* Responsive Fixes */
@media (max-width: 768px) {
    .hero-item { height: 70vh; }
    .display-3 { font-size: 2.4rem; }
    .hero-slider .owl-nav { display: none; } 
    .hero-slider .owl-dots { bottom: 20px; }
}
.category-parallax-section {
    background-color: #ffffff;
    overflow: hidden;
}

.navy-blue-text { color: #1a0b5a; }

.ls-2 { letter-spacing: 2px; }

.title-line {
    width: 80px;
    height: 4px;
    background: #b3211e;
    margin-top: 15px;
}

.white-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    margin: 15px 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); 
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    border: 1px solid #f0f0f0;
}

.img-holder {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.img-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.white-card:hover {
    transform: translateY(-15px); /* Floating effect */
    box-shadow: 0 25px 50px rgba(26, 11, 90, 0.15);
    border-color: #b3211e;
}

.white-card:hover .img-holder img {
    transform: scale(1.1);
}

.card-body {
    padding: 25px;
    text-align: left;
}

.card-body h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a0b5a;
    margin-bottom: 10px;
}

.card-body p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.card-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(179, 33, 30, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s;
}

.white-card:hover .card-overlay { opacity: 1; }

.view-btn {
    color: #fff;
    text-decoration: none;
    border: 2px solid #fff;
    padding: 8px 20px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.innovate-section {
    background: #fdfdfd; 
    position: relative;
    overflow: hidden;
}

/* Glass Card Effect */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    padding: 30px;
    border-radius: 20px;
    border-left: 5px solid var(--primary-red);
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

/* Image Wrapper & Animation */
.image-wrapper {
    position: relative;
    padding: 20px;
}

.main-img-holder img {
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(26, 11, 90, 0.15);
    z-index: 2;
    position: relative;
    transition: transform 0.3s ease;
}

.shape-bg {
    position: absolute;
    top: -10%;
    right: -5%;
    width: 80%;
    height: 90%;
    background: var(--navy-blue);
    opacity: 0.05;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: 1;
}

.floating-img {
    animation: floating 4s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Button Styling */
.btn-red-solid {
    background-color: var(--primary-red);
    color: white;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    box-shadow: 0 10px 20px rgba(179, 33, 30, 0.2);
    transition: 0.3s;
}

.btn-red-solid:hover {
    background-color: var(--navy-blue);
    color: rgb(112, 6, 6);
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(26, 11, 90, 0.2);
}
.premium-product-section { background-color: var(--bg-light); }
.modern-product-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 10px;
    display: flex;
    flex-direction: column; /* Stack vertically */
    height: auto; /* No fixed height */
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.modern-product-card:hover {
    border-color: var(--primary-red);
    box-shadow: 0 20px 40px rgba(26, 11, 90, 0.08);
}

/* Flexible Image Container */
.img-wrapper-flex {
    width: 100%;
    padding: 20px;
    background: #f8f8f8;
    border-radius: 15px;
    text-align: center;
}

.responsive-product-img {
    max-width: 100%;
    height: auto; /* Flexible image height */
    object-fit: contain;
}

/* Typography */
.category-pill {
    color: var(--primary-red);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 20px;
    display: block;
}

.product-title {
    color: var(--navy-blue);
    font-weight: 700;
    margin: 10px 0;
}

.product-desc {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.specs-grid {
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.specs-grid li { font-size: 12px; font-weight: 600; color: #444; }
.specs-grid i { color: var(--primary-red); margin-right: 5px; }

/* The "One" Main Button */
.btn-more-info {
    display: flex;
    align-items: center;
    width: fit-content;
    border: 1px solid;
    justify-content: space-between;
    background: var(--navy-blue);
    color: #bf0f0f !important;
    padding: 14px 25px;
    border-radius: 12px;
    text-decoration: none !important;
    font-weight: 600;
    transition: 0.3s;
}

.btn-more-info:hover {
    background: var(--primary-red);
    transform: translateY(-3px);
    color: white!important;
}

/* Nav Buttons Fix */
.slider-nav-btn {
    width: 50px;
    height: 50px;
    border: none;
    background: white;
    border-radius: 50%;
    color: var(--navy-blue);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-left: 10px;
    transition: 0.3s;
}

.slider-nav-btn:hover { background: var(--primary-red); color: white; }
.services-carousel-section {
    background:#97a2a321;
    padding: 80px 0;
}

/* Service Card with Image */
.service-clean-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #f1f1f1;
    transition: 0.3s ease;
}

.service-clean-card:hover {
    box-shadow: 0 15px 30px rgba(0,0,0,0.07);
    transform: translateY(-5px);
    border-color: var(--primary-red);
}

.service-img-holder {
    width: 100%;
    height: 180px; /* Fixed height for image consistency */
    overflow: hidden;
}

.service-img-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.service-clean-card:hover .service-img-holder img {
    transform: scale(1.1);
}

.service-body {
    padding: 25px;
    text-align: left;
}

.service-body h4 {
    color: var(--navy-blue);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-body p {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.6;
}

.service-btn-link {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 10px;
}

/* View All Button Styling */
.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--navy-blue);
    color: #b3211e !important;
    padding: 10px 35px;
    border-radius: 50px;
    text-decoration: none !important;
    font-weight: 600;
    transition: 0.4s;
    border: 2px solid;
}

.btn-view-all:hover {
    background: transparent;
    color: var(--navy-blue) !important;
    box-shadow: 0 10px 20px rgba(26, 11, 90, 0.15);
}

.btn-view-all i {
    font-size: 18px;
}
.counter-section {
    background-color: #1a0b5a; /* Aapka Footer Blue Color */
    padding: 70px 0;
}

.counter-box {
    padding: 10px;
    text-align: center;
}

/* Icon - Primary Red Color */
.counter-box i {
    font-size: 3rem;
    color: #b3211e;
    display: block;
    margin-bottom: 15px;
    background: #ffffff;
    width: 96px;
    padding: 10px 2px;
    border-radius: 50%;
}

/* Text - Pure White */
.counter-value {
    font-size: 3.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 5px;
    display: block;
}

.counter-box p {
    font-size: 1rem;
    font-weight: 500;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .counter-value { font-size: 2.2rem; }
    .counter-box i { font-size: 2.2rem; }
}
.counter-section {
    background-color: #1a0b5a; /* Footer Blue */
    padding: 70px 0;
}

.counter-box {
    padding: 10px;
    text-align: center; 
}

.counter-box i {
    font-size: 3rem;
    color: #b3211e;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    width: 90px;  /* Circle size */
    height: 90px; /* Circle size */
    margin: 0 auto 20px; 
    border-radius: 50%;
    transition: 0.3s ease;
}

.counter-value {
    font-size: 3.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 5px;
    display: block;
}

.counter-box p {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.counter-box:hover i {
    transform: scale(1.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .counter-value { font-size: 2.2rem; }
    .counter-box i { 
        font-size: 2rem; 
        width: 70px; 
        height: 70px; 
    }
}

.testimonial-section {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 50px 0;
}

/* Card Styling */
.testimonial-card {
    background: #f2f3f3c2;
    border-radius: 15px;
    padding: 60px 25px 30px;
    text-align: center;
    position: relative;
    margin-top: 70px;
    transition: 0.4s;
}

/* Client Image Overlapping */
.client-img-wrapper {
    width: 110px;
    height: 110px;
    position: absolute;
    top: -55px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #ffffff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.client-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Text & Stars */
.client-name {
    color: var(--navy-blue);
    font-weight: 700;
    margin-bottom: 10px;
}

.client-feedback {
    font-size: 14px;
    color: #666;
    font-style: italic;
    line-height: 1.6;
}

.star-rating i {
    color: #ffc107; /* Gold Color */
    font-size: 14px;
}

/* Owl Dots Styling */

.testimonial-slider .owl-dots .owl-dot.active span {
    background: var(--primary-red) !important;
    width: 25px;
}

/* Text Outline for White */
.text-outline-white {
    color: transparent;
    -webkit-text-stroke: 1px #fff;
}

  /* Finishing touches for the exact look */
  .custom-card-bg {
    background: linear-gradient(135deg, #f8f9fa 0%, #1a0b5a80 100%);
    border-radius: 30px;
    overflow: hidden;
}

.feature-card {
    background: #ffffff;
    border-radius: 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    min-height: 160px;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.icon-box {
    font-size: 2.5rem; /* Replace with <img> tag for exact icons */
}

.feature-card p {
    font-size: 0.9rem;
    color: #333;
    line-height: 1.2;
}

.person-img-wrapper img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
}
.faq-header {
    background: linear-gradient(90deg, #c0c0c0, #e0e0e0);
    border-radius: 20px;
}

.faq-body-container {
    background-color: #dfdfdf;
    border-radius: 25px;
}

.custom-accordion .accordion-item {
    background-color: #ffffff;
    border: none;
    border-radius: 15px !important;
    overflow: hidden;
}

.custom-accordion .accordion-button {
    background-color: #ffffff;
    color: #000;
    font-weight: 600;
    padding: 1.25rem;
    box-shadow: none !important;
}

.custom-accordion .accordion-button::after {
    content: '+';
    background-image: none;
    background-color: #1a1a4b;
    color: white;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 1.2rem;
}

.custom-accordion .accordion-button:not(.collapsed)::after {
    content: '-';
    background-color: #910808; 
    transform: none;
}

.custom-accordion .accordion-button:not(.collapsed) {
    color: #000;
    background-color: #fff;
}

.custom-accordion .accordion-body {
    font-size: 0.9rem;
    color: #555;
    padding-top: 0;
}

.enquiry-section {
    overflow: hidden;
}

.cta-card {
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.4s ease;
}

/* Hover effect for a premium feel */
.cta-card:hover {
    filter: brightness(1.1);
}

.btn-custom {
    background-color: #b3211e; /* Bright Red from image */
    border: none;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.btn-custom:hover {
    background-color: #3f0202;
    transform: scale(1.05);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    
    .bs-icon-box {
    width: 40px!important;
    height: 40px!important;
    background: #050a30;
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px!important;
    margin-right: 7px!important;
    flex-shrink: 0;
    transition: 0.3s;
}
    .modern-toggle span {

    font-size: 34px;
}
img.logo {
    width: 205px;
}
    .white-card {
        margin: 0;
    }
    .image-wrapper {
        position: relative;
        padding: 0px; 
    }
    .cta-card h2 {
        font-size: 1.5rem;
    }
    .services-carousel-section {
        padding: 50px 0;
    }
}
/*********Breadcome********/
.breadcrumb-hero-section {
    background: linear-gradient(rgba(10, 17, 61, 0.8), rgba(5, 8, 29, 0.8)), url('../img/breadcome-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
    position: relative;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.breadcrumb-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.br-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s;
}

.br-item a:hover {
    color: #ff00ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
}

.br-sep {
    color: #00d4ff;
    font-weight: bold;
}

.br-item.active {
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .breadcrumb-hero-section {
        padding: 50px 0;
    }
    .breadcrumb-title {
        font-size: 1.8rem;
    }
}

.about-section p {
    font-size: 1.05rem;
    line-height: 1.6;
}


.image-wrapper img {
    width: 100%;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.vision-mission-section {
    background-color: #f9f9f9;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
}

.section-subtitle {
    max-width: 800px;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
}

.vm-card {
    padding: 40px;
    border-radius: 20px;
    height: 100%;
    text-align: left;
    color: #ffffff;
    transition: transform 0.3s ease;
}

.vm-card:hover {
    transform: translateY(-10px);
}

.vm-card h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.vm-card p {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.9;
}

.vision-bg, .mission-bg {
    background: linear-gradient(135deg, #ff4500 0%, #a0005a 50%, #201dbd 100%);
}

@media (max-width: 768px) {
    .inquiry-card {
padding: 23px !important;
    
}
    .section-title {
        font-size: 2rem;
    }
    .vm-card {
        padding: 30px;
    }
}
   /* Premium Light Theme - Service Details */
    .service-details-section {
        background-color: #ffffff;
        padding: 20px 0;
        font-family: 'Segoe UI', Roboto, sans-serif;
    }

    .short-description {
        color: #666;
        border-left: 5px solid #b31919;
        padding-left: 20px;
        margin-bottom: 30px;
    }

    .main-service-img {
        width: 100%;
        border-radius: 20px;
        box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        margin-bottom: 40px;
    }
    .inquiry-card {
        border: 1px solid #eee;
        border-radius: 25px;
        padding: 35px;
        background: #ffffff;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }

    .form-title {
        color: #050a30;
        font-weight: 700;
        margin-bottom: 25px;
        position: relative;
    }

    .form-title::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 0;
        width: 50px;
        height: 3px;
        background: #b31919;
    }

    .custom-field {
        background: #fdfdfd;
        border: 1px solid #e0e0e0;
        padding: 12px 15px;
        border-radius: 10px;
        margin-bottom: 15px;
        transition: 0.3s;
    }

    .custom-field:focus {
        border-color: #b31919;
        box-shadow: 0 0 0 3px rgba(179, 25, 25, 0.1);
    }

    .submit-btn-premium {
        background: #b31919;
        color: white;
        border: none;
        padding: 15px;
        border-radius: 10px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        width: 100%;
        margin-top: 10px;
        transition: 0.3s;
    }

    .submit-btn-premium:hover {
        background: #050a30;
        transform: translateY(-3px);
    }

    /* More Services Thumbnail Styling */
    .more-services-box {
        margin-top: 40px;
    }

    .thumb-card {
        display: flex;
        align-items: center;
        text-decoration: none;
        padding: 15px;
        border-radius: 15px;
        margin-bottom: 15px;
        background: #fbfbfb;
        border: 1px solid #f1f1f1;
        transition: 0.3s;
    }

    .thumb-card:hover {
        border-color: #b31919;
        transform: translateX(5px);
    }

    .thumb-img {
        width: 70px;
        height: 70px;
        object-fit: cover;
        border-radius: 10px;
        margin-right: 15px;
    }

    .thumb-info h6 {
        margin: 0;
        color: #050a30;
        font-weight: 700;
    }
    /* Contact Section - Clean Light Theme */
    .contact-section {
        background-color: #fdfdfd;
        padding: 30px 0;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    /* Left Side: Contact Details Card */
    .contact-details-wrapper {
        background: #ffffff;
        padding: 20px;
        border-radius: 25px;
        border: 1px solid #f1f1f1;
        box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    }

    .contact-header-title {
        color: #050a30;
        font-weight: 800;
        font-size: 2.2rem;
        margin-bottom: 20px;
    }

    .contact-info-list {
        margin-top: 40px;
    }

    .contact-info-card {
        display: flex;
        align-items: center;
        margin-bottom: 30px;
        padding: 20px;
        border-radius: 15px;
        background: #f8f9fa;
        transition: 0.3s;
    }

    .contact-info-card:hover {
        background: #fff;
        box-shadow: 0 10px 20px rgba(179, 25, 25, 0.08);
        border-color: #b31919;
        transform: translateX(10px);
    }

    .bs-icon-box {
        width: 55px;
        height: 55px;
        background: #050a30;
        color: #fff;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        margin-right: 20px;
        flex-shrink: 0;
        transition: 0.3s;
    }

    .contact-info-card:hover .bs-icon-box {
        background: #b31919;
    }

    .info-content h6 {
        color: #050a30;
        font-weight: 700;
        margin-bottom: 3px;
    }

    .info-content p {
        color: #666;
        margin: 0;
        font-size: 0.95rem;
    }

    /* Right Side: Contact Form */
    .contact-form-card {
        background: #ffffff;
        padding: 20px;
        border-radius: 25px;
        box-shadow: 0 20px 50px rgba(5, 10, 48, 0.08);
        border-top: 5px solid #b31919;
    }

    .form-control-custom {
        padding: 14px 18px;
        border-radius: 12px;
        border: 1px solid #e0e0e0;
        background-color: #fcfcfc;
        margin-bottom: 15px;
        transition: 0.3s;
    }

    .form-control-custom:focus {
        border-color: #b31919;
        box-shadow: 0 0 0 4px rgba(179, 25, 25, 0.1);
        background-color: #fff;
    }

    .submit-btn-premium {
        background-color: #050a30;
        color: #fff;
        padding: 16px;
        border-radius: 12px;
        font-weight: 700;
        width: 100%;
        border: none;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: 0.4s;
    }

    .submit-btn-premium:hover {
        background-color: #b31919;
        transform: translateY(-3px);
    }
