/* Custom Navbar */

.custom-navbar {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background: #fff;
    padding: 15px 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: all 0.3s ease-in-out;
}

/* Logo */

.logo img {
    height: 60px;
    transition: transform 0.3s ease-in-out;
}

.logo:hover img {
    transform: scale(1.1);
}

/* Navbar Links */

.nav-links {
    display: flex;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: #404e69;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    padding: 10px 15px;
    transition: 0.3s ease-in-out;
}

/* Hover Slide Effect */

.nav-links a::before {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 3px;
    background: #404e69;
    transition: width 0.3s, left 0.3s;
}

.nav-links a:hover::before {
    width: 100%;
    left: 0;
}

.nav-links a:hover {
    color: #404e69;
}

/* Call Button */

.call-btn {
    background: #404e69;
    color: white;
    padding: 12px 20px;
    font-weight: bold;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s ease-in-out;
}

.call-btn:hover {
    background: white;
    /* color: #f7941d; */
    color: #FC6A03
}

/* Mobile Menu Button (Hamburger Icon) */

.menu-btn {
    background: none;
    border: none;
    color: #404e69;
    font-size: 28px;
    cursor: pointer;
}

/* Mobile Menu */

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #404e69;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
}

/* Mobile Menu Active State */

.mobile-menu.active {
    transform: translateY(0);
}

/* Mobile Menu Links */

.mobile-menu ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

.mobile-menu li {
    margin: 15px 0;
}

.mobile-menu a {
    color: white;
    font-size: 22px;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.mobile-menu a:hover {
    color: #f7941d;
}

/* Close Button */

.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

/* Hide Desktop Menu on Mobile */

@media (max-width: 991px) {
    .nav-links {
        display: none !important;
    }
}

/* Hero Banner - Full Width Background */

/* Default Hero Banner */

.hero-banner {
    background: url('../images/logo/bg3.jpg') no-repeat center center/cover;
    height: 100vh;
    /* Full screen height */
    display: flex;
    align-items: center;
    position: relative;
    color: white;
}

/* Hide Banner on Mobile (Max Width 768px) */

@media (max-width: 768px) {
    .hero-banner {
        background: #404e69;
    }
}

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

/* Dark Overlay for Better Readability */

/*.hero-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay */

}

*/
/* Text Content Styling */

.hero-title {
    font-size: 48px;
    font-weight: bold;
    position: relative;
    z-index: 2;
    color: #000;
}

.hero-subtitle {
    font-size: 20px;
    margin: 20px 0;
    position: relative;
    z-index: 2;
}

/* Call-to-Action Button */

.hero-btn {
    display: inline-block;
    padding: 15px 30px;
    background: #fff;
    color: #000;
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s ease-in-out;
    box-shadow: 0px 0px 15px rgba(23, 162, 184, 0.7);
    position: relative;
    z-index: 2;
}

.hero-btn:hover {
    background: white;
    color: #f7941d;
    box-shadow: none;
}

/* Responsive Styles */

@media (max-width: 992px) {
    .hero-title {
        font-size: 36px;
        text-align: center;
        padding-top: 50px;
    }
    .hero-subtitle {
        font-size: 18px;
        text-align: center;
    }
    .hero-btn {
        display: block;
        width: max-content;
        margin: 20px auto;
    }
    .hero-banner {
        text-align: center;
        height: auto;
        padding: 100px 0;
    }
}

/* Features Section Styling */

.features-section {
    background: #fff;
    /* Dark background like reference */
    padding: 40px 0;
}

/* Individual Feature Item */

.feature-item {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    margin-top: 15px;
}

/* Feature Icons */

.feature-icon {
    font-size: 30px;
    margin-right: 10px;
}

/* Gradient Text for Each Feature */

.feature-item:nth-child(1) span strong {
    background: linear-gradient(90deg, #17c2a4, #00bfa6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-item:nth-child(2) span strong {
    background: linear-gradient(90deg, #b76e59, #d87b5e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-item:nth-child(3) span strong {
    background: linear-gradient(90deg, #f5a623, #f89f00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Responsive Adjustments */

@media (max-width: 768px) {
    .feature-item {
        font-size: 18px;
        margin-bottom: 15px;
    }
    .feature-icon {
        font-size: 25px;
    }
}

/* About Section with Background */

.about-section {
    background: url('images/about-bg.jpg') center/cover no-repeat;
    padding: 60px 0px 100px 0;
    position: relative;
}

/* Overlay for Better Readability */

.about-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    /* Dark overlay */
}

/* About Content Styling */

.about-content {
    position: relative;
    max-width: 700px;
    margin: auto;
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(8px);
}

/* Title Styling */

.about-title {
    font-size: 38px;
    font-weight: bold;
    margin-bottom: 15px;
}

.about-title span {
    color: #f7941d;
    /* Accent color */
}

/* Paragraph Styling */

.about-text {
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 1.6;
}

/* Button Styling */

.about-btn {
    background: #f7941d;
    color: white;
    padding: 12px 24px;
    font-size: 18px;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
    display: inline-block;
}

.about-btn:hover {
    background: #d87b5e;
}

/* Responsive Design */

@media (max-width: 768px) {
    .about-content {
        padding: 30px;
    }
    .about-title {
        font-size: 30px;
    }
    .about-text {
        font-size: 16px;
    }
    .about-btn {
        font-size: 16px;
        padding: 10px 20px;
    }
}

.timeline {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    max-width: 800px;
    margin: auto;
}

.timeline::before {
    content: "";
    position: absolute;
    width: 4px;
    background: #f7941d;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 20px 0;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
    text-align: right;
}

.timeline-icon {
    background: #f7941d;
    color: #ffffff;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-content {
    width: 40%;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 8px;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 60px;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: 60px;
}

.steps-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    text-align: center;
    flex-wrap: wrap;
    /* Allow wrapping on smaller screens */
    gap: 20px;
    /* Adds spacing between items */
}

.step {
    flex: 1;
    /* Allows flexibility */
    min-width: 30%;
    /* Ensures proper width on larger screens */
    padding: 20px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.step-icon {
    width: 70px;
    height: 70px;
    background: #404e69;
    color: #f7941d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: auto;
    margin-bottom: 15px;
}

.step h4 {
    color: #404e69;
    font-weight: 600;
    margin-bottom: 10px;
}

.step p {
    color: #666;
    font-size: 14px;
}

/* Line Connector */

.steps-wrapper::before {
    content: "";
    position: absolute;
    top: 35px;
    left: 15%;
    width: 70%;
    height: 4px;
    background: #404e69;
    z-index: 0;
}

/* Mobile Fix */

@media (max-width: 768px) {
    .steps-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .step {
        width: 100%;
        /* Full width on mobile */
        max-width: 400px;
        /* Keeps design structured */
    }
    .steps-wrapper::before {
        display: none;
        /* Hide line connector on mobile */
    }
}

.service-image {
    max-width: 100%;
    border-radius: 10px;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.service-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 8px;
    transition: 0.3s ease-in-out;
}

.service-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.service-item i {
    font-size: 35px;
    color: #f7941d;
    margin-right: 15px;
}

.service-content h4 {
    font-size: 18px;
    font-weight: bold;
    color: white;
}

.service-content p {
    font-size: 14px;
    color: #dcdcdc;
}

.btn-light {
    background: white;
    color: #404e69;
    font-weight: bold;
    padding: 12px 24px;
    border-radius: 50px;
    transition: 0.3s;
}

.btn-light:hover {
    background: #f7941d;
    color: white;
}

.faq-box {
    background: #f8f9fa;
    padding: 12px;
    margin-bottom: 8px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.faq-box h5 {
    color: #404e69;
    font-weight: 600;
    font-size: 16px;
    margin: 0;
}

.faq-box:hover,
.faq-box.active {
    background: #404e69;
    color: white;
}

.faq-box.active h5 {
    color: white;
}

.faq-answer {
    background: #f1f1f1;
    padding: 15px;
    border-radius: 6px;
    color: #404e69;
    font-size: 14px;
}

.footer-section {
    background-color: #404e69;
    padding: 60px 0 20px;
    color: white;
    font-size: 14px;
}

.footer-logo {
    max-width: 180px;
    margin-bottom: 15px;
}

.footer-about p {
    font-size: 15px;
    color: #fff;
}

.footer-links h5,
.footer-contact h5 {
    color: white;
    font-size: 16px;
    margin-bottom: 15px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 8px;
}

.footer-links ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: #f7941d;
}

.footer-contact p {
    margin: 5px 0;
    font-size: 15x;
    color: #fff;
}

.footer-contact i {
    margin-right: 8px;
    color: #fff;
}

.social-icons {
    margin-top: 10px;
}

.social-icons a {
    color: white;
    font-size: 18px;
    margin-right: 10px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #17A2B8;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 12px;
    color: #fff;
}

.contact-section {
    background: white;
    padding: 60px 0;
}

.contact-title {
    color: #404e69;
    font-size: 28px;
    font-weight: bold;
}

.contact-subtitle {
    color: #666;
    margin-bottom: 20px;
}

.contact-info p {
    color: #404e69;
    font-size: 18px;
    margin-bottom: 10px;
}

.contact-info i {
    color: #f7941d;
    margin-right: 10px;
}

.social-icons a {
    font-size: 24px;
    color: #404e69;
    margin-right: 15px;
    transition: 0.3s ease;
}

.social-icons a:hover {
    color: #f7941d;
}

.contact-form .form-control {
    border: 1px solid #ddd;
    padding: 12px;
    margin-bottom: 15px;
    font-size: 16px;
}

.contact-btn {
    background: #404e69;
    color: white;
    font-weight: bold;
    padding: 12px 20px;
    border: none;
    transition: 0.3s;
}

.contact-btn:hover {
    background: #f7941d;
    color: white;
}