html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.container {
    max-width: 1100px;
}

.text-primary {
    color: #007bff;
}

.rounded-circle {
    border: 3px solid #007bff;
}

.shadow {
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

/*Style for menu start*/
.navbar {
    background: linear-gradient(135deg, #004d99, #0099cc); /* Professional blue gradient */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

    .navbar .navbar-brand,
    .navbar .nav-link {
        color: white !important;
        font-weight: 600;
    }

        .navbar .nav-link:hover {
            color: #ffcc00 !important; /* Gold on hover */
        }

.navbar-toggler {
    border: 1px solid white;
}

.navbar-toggler-icon {
    filter: invert(1); /* Makes toggle icon white */
}
/*Style for menu end*/




.footer {
    background: linear-gradient(135deg, #00264d, #004d99);
    color: white;
    padding: 50px 0;
    font-family: 'Poppins', sans-serif;
}

    .footer h5 {
        font-weight: bold;
        color: #ffcc00; /* Gold color */
        text-transform: uppercase;
        margin-bottom: 15px;
    }

    .footer p, .footer a {
        color: #dddddd;
        font-size: 14px;
    }

    .footer a {
        text-decoration: none;
        transition: color 0.3s ease-in-out;
    }

        .footer a:hover {
            color: #ffcc00;
            text-decoration: underline;
        }

.social-icon {
    font-size: 20px;
    margin: 0 10px;
    color: #ffcc00;
    transition: transform 0.3s;
}

    .social-icon:hover {
        color: white;
        transform: scale(1.1);
    }

.footer .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer .col-md-4 {
    padding: 10px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .footer .col-md-4 {
        text-align: center;
        margin-bottom: 20px;
    }
}




/* Hero Section */
/*.hero {
    background: url('/images/homepage.webp') no-repeat center center/cover;
    padding: 100px 0;
    color: white;
    text-align: center;
}

    .hero h1 {
        font-size: 3rem;
        font-weight: bold;
    }

    .hero p {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }

    .hero .btn {
        padding: 12px 25px;
        font-size: 1.1rem;
        border-radius: 30px;
    }*/

/* Services Section */
.services {
    padding: 60px 0;
    background: #f8f9fa;
}

    .services h2 {
        margin-bottom: 30px;
        font-weight: bold;
    }

.card {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

    .card:hover {
        transform: translateY(-5px);
    }

    .card img {
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
    }

/* Testimonials */
.testimonials {
    background: #00264d;
    color: white;
    padding: 60px 0;
}

    .testimonials h2 {
        margin-bottom: 30px;
        font-weight: bold;
    }

.testimonial-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    margin: 10px 0;
}

    .testimonial-box p {
        font-style: italic;
    }

    .testimonial-box h5 {
        margin-top: 15px;
    }

/* CTA */
.cta {
    background: linear-gradient(135deg, #ffcc00, #ff9900);
    padding: 50px 0;
    color: white;
}

    .cta h2 {
        font-size: 2rem;
        font-weight: bold;
    }

    .cta .btn {
        font-size: 1.2rem;
        padding: 12px 30px;
        border-radius: 30px;
        background: #00264d;
        color: white;
    }

        .cta .btn:hover {
            background: #001a33;
        }

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .services .col-md-4, .testimonials .col-md-6 {
        margin-bottom: 20px;
    }
}


.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/images/homepage.webp') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 100px 20px;
    font-family: 'Poppins', sans-serif;
}

    .hero-section h1 {
        font-size: 3rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    }

    .hero-section p {
        font-size: 1.5rem;
        font-weight: 300;
        max-width: 800px;
        margin: 20px auto;
        line-height: 1.6;
        opacity: 0.9;
    }

    .hero-section .btn {
        font-size: 1.2rem;
        font-weight: 600;
        padding: 12px 30px;
        border-radius: 30px;
        transition: 0.3s ease-in-out;
    }

    .hero-section .btn-primary {
        background: #007bff;
        border: none;
    }

        .hero-section .btn-primary:hover {
            background: #0056b3;
        }




.btn {
    font-size: 1.2rem;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 30px;
    transition: all 0.3s ease-in-out;
}

.btn-primary {
    background-color: #007bff;
    color: white;
    border: none;
}

    .btn-primary:hover {
        background-color: #0056b3; /* Darker shade of blue */
        color: white !important; /* Ensures text remains visible */
        text-shadow: none;
    }




.qr-container {
    position: relative;
    width: 60px;
}

.qr-container img {
    width: 100%;
    transition: transform 0.3s ease-in-out;
}

.qr-container:hover img {
    transform: scale(2);
    z-index: 10;
}

