/* ********************* General CSS ***************************** */
/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html, body {
    width: 100%;
    height: 100%;
    font-family: Arial, sans-serif;
    line-height: 1.6;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  ul, ol {
    list-style: none;
  }



  /* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #000053;
}

::-webkit-scrollbar-thumb {
    background: #3498db;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}



  /* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    background-color: #007BFF;
  }
  
  .btn-primary {
    background-color: #007BFF;
    color: #fff;
  }

  #getStartedBtn{
    background-color: #007BFF;
    color: white;
  }
  
  .btn-primary:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
  }
  
  .btn-secondary {
    background-color: #6c757d;
    color: #fff;
  }
  
  .btn-secondary:hover {
    background-color: #5a6268;
    transform: translateY(-2px);
  }


/* ***************************** Top NavBar ***************************** */
  
  /* General Navbar Styles */
.top-navbar {
    background-color: #000053; /* Dark blue background */
    padding: 10px 0;
    color: #ffffff; /* White text */
    font-family: 'Poppins', sans-serif; /* Modern font */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Left Section: Contact Info */
.navbar-contact-info {
    display: flex;
    gap: 20px;
}

.contact-link {
    color: #ffffff;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #3498db; /* Blue on hover */
}

/* Center Section: Promotional Text */
.navbar-promo-text {
    display: flex;
    gap: 30px;
    font-size: 14px;
    font-weight: 500;
}

.promo-item {
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.promo-item:hover {
    color: #3498db; /* Blue on hover */
}

.promo-item .bi {
    font-size: 16px;
}

/* Right Section: Navigation Links */
.navbar-links {
    display: flex;
    gap: 20px;
}

.nav-link {
    color: #ffffff;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.nav-link:hover {
    color: #3498db; /* Blue on hover */
    transform: translateY(-2px); 
}

/* Responsive Design  */
/* Mobile Devices (max-width: 991.98px) */
@media (max-width: 991.98px) {
    .navbar-contact-info,
    .navbar-promo-text {
        display: none;
    }

    /* Ensure navigation links are in a single row */
    .navbar-links {
        display: flex;
        justify-content: center;
        gap: 15px; 
        width: 100%;
        padding: 10px 0; 
    }

    /* Adjust font size and spacing for mobile */
    .nav-link {
        font-size: 14px; 
        gap: 5px; 
    }


    .nav-link .bi {
        font-size: 14px; 
    }
}

/* Very Small Screens (max-width: 576px) */
@media (max-width: 576px) {
    
    .navbar-links {
        gap: 10px;
    }

    
    .nav-link {
        font-size: 12px;
    }

    .nav-link .bi {
        font-size: 12px;
    }
}


/* *************************** */

.contact-link {
    text-decoration: none;  /* removes underline */
    color: inherit;         /* keeps same color as parent */
}


/* ************************** Main NavBar ********************************* */

/* ************************ Main Navbar Styles ************************** */

/* Custom Navbar */
.main-navbar {
    background-color: #ffffff; /* White background */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    position: sticky;
    top: 0; /* Stick to the top of the viewport */
    z-index: 1000; /* Ensure it stays above other content */
    width: 100%; /* Full width */
}

/* Ensure the navbar container is sticky */
.main-navbar .container-fluid {
    position: sticky;
    top: 0;
}

/* Logo */
.main-navbar .navbar-brand img {
    height: 40px; /* Adjust logo height */
    transition: transform 0.3s ease;
}

.main-navbar .navbar-brand img:hover {
    transform: scale(1.1); /* Logo hover effect */
}

/* Navbar Links */
.main-navbar .nav-link {
    color: #2c3e50 !important; /* Dark blue text */
    font-weight: 600; /* Increased font weight */
    font-size: 16px; /* Increased font size */
    margin: 0 15px; /* Spacing between links */
    padding: 8px 12px; /* Added padding for better click area */
    transition: color 0.3s ease, transform 0.3s ease;
}

.main-navbar .nav-link:hover {
    color: #3498db !important; /* Blue text on hover/active */
    transform: translateY(-2px); /* Lift effect */
}

/* Dropdown Menu */
.main-navbar .dropdown-menu {
    border: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    margin-top: 0;
    padding: 10px 0;
    border-radius: 10px; /* Rounded corners */
}

.main-navbar .dropdown-item {
    color: #2c3e50;
    font-size: 14px;
    font-weight: 500; /* Medium font weight */
    padding: 10px 20px; /* Increased padding */
    transition: background-color 0.3s ease, color 0.3s ease;
}

.main-navbar .dropdown-item:hover {
    background-color: #3498db;
    color: #fff !important; /* White text on hover */
}

/* Dropdown Toggle Arrow */
.main-navbar .dropdown-toggle::after {
    margin-left: 8px; /* Space between text and arrow */
    vertical-align: middle; /* Align arrow properly */
}

/* Primary Button */
.primary-btn {
    background-color: #3498db;
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.primary-btn:hover {
    background-color: #2980b9; 
    transform: translateY(-2px);
}

/* Mobile Responsive Styles */
@media (max-width: 991.98px) {
    .main-navbar .navbar-collapse {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%; 
        height: 100vh; 
        background-color: #fff; 
        box-shadow: 4px 0 20px rgba(0, 0, 0, 0.1); 
        padding: 20px;
        transition: left 0.3s ease; 
    }

    .main-navbar .navbar-collapse.show {
        left: 0; 
    }

    .main-navbar .navbar-nav {
        margin-top: 50px; 
    }

    .main-navbar .nav-link {
        margin: 10px 0;
        padding: 10px 0; 
    }

    .main-navbar .dropdown-menu {
        background-color: #f8f9fa; 
        margin-top: 10px; 
    }

    .main-navbar .dropdown-item {
        color: #2c3e50 !important; 
    }

    .main-navbar .dropdown-item:hover {
        background-color: #3498db; 
        color: #fff !important; 
    }

    /* Close Button for Mobile */
    .navbar-close-btn {
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        font-size: 24px;
        color: #2c3e50;
        cursor: pointer;
    }

    .navbar-close-btn:hover {
        color: #3498db; /* Blue on hover */
    }
}






/* ******************************* Footer Section ********************************* */

/* Footer Section */
.footer-section {
    background: #000053;
    color: white;
    font-size: 0.95rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Footer Top */
.footer-top {
    padding: 80px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
}

.footer-column {
    margin-bottom: 40px;
}

.footer-title {
    color: #3498db;
    font-size: 1.2rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-title i {
    font-size: 1.4rem;
}

/* Fixed Scrolling Lines Below Section Titles */
.footer-column .footer-scrolling-line {
    width: 220px; /* Adjusted width */
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    margin: -15px 0px 15px 0px; /* Centered with proper spacing */
    position: relative;
    overflow: hidden;
}

.footer-column .footer-scrolling-line::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        #3498db,
        transparent
    );
    animation: scrolling-line 3s linear infinite;
}

@keyframes scrolling-line {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Footer Links */
.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a i {
    width: 20px;
    color: #3498db;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #3498db;
    transform: translateX(5px);
}

/* Newsletter Section */
.newsletter-column {
    max-width: 350px;
}

.newsletter-form {
    display: flex;
    margin-bottom: 40px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: white;
    border-radius: 4px 0 0 4px;
}

.newsletter-form button {
    background: #3498db;
    color: white;
    border: none;
    padding: 0 25px;
    cursor: pointer;
    border-radius: 0 4px 4px 0;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: #2980b9;
}

/* Payment Methods */
.payment-methods {
    margin-top: 40px;
}

.payment-methods h5 {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.payment-icons {
    display: flex;
    gap: 20px;
}

.payment-icons img {
    width: 50px;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.payment-icons img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Footer Bottom */
.footer-bottom {
    padding: 50px 0;
}

.social-media {
    display: flex;
    gap: 25px;
    justify-content: center;
    margin-bottom: 40px;
}

.social-icon {
    color: white;
    font-size: 1.4rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #3498db;
    transform: translateY(-5px);
}

.legal-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.legal-links a:hover {
    color: #3498db;
}

/* Wide Scrolling Line for Bottom Footer */
.footer-bottom .footer-scrolling-line.wide-line {
    width: 300px;
    height: 3px;
    margin: 30px auto;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.footer-bottom .footer-scrolling-line.wide-line::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        #3498db,
        transparent
    );
    animation: scrolling-line 3s linear infinite;
}

/* Copyright */
.copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-column .footer-scrolling-line {
        width: 200px;
    }
}

@media (max-width: 767px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-column {
        text-align: center;
    }

    .footer-title {
        justify-content: center;
    }

    .footer-links a {
        justify-content: center;
    }

    .footer-column .footer-scrolling-line {
        width: 200px;
        margin: 10px auto 20px;
    }

    .footer-bottom .footer-scrolling-line.wide-line {
        width: 200px;
    }

    .newsletter-form {
        max-width: 100%;
    }

    .payment-icons {
        justify-content: center;
    }

    .social-media {
        gap: 15px;
    }

    .legal-links {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}
