body {
    margin: 0;
    padding: 0;
}

/* Top Bar */
.top-bar {
    background-color: #002C5B;
}

.top-bar .contact-info div {
    font-size: 15px;
    display: flex;
    align-items: center;
}

.top-bar .contact-info i {
    color: #FC6A20;
}

/* Social Icons */
.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #011932;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #FC6A20;
    color: white;
    transform: translateY(-2px);
}

/* Navbar */
.navbar-dark {
    background-color: #042243;
    padding: 0.8rem 0;
    border-bottom: 2px solid #FC6A20;
}

.navbar-dark .navbar-nav .nav-link {
    color: white;
    font-weight: 500;
    padding: 10px 15px;
    transition: 0.3s;
    position: relative;
}

.navbar-dark .navbar-nav .nav-link::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #FC6A20;
    transition: width 0.3s;
    position: absolute;
    bottom: 0;
    left: 0;
}

.navbar-dark .navbar-nav .nav-link:hover::after {
    width: 100%;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: #FC6A20;
}

/* Login Button */
.login-btn {
    background-color: #FC6A20;
    color: white;
    padding: 10px 40px;
    font-weight: 600;
    border-radius: 5px;
    border: none;
    transition: 0.3s;
}

.login-btn:hover {
    background-color: #045CB4;
}

/* Responsive Adjustments */
@media (max-width: 768px) {

    .top-bar .contact-info,
    .social-icons {
        justify-content: center;
        text-align: center;
        margin-bottom: 5px;
    }

    .navbar-nav {
        text-align: center;
    }

    .login-btn {
        margin-top: 10px;
        width: 100%;
    }
}



#main-content {
    background-color: #042243;
    color: white;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.main-content-area {
    padding: 20px;
}

.highlight-text {
    color: #FC6A20;
    font-weight: 600;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 50px;
    font-weight: 700;
    line-height: 1.2;
    margin: 20px 0;
}

.hero-text {
    font-size: 18px;
    line-height: 1.6;
    color: #f0f0f0;
}

.btn-primary {
    padding: 12px 30px;
    font-size: 18px;
    border-radius: 6px;
}

/* Image styling */
.hero-img {
    max-width: 100%;
    height: auto;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
        line-height: 1.3;
        text-align: center;
    }

    .hero-text {
        text-align: center;
    }

    #main-content .col-md-6 {
        text-align: center;
    }

    .main-content-area {
        position: static;
        padding: 20px 0;
    }
}


#details .container {
    margin-top: 30px;
}

#details .col-md-6 {
    position: relative;
}

.details-area {
    position: absolute;
    top: 15%;
}

.details-area h1 {
    font-size: 40px;
    margin-top: 12px;
}

.details-area p {
    margin-top: 12px;
    font-size: 20px;
}

.details-area-2 {
    display: flex;
    width: 100%;
    position: relative;
}

.details-area-2 img {
    height: 400px;
}

.details-area-2-text {
    padding-left: 50px;
    margin-top: 50px;
}

.details-area-2 h1 {
    font-size: 25px;
}

.details-area-2 p {
    margin-top: 12px;
    font-size: 20px;
}

.details-area-3 {
    position: relative;
    top: 15%;
}

.details-area-3 h1 {
    line-height: 60px;
    font-size: 40px;
    margin-top: 12px;
}

.details-area-3 p {
    margin-top: 12px;
    font-size: 20px;
}

.details-area-3 button {
    margin-top: 20px;
}

@media (max-width: 768px) {

    /* Stack text and images vertically */
    #details .row {
        flex-direction: column;
    }

    /* Center all text */
    .details-area,
    .details-area-2-text,
    .details-area-3 {
        text-align: center;
        padding: 10px 0;
        position: static;
        /* Remove absolute positioning */
        margin-top: 0;
    }

    /* Resize images */
    #details img {
        width: 90%;
        height: auto;
        margin: 0 auto 15px auto;
        display: block;
    }

    /* Second section (details-area-2) */
    .details-area-2 {
        flex-direction: column;
        align-items: center;
    }

    .details-area-2-text {
        padding-left: 0;
        margin-top: 10px;
    }

    /* Headings smaller on mobile */
    .details-area h1,
    .details-area-2 h1,
    .details-area-3 h1 {
        font-size: 28px;
        line-height: 1.3;
    }

    /* Paragraph text smaller */
    .details-area p,
    .details-area-2 p,
    .details-area-3 p {
        font-size: 16px;
        line-height: 1.5;
    }

    /* Buttons full width */
    .details-area-3 button {
        width: 100%;
    }
}

/* Section heading */
.service-text {
    text-align: center;
}

.service-text span {
    color: #FC6A20;
    letter-spacing: 1px;
    font-weight: 500;
    display: block;
    margin-bottom: 10px;
}

.service-text h1 {
    font-size: 38px;
    font-weight: 700;
    color: #002C5B;
}

/* Service Card */
.service-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    padding: 20px;
    background: #f8faff;
    transition: transform 0.4s ease;
}

.service-card:hover img {
    transform: scale(1.05);
}

.service-card .card-body {
    padding: 25px;
    flex-grow: 1;
}

.service-card .card-title {
    font-size: 22px;
    font-weight: 700;
    color: #042243;
    margin-bottom: 15px;
}

.service-card .card-text {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.service-card .read-more {
    color: #FC6A20;
    font-weight: 600;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.service-card .read-more:hover {
    color: #002C5B;
}

/* Hover Effect */
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}


.testimonial-card {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    transition: 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.testimonial-card p {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}

.rating i {
    color: #FC6A20;
    margin: 0 2px;
}


/* Section Heading */
.text-orange {
    color: #FC6A20;
    letter-spacing: 1px;
}

.text-primary {
    color: #002C5B !important;
}

/* Card Styling */
.service-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
    height: 100%;
}

.service-card img {
    object-fit: contain;
    transition: transform 0.6s ease;
}

.service-card:hover img {
    transform: scale(1.1);
}

/* Overlay Styling */
.service-card .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 44, 91, 0.92);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    transform: translateY(20px);
}

.service-card:hover .overlay {
    opacity: 1;
    transform: translateY(0);
}

.service-card .overlay h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-card .overlay p {
    font-size: 15px;
    line-height: 1.6;
    color: #dce2eb;
}

.contact-details {
    background: #f7f9fc;
}

.contact-image img {
    height: 100%;
    object-fit: cover;
}

.custom-input {
    border-radius: 10px;
    padding: 12px;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

.custom-input:focus {
    border-color: #FC6A20;
    box-shadow: 0 0 8px rgba(252, 106, 32, 0.3);
}

.btn-submit {
    background: #FC6A20;
    color: #fff;
    font-weight: 600;
    padding: 12px;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: none;
}

.btn-submit:hover {
    background: #e55a13;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(252, 106, 32, 0.3);
}

.shadow-lg {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}


.card-text p {
    text-align: center;
    justify-content: center;
}

.footer {
    background-color: #002C5B;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.footer-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
    position: relative;
}

.footer-title::after {
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    background: #FC6A20;
    margin-top: 6px;
    border-radius: 2px;
}

.footer-text {
    font-size: 14px;
    color: #9FAAB6;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #9FAAB6;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #FC6A20;
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 10px;
    font-size: 15px;
    color: #9FAAB6;
}

.footer-contact i {
    margin-right: 8px;
    color: #FC6A20;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-right: 10px;
    text-align: center;
    line-height: 40px;
    background: #011932;
    border-radius: 50%;
    font-size: 18px;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #FC6A20;
    color: #fff;
    transform: translateY(-3px);
}

.footer-bottom {
    font-size: 14px;
    color: #9FAAB6;
}

/* About Us */
#About {
    background: linear-gradient(135deg, #002C5B, #004080);
    color: white;
    height: 300px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

#About h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

/* Smooth fade-in animation */
#About h1,
#About p {
    animation: fadeInUp 1s ease-in-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#other-section {
    background-color: #002C5B;
    margin-bottom: 40px;
    text-align: center;
    color: white;
    padding: 50px 0px;
}

#other-section img {
    margin: 12px 12px;
}

#other-section h1 {
    font-size: 60px;
    max-width: 45%;
    margin: 0 auto;
    font-weight: bold;
}

/* Contact section */
/* Section background */
#contact-info {
    background: #f8f9fa;
    padding: 50px 20px;
}

/* Card styling */
.contact-card {
    border: none;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Icon styling */
.contact-icon {
    font-size: 40px;
    color: #FC6A20;
    margin-bottom: 15px;
}

/* Title */
.contact-card .card-title {
    font-size: 22px;
    font-weight: bold;
    color: #19416B;
    margin-bottom: 10px;
}

/* Text */
.contact-card .card-text {
    font-size: 16px;
    color: #333;
    line-height: 1.5;
}




@media screen and (max-width:991px) {
   .top-bar {
    display: none;
  }
  #details .col-md-6{
    width: 100%;
  }
  .details-area{
    position: unset;
  }

  .details-area-2{
    display: block;
  }

  .col-md-6.contact-image{
    display: none !important;
}
}

@media screen and (max-width:767px) {

    .navbar-dark .navbar-nav .nav-link {
    text-align: left;
    margin: 15px 0;
    border-bottom: 1px solid #171a1d;
}
.details-area-2{
    left: 0;
}
}