/* Navbar Styles */
.navbar {
    background-color: #ffffff !important; /* White background */
    border-bottom: 1px solid #e9ecef; /* Light border */
    box-shadow: 0 2px 4px rgba(0,0,0,0.1); /* Subtle shadow */
}

.navbar-brand {
    font-weight: bold;
    color: #dc3545 !important; /* Red color for brand */
}

.navbar-brand:hover {
    color: #c82333 !important; /* Darker red on hover */
}

.nav-link {
    color: #495057 !important; /* Dark gray for links */
    transition: color 0.3s ease; /* Smooth transition */
}

.nav-link:hover {
    color: #dc3545 !important; /* Red on hover */
}

.btn-danger {
    background-color: #dc3545;
    border-color: #dc3545;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.btn-danger:hover {
    background-color: #c82333;
    border-color: #c82333;
}

/* Dropdown Styles */
.dropdown-menu {
    border: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: #dc3545;
}


/* HEADER */
.header {
    background: linear-gradient(90deg, #0b1b38, #1a2f5a);
    padding: 10px 0;
}
.nav-link {
    margin-left: 20px;
    font-size: 17px;
}

/* HERO SECTION */
.hero {
    height: 90vh;
    background: url("images/hero-image.avif?auto=format&w=1400&q=80") center/cover no-repeat;
    position: relative;
}
.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(2px);
    background: rgba(0, 0, 0, 0.5);
}
.hero-box {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.08);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

/* ABOUT SECTION */
.image-frame img {
    border-radius: 15px;
    transition: 0.4s;
}
.image-frame img:hover {
    transform: scale(1.03);
}

/* SERVICES ALTERNATE LAYOUT */
.service-row {
    margin-bottom: 60px;
}
.service-text {
    flex: 1;
    padding: 20px 30px;
}
.service-img {
    flex: 1;
}
.service-img img {
    width: 100%;
    border-radius: 20px;
    transition: 0.3s;
}
.service-img img:hover {
    transform: scale(1.04);
}

/* FAQ SECTION */
.faq {
    background-color: #f8f9fa;
    
}

.faq h2 {
    color: #223a60;
    
}

.accordion-item {
    
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
}

.accordion-button {
    background-color: #ffffff;
    color: #495057;
    font-weight: 600;
    border: none;
    
    font-size: 18px;
    border-radius: 10px !important;
}

.accordion-button:not(.collapsed) {
    background-color: #dc3545;
    color: #ffffff;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-body {
    background-color: #ffffff;
    color: #6c757d;
    font-size: 16px;
    line-height: 1.6;
    padding: 20px 30px;
}

/* REVIEWS SECTION */
.reviews {
    background-color: #ffffff;
    padding: 80px 0;
}

.reviews h2 {
    color: #223a60;
    margin-bottom: 50px;
}

.review-card {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px 30px;
    background: #f8f9fa;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.review-stars {
    font-size: 24px;
}

.review-text {
    font-size: 18px;
    font-style: italic;
    color: #495057;
}

.review-name {
    color: #223a60;
    margin-bottom: 5px;
}

/* Carousel Controls */
.carousel-control-prev, .carousel-control-next {
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.3);
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    margin: 0 10px;
}

.carousel-control-prev-icon, .carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

/* BLOG SECTION */
.blog {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.blog h2 {
    color: #223a60;
    margin-bottom: 50px;
}

.blog-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.blog-card img {
    height: 200px;
    object-fit: cover;
}

.blog-card .card-title {
    color: #223a60;
}

.blog-card .btn {
    transition: all 0.3s ease;
}

.blog-card .btn:hover {
    background-color: #dc3545;
    border-color: #dc3545;
}

/* CONTACT SECTION */
.contact {
    background: linear-gradient(135deg, #223a60, #0c1830);
}

/* FORM */
input, textarea {
    border-radius: 12px !important;
}

/* ANIMATIONS */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Apply animations */
.hero-box {
    animation: fadeInUp 1s ease-out 0.5s both;
}

.about-section .row > div:first-child {
    animation: fadeInLeft 1s ease-out 1s both;
}

.about-section .row > div:last-child {
    animation: fadeInRight 1s ease-out 1.2s both;
}

.services h2 {
    animation: fadeInUp 1s ease-out 1.5s both;
}

.service-row:nth-child(2) {
    animation: fadeInLeft 1s ease-out 1.7s both;
}

.service-row:nth-child(3) {
    animation: fadeInRight 1s ease-out 1.9s both;
}

.service-row:nth-child(4) {
    animation: fadeInLeft 1s ease-out 2.1s both;
}

.faq {
    animation: fadeInUp 1s ease-out 2.3s both;
}

.reviews {
    animation: fadeInUp 1s ease-out 2.5s both;
}

.blog {
    animation: fadeInUp 1s ease-out 0.5s both;
}

.contact {
    animation: zoomIn 1s ease-out 2s both;
}

.footer {
    animation: fadeInUp 1s ease-out 1s both;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .service-row {
        flex-direction: column !important;
    }
}






.about-hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/about-image.avif') center/cover;
    color: #fff;
    padding: 120px 20px;
    text-align: center;
}

.about-hero h1 {
    font-size: 48px;
    margin: 0;
    font-weight: 700;
}

.about-hero p {
    font-size: 18px;
    margin-top: 10px;
    opacity: 0.8;
}

.about-content {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}

.about-section {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 18px rgba(0,0,0,0.1);
    padding: 40px;
    margin-bottom: 30px;
}

.about-section h2 {
    color: #d32f2f;
    font-size: 32px;
    margin-bottom: 20px;
    text-align: center;
}

.about-section h3 {
    color: #333;
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.about-section p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.stats-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 60px 20px;
    text-align: center;
    border-radius: 15px;
    margin: 40px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item h4 {
    font-size: 36px;
    margin-bottom: 10px;
    font-weight: 700;
}

.stat-item p {
    font-size: 16px;
    opacity: 0.9;
}






    

.values-section {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 18px rgba(0,0,0,0.1);
    padding: 40px;
    margin-bottom: 30px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.value-item {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.value-item i {
    font-size: 48px;
    color: #d32f2f;
    margin-bottom: 15px;
}

.value-item h4 {
    color: #333;
    margin-bottom: 10px;
}

.cta-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 60px 20px;
    text-align: center;
    border-radius: 15px;
    margin: 40px 0;
}

.cta-section h3 {
    color: #d32f2f;
    margin-bottom: 15px;
}

.cta-section p {
    color: #555;
    margin-bottom: 20px;
    font-size: 18px;
}

.btn-custom {
    background: #d32f2f;
    color: #fff;
    border: none;
    padding: 15px 40px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

.btn-custom:hover {
    background: #b71c1c;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
    