* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0055a3;
    --secondary-color: #00a8e8;
    --accent-color: #00d4ff;
    --dark-color: #001f3f;
    --light-bg: #f8f9fa;
    --gradient-primary: linear-gradient(135deg, #0055a3 0%, #00a8e8 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f7fa;
    color: #333;
    overflow-x: hidden;
    padding-top: 70px;
}

/* NAVBAR STYLING */
.navbar {
    background: var(--gradient-primary) !important;
    box-shadow: 0 4px 15px rgba(0, 85, 163, 0.2);
    padding: 0.75rem 0;
}

.navbar-brand {
    font-weight: 700 !important;
    font-size: 1.5rem !important;
    letter-spacing: -0.5px;
    color: #fff !important;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    color: #00d4ff !important;
    transform: scale(1.05);
}

.nav-link {
    font-weight: 600;
    color: #fff !important;
    position: relative;
    transition: all 0.3s ease;
    margin: 0 10px;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #00d4ff;
    transition: width 0.3s ease;
}

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

.nav-link:hover {
    color: #00d4ff !important;
}

/* CAROUSEL */
.carousel-item img {
    height: 60vh;
    object-fit: cover;
}

.carousel-caption {
    background: rgba(0, 31, 63, 0.85);
    border-radius: 1rem;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.carousel-caption h2 {
    font-weight: 800;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem;
}

.carousel-caption p {
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.6;
}

.btn-primary {
    background: linear-gradient(135deg, #00a8e8 0%, #00d4ff 100%);
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 168, 232, 0.4);
    background: linear-gradient(135deg, #00d4ff 0%, #00a8e8 100%);
}

/* SERVICES SECTION */
#services {
    background: linear-gradient(180deg, #f8f9fa 0%, #e8f4f8 100%);
    padding: 5rem 0;
}

#services h2 {
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

#services h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.card {
    border: none;
    border-radius: 1.25rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: #fff;
    position: relative;
    height: 100%;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 1;
}

.card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(0, 85, 163, 0.15);
}

.card:hover::before {
    transform: scaleX(1);
}

.card:hover .card-img-top {
    transform: scale(1.1);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.card-body {
    padding: 1.75rem;
}

.card-title {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.card:hover .card-title {
    color: var(--secondary-color);
}

.card-text {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ABOUT SECTION */
#about {
    background: #fff;
    padding: 5rem 0;
}

#about h2 {
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

#about h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

#about img {
    box-shadow: 0 10px 40px rgba(0, 85, 163, 0.15);
    transition: all 0.4s ease;
    border: 4px solid #f0f4f8;
}

#about img:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 50px rgba(0, 85, 163, 0.25);
}

#about .lead {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

#about .lead b {
    color: var(--primary-color);
    font-weight: 700;
}

/* CONTACT SECTION */
#contact {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 5rem 0;
    color: #fff;
}

#contact h2 {
    color: #fff;
    font-weight: 800;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

#contact h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: #00d4ff;
    border-radius: 2px;
}

.lead {
    font-weight: 500;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

#contact .lead a {
    color: #00d4ff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

#contact .lead a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00d4ff;
    transition: width 0.3s ease;
}

#contact .lead a:hover {
    color: #fff;
}

#contact .lead a:hover::after {
    width: 100%;
}

iframe {
    border-radius: 1rem !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

iframe:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* FOOTER */
footer {
    background: var(--dark-color) !important;
    color: #fff;
    padding: 2rem 0;
    text-align: center;
    border-top: 4px solid var(--secondary-color);
}

footer p {
    margin: 0;
    font-weight: 500;
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }

    .navbar-brand {
        font-size: 1.2rem !important;
    }

    .carousel-item img {
        height: 40vh;
    }

    .carousel-caption {
        padding: 1.5rem;
    }

    .carousel-caption h2 {
        font-size: 1.5rem;
    }

    .carousel-caption p {
        font-size: 0.9rem;
    }

    #services,
    #about,
    #contact {
        padding: 3rem 0;
    }

    .card {
        margin-bottom: 1rem;
    }

    .card-img-top {
        height: 150px;
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1rem !important;
    }

    .nav-link {
        margin: 5px 0 !important;
        font-size: 0.9rem;
    }

    .carousel-item img {
        height: 30vh;
    }

    .carousel-caption {
        padding: 1rem;
    }

    .carousel-caption h2 {
        font-size: 1.2rem;
    }

    .carousel-caption p {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    .btn-lg {
        padding: 0.5rem 1.5rem !important;
        font-size: 0.85rem !important;
    }

    .lead {
        font-size: 0.95rem;
    }
}

/* SCROLL ANIMATIONS */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== NEW FEATURES STYLING ==================== */

/* PULSE ANIMATION FOR EMERGENCY BADGE */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(220, 53, 69, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0);
    }
}

/* TRUST & STATS SECTION */
.stat-box {
    padding: 2rem 1rem;
    transition: all 0.3s ease;
    border-radius: 1rem;
}

.stat-box:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2.5rem 1rem;
}

.stat-box h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-box p {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

/* PRICING SECTION */
.card-header {
    border-radius: 0.5rem 0.5rem 0 0 !important;
    font-weight: 600;
}

.card-header h4 {
    font-size: 1.1rem;
    margin-bottom: 0;
}

.card-header i {
    font-size: 1.2rem;
}

.table-sm tbody tr {
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s ease;
}

.table-sm tbody tr:hover {
    background-color: #f8f9fa !important;
}

.table-borderless td {
    padding: 0.75rem 0;
}

/* FAQ SECTION */
.accordion-button {
    padding: 1.25rem;
    font-size: 1rem;
    background-color: #f8f9fa;
    border: none;
    margin-bottom: 0.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background-color: #e7f1ff;
    color: var(--primary-color);
    box-shadow: none;
}

.accordion-button:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.25rem rgba(0, 85, 163, 0.25);
}

.accordion-body {
    padding: 1.5rem;
    color: #555;
    line-height: 1.8;
    background-color: #fafbfc;
}

.accordion-item {
    border: 1px solid #e9ecef;
    border-radius: 0.5rem;
    margin-bottom: 0.5rem;
    overflow: hidden;
}

.accordion-item:first-child {
    border-radius: 0.5rem;
}

.accordion-item:last-child {
    margin-bottom: 0;
}

/* TESTIMONIAL CAROUSEL */
.carousel-item {
    min-height: 300px;
    display: flex;
    align-items: center;
}

.carousel-item .card {
    border-radius: 1.5rem;
    transition: all 0.3s ease;
}

.carousel-item .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 85, 163, 0.15) !important;
}

.carousel-item .blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 1.5rem;
    margin-left: 1rem;
}

.carousel-item .blockquote-footer {
    color: #666;
    margin-top: 1rem;
    font-size: 0.95rem;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

/* WHATSAPP WIDGET */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #20ba5a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    border: 3px solid white;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
    color: white;
    text-decoration: none;
}

.whatsapp-btn:active {
    transform: scale(0.95);
}

/* RESPONSIVE PRICING TABLES */
@media (max-width: 768px) {
    .stat-box h3 {
        font-size: 2rem;
    }

    .table-sm {
        font-size: 0.9rem;
    }

    .table-sm thead {
        font-size: 0.85rem;
    }

    .carousel-item {
        min-height: 250px;
    }

    .whatsapp-widget {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .accordion-button {
        padding: 1rem;
        font-size: 0.95rem;
    }

    .accordion-body {
        padding: 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .stat-box {
        padding: 1.5rem 0.5rem;
    }

    .stat-box h3 {
        font-size: 1.75rem;
    }

    .stat-box p {
        font-size: 0.95rem;
    }

    .card-header h4 {
        font-size: 1rem;
    }

    .table-sm {
        font-size: 0.85rem;
    }

    .carousel-item .card {
        margin: 0 10px;
    }

    .carousel-item .blockquote {
        padding-left: 1rem;
        margin-left: 0;
    }

    .carousel-item .blockquote p {
        font-size: 1rem;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }

    .whatsapp-btn {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .accordion-item {
        margin-bottom: 0.25rem;
    }
}

.card {
    animation: fadeInUp 0.6s ease-out;
}

/* BUTTON STYLES */
.btn {
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn:focus {
    box-shadow: 0 0 0 0.25rem rgba(0, 168, 232, 0.25);
}

/* FORM STYLES */
.form-control {
    border: 2px solid #e0e0e0;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.25rem rgba(0, 168, 232, 0.1);
    color: #333;
}

.form-label {
    font-weight: 600;
    color: var(--primary-color);
}

/* UTILITY CLASSES */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-light {
    background-color: var(--light-bg) !important;
}

/* SHADOWS */
.shadow-sm {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
}

.shadow {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1) !important;
}

/* REVIEWS SECTION */
#reviews {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

#reviews h2 {
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
}

.review-card {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 1rem;
    background: #fff;
    border: 1px solid #f0f0f0;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(0, 85, 163, 0.12);
    border-color: var(--secondary-color);
}

.review-card .card-body {
    padding: 1.5rem;
}

.review-card .card-text {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.review-card strong {
    color: var(--primary-color);
    font-weight: 700;
}

.review-card .text-warning {
    color: #ffc107 !important;
}

.review-card i {
    margin-right: 2px;
    font-size: 0.9rem;
}
    /* outline: none; */
}

::placeholder{
    /* color: #fff;
    font-family: Arial; */
}

.btnn{
    width: 50%;
    margin: 15px auto;
    /* height: 40px; */
    padding: 5px;
    background: #1171ba;
    border: none;
    font-size: 1.5rem;
    border-radius: 10px;
    cursor: pointer;
    color: #fff;
    transition: 0.4s ease;
}
.btnn:hover{
    background: #fff;
    color: #1171ba;
}
/* .btnn a{
    text-decoration: none;
    color: #000;
    font-weight: bold;
} */

.link{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.2rem;
    padding: 10px 0;
    text-align: center;
}

.form .link a{
    text-decoration: none;
    color: #1171ba;
}

.liw{
font-size: 1.5rem;
  display: flex;
  align-items: center;
  margin: auto;
  padding: 0 15px;
}

.icons a{
    text-decoration: none;
    color: #fff;
}
.icons ion-icon{
    color: #fff;
    font-size: 30px;
    padding-left: 14px;
    padding-top: 5px;
    transition: 0.3s ease;
}
.icons ion-icon:hover{
    color: #1171ba;
}

footer {
    /* height: 70px; */
    background-color: red;
    padding: 10px 0;
    color: black;
    opacity: 0.5;
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;

}

footer div {
    margin: auto;
    width: 100%;
}

footer p {
    background-color: black;
    color: white;

}

/* ----Media Queries ----  */

@media only screen and (max-width: 1050px){
    navbar {
        flex-wrap: wrap;
        flex-direction: column;
        height: 25%;
        justify-content: start;
    }

    section {
        flex-direction: column;
        width: 95%;
        margin: auto;
    }

    .contentLeft {
        margin: 50px auto;
        width: 90%;
        padding: 25px;
    }
}