:root {
    --primary-color: #0b1f3b; /* Navy */
    --primary-dark: #050914;
    --secondary-color: #6c757d; /* Grey */
    --accent-color: #c0c7d6; /* Silver / Steel */
    --light-color: #f5f5f7;
    --text-color: #111827;
    --section-padding: 80px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    background-color: #f2f4f8;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5 {
    font-family: 'Montserrat', sans-serif;
}

/* Topbar */
.topbar {
    background: linear-gradient(90deg, var(--primary-color), #1f365f);
    color: #fff;
    font-size: 0.85rem;
}

.topbar a {
    color: #ffffff;
    text-decoration: none;
}

.topbar a:hover {
    text-decoration: underline;
}

.topbar-item i {
    margin-right: 5px;
}

.topbar-location i {
    margin-right: 6px;
}

/* Navbar */
.custom-navbar {
    background: radial-gradient(circle at top left, #1b3258 0%, #050914 60%);
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.navbar-brand {
    font-weight: 700;
    letter-spacing: 0.5px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-main {
    font-size: 1.35rem;
    text-transform: uppercase;
}

.logo-sub {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #a8b3cc;
}

.logo-img{
    width: 200px;
}

.navbar-nav .nav-link {
    font-weight: 500;
    margin: 0 0.4rem;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0.1rem;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ffffff, var(--accent-color));
    transition: width 0.25s ease-in-out;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

.nav-call-btn {
    border-radius: 999px;
    font-weight: 600;
}

.navbar-toggler {
    border-radius: 50%;
    padding: 0.3rem 0.5rem;
}

/* Hero Section */
.hero-section {
    position: relative;
}

.hero-img {
    object-fit: cover;
    height: 75vh;
    min-height: 450px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
  background: linear-gradient(
    120deg,
    rgba(5, 9, 20, 0.6),
    rgba(11, 31, 59, 0.5),
    rgba(0, 0, 0, 0.35)
);

    z-index: 1;
}

.carousel-caption {
    z-index: 2;
    max-width: 650px;
    padding-bottom: 3rem;
}

.hero-subtitle {
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-color);
}

.hero-title {
    font-size: 2.6rem;
    font-weight: 700;
    margin: 0.5rem 0;
}

.hero-desc {
    font-size: 1rem;
    margin-bottom: 1.2rem;
}

.hero-buttons .btn {
    padding-inline: 1.6rem;
}

.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 999px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: drop-shadow(0 0 4px rgba(0,0,0,0.8));
}

/* Sections */
.section-padding {
    padding-top: var(--section-padding);
    padding-bottom: var(--section-padding);
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.section-title span {
    color: var(--primary-color);
}

.section-lead {
    color: #4b5563;
}

/* About Section */
.about-badge .badge-text {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: rgba(11,31,59,0.1);
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 500;
}

.about-badge i {
    margin-right: 6px;
}

.icon-box {
    background: #ffffff;
    border-radius: 18px;
    padding: 1rem;
    box-shadow: 0 10px 25px rgba(15,23,42,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.icon-box i {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.icon-box h5 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.icon-box p {
    font-size: 0.85rem;
    color: #6b7280;
}

.icon-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(15,23,42,0.12);
}

.contact-inline i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* About grid cards */
.about-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto auto;
    gap: 1rem;
}

.about-card {
    border-radius: 20px;
    padding: 1.2rem 1.4rem;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.about-card h4 {
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
}

.about-card p {
    font-size: 0.85rem;
    opacity: 0.9;
}

.about-card.primary {
    background: linear-gradient(135deg, #0b1f3b, #304a7a);
}

.about-card.secondary {
    background: linear-gradient(135deg, #4b5563, #9ca3af);
}

.about-card.tertiary {
    background: linear-gradient(135deg, #1f2937, #6b7280);
}

.about-card::after {
    content: "";
    position: absolute;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(255,255,255,0.09);
    top: -20px;
    right: -20px;
}

.about-stats {
    border-radius: 18px;
    border: 1px dashed rgba(11,31,59,0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.2rem 1rem;
    background: #f9fafb;
    text-align: center;
}

.about-stats h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.about-stats h3 span {
    font-size: 1rem;
    font-weight: 500;
}

.about-stats p {
    font-size: 0.9rem;
    color: #6b7280;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #0b1f3b, #1f3258);
    border-color: #0b1f3b;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #132850, #020617);
    border-color: #020617;
}

/* Services */
.service-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 1.5rem 1.4rem 1.3rem;
    box-shadow: 0 10px 22px rgba(15,23,42,0.06);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(11,31,59,0.15), transparent);
    top: -40px;
    right: -40px;
}

.service-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(11,31,59,0.08);
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.service-icon i {
    font-size: 1.4rem;
    transition: transform .6s ease;
}

.service-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.35rem;
}

.service-card p {
    font-size: 0.9rem;
    color: #6b7280;
}

.service-list {
    list-style: none;
    padding-left: 0;
    margin: 0.6rem 0 0.7rem;
    font-size: 0.86rem;
}

.service-list li::before {
    content: "• ";
    color: var(--primary-color);
    margin-right: 3px;
}

.service-link {
    margin-top: auto;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    color: var(--primary-color);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 32px rgba(15,23,42,0.18);
    transition: all 0.22s ease;
}


/* Service card image */
.service-img-wrapper {
    width: 100%;
    height: 311px;
    overflow: hidden;
    border-radius: 14px;
    margin-bottom: 1rem;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.service-card:hover .service-img {
    transform: scale(1.08);
}


.service-card:hover .service-icon i {
    transform: rotate(360deg);
}


/* Service Button Styling */
.service-link {
    display: inline-block;
    margin-top: 12px;
    padding: 10px 22px;
    background: linear-gradient(135deg, #0b1f3b, #1f3f77);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 40px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(11, 31, 59, 0.25);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

/* Hover Effect */
.service-link:hover {
    background: linear-gradient(135deg, #1a3765, #2e548f);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(11, 31, 59, 0.35);
}

/* Optional: Glow Animation on Hover */
.service-link::after {
    content: "";
    position: absolute;
    top: 0;
    left: -70%;
    width: 60%;
    height: 100%;
    background: rgba(255,255,255,0.22);
    transform: skewX(-25deg);
    transition: 0.4s;
}

.service-link:hover::after {
    left: 130%;
}



/* Why Choose Us & Achievements */
.bg-gradient-dark {
    background: radial-gradient(circle at top left, #1e293b 0%, #020617 70%);
}

.text-light-50 {
    color: rgba(249,250,251,0.7);
}

.why-card {
    background: rgba(15,23,42,0.6);
    border-radius: 16px;
    padding: 1rem;
    margin-bottom: 0.6rem;
    transition: transform 0.2s ease, background 0.2s ease;
}

.why-card i {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.why-card h5 {
    font-size: 1rem;
}

.why-card p {
    font-size: 0.85rem;
    color: #d1d5db;
}

.why-card:hover {
    transform: translateY(-4px);
    background: rgba(15,23,42,0.85);
}

.achievements-wrap {
    background: rgba(15,23,42,0.8);
    border-radius: 20px;
    padding: 1.8rem 1.5rem;
    box-shadow: 0 20px 40px rgba(15,23,42,0.4);
}

.achievement-card {
    background: rgba(15,23,42,0.95);
    border-radius: 18px;
    padding: 1rem;
    text-align: center;
    border: 1px solid rgba(148,163,184,0.4);
}

.achievement-card h3 {
    font-size: 1.7rem;
    color: var(--accent-color);
}

.achievement-card p {
    font-size: 0.85rem;
    color: #e5e7eb;
}

/* Animations - in view */
[data-animate] {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

[data-animate].in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Gallery */
#gallery-grid .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
}

.gallery-thumb {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(0,0,0,0.7), rgba(15,23,42,0.2));
    opacity: 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 0.8rem 1rem;
    color: #fff;
    transition: opacity 0.3s ease;
}

.gallery-overlay span {
    font-size: 0.9rem;
}

.gallery-overlay i {
    font-size: 1.2rem;
}

.gallery-item:hover .gallery-thumb {
    transform: scale(1.05);
    filter: brightness(0.9);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Lightbox: fixed-size popup with full image visible */
.lightbox-modal {
    max-width: 720px;          /* controls the overall width of popup */
    margin: 0 auto;
}

.lightbox-modal .modal-content {
    border-radius: 18px;
    overflow: hidden;
}

.lightbox-image-wrap {
    width: 100%;
    height: 70vh;              /* fixed height of popup area */
    max-height: 520px;         /* you can tweak this */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.lightbox-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;       /* show full image without cropping */
    display: block;
}


/* Contact */
.contact-info .contact-item {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.contact-info i {
    font-size: 1.4rem;
    color: var(--primary-color);
}

.contact-info h5 {
    margin-bottom: 0.1rem;
}

.contact-info p,
.contact-info a {
    font-size: 0.92rem;
    color: #4b5563;
    text-decoration: none;
}

.contact-info a:hover {
    color: var(--primary-color);
}

.contact-form-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 1.8rem;
    box-shadow: 0 10px 30px rgba(15,23,42,0.1);
}

.contact-form-card .form-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #4b5563;
}

.contact-form-card .form-control,
.contact-form-card .form-select {
    border-radius: 10px;
    border-color: #d1d5db;
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.15rem rgba(11,31,59,0.15);
}

/* Map Section */
.map-section iframe {
    display: block;
}

/* Footer */
.footer-section {
    background: #020617;
    color: #cbd5f5;
    border-top: 1px solid rgba(148,163,184,0.3);
}

.footer-logo {
    font-size: 1.3rem;
    font-weight: 700;
}

.footer-logo span {
    color: var(--accent-color);
}

.footer-text {
    font-size: 0.9rem;
    color: #9ca3af;
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(148,163,184,0.15);
    border-radius: 50%;
    margin-right: 0.4rem;
    color: #e5e7eb;
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

.footer-socials a:hover {
    background: var(--accent-color);
    color: #020617;
}

.footer-title {
    font-size: 1rem;
    margin-bottom: 0.7rem;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.4rem;
}

.footer-links a,
.footer-contact a {
    font-size: 0.9rem;
    color: #9ca3af;
    text-decoration: none;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #e5e7eb;
}

.footer-contact i {
    margin-right: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(31,41,55,0.7);
    color: #9ca3af;
    font-size: 0.85rem;
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    right: 18px;
    bottom: 22px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.float-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: 0 0 0 0 rgba(16,185,129,0.6);
    animation: pulse 1.6s infinite;
}

.whatsapp-btn {
    background: #25D366;
}

.call-btn {
    background: #0b1f3b;
    animation-delay: 0.4s;
}

.float-btn:hover {
    transform: translateY(-2px);
}

/* Pulse animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(192,199,214,0.7);
    }
    70% {
        box-shadow: 0 0 0 18px rgba(192,199,214,0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(192,199,214,0);
    }
}

/* Responsive */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-desc {
        font-size: 0.95rem;
    }

    .custom-navbar {
        padding-inline: 1rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .hero-img {
        height: 65vh;
    }
}

@media (max-width: 767.98px) {
    .topbar {
        font-size: 0.8rem;
    }

    .section-padding {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .gallery-thumb {
        height: 190px;
    }

    .floating-buttons {
        right: 12px;
        bottom: 16px;
    }

    .float-btn {
        width: 48px;
        height: 48px;
        font-size: 1.35rem;
    }
	.cu-m-ds-nn{
		display:none!important;
	}
	.cu-tx-cntr{
		justify-content:center;
	}
}
#callme {
        position: fixed;
        right: 15px;
        top: 190px;
        width: 70px;
        height: 70px;
        cursor: pointer;
      
        z-index: 99990;
    }
    #callme #callmeMain {
        -moz-border-radius: 50% !important;
        -webkit-border-radius: 50% !important;
        border-radius: 50% !important;
        -moz-background-clip: padding;
        -webkit-background-clip: padding-box;
        background-clip: padding-box;
        background-color: rgb(40 167 69);
        width: 60px;
        height: 60px;
        -webkit-animation: zcwmini2 1.5s 0s ease-out infinite;
        -moz-animation: zcwmini2 1.5s 0s ease-out infinite;
        animation: zcwmini2 1.5s 0s ease-out infinite;
    }
    #callme #callmeMain:before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        top: -6px;
        left: -6px;
        background-image: url(https://ss.zadarma.com/callbackWidget/images/mini.png);
        background-repeat: no-repeat;
        background-position: center center;
        -webkit-animation: zcwphone2 1.5s linear infinite;
        -moz-animation: zcwphone2 1.5s linear infinite;
        animation: zcwphone2 1.5s linear infinite;
    }
    @-webkit-keyframes zcwphone {
        0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
        50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
        100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    }
    @-moz-keyframes zcwphone {
        0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
        50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
        100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    }
    @keyframes zcwphone {
        0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
        50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
        100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    }
    @-webkit-keyframes zcwphone2 {
        0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
        50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
        100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    }
    @-moz-keyframes zcwphone2 {
        0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
        50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
        100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    }
    @keyframes zcwphone2 {
        0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
        50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
        100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    }
    @-webkit-keyframes zcwmini {
        0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
        10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
        100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
    }
    @-moz-keyframes zcwmini {
        0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
        10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
        100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
    }
    @keyframes zcwmini {
        0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
        10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
        100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
    }
    @-webkit-keyframes zcwmini2 {
        0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
        10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
        100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
    }
    @-moz-keyframes zcwmini2 {
        0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
        10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
        100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
    }
    @keyframes zcwmini2 {
        0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
        10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
        100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
    }
@media (max-width: 575.98px) {
    .carousel-caption {
        padding: 1.5rem;
    }

    .hero-title {
        font-size: 1.7rem;
    }

    .hero-buttons .btn {
        padding-inline: 1.2rem;
        font-size: 0.85rem;
    }

    .contact-form-card {
        padding: 1.3rem;
    }
}
@media (max-width: 374px) 
{
	.cu-lg-wdth{
		width: 188px;
	}
}
