/* ===== Reset ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #f4f7fa;
  color: #333;
}

/* ===== Top Bar ===== */
.top-bar {
  background: #0f3460; /* deep navy */
  color: #fff;
  font-size: 14px;
  padding: 6px 0;
  z-index: 1030;
}

.top-bar .nav-link {
  color: #eaeaea;
  text-decoration: none;
  transition: color 0.3s ease;
}

.top-bar .nav-link:hover {
  color: #ffd369; /* warm yellow */
}

.top-bar .social-icon {
  color: #eaeaea;
  font-size: 14px;
  transition: color 0.3s ease;
}

.top-bar .social-icon:hover {
  color: #ffd369;
}

/* ===== Navbar ===== */
.navbar-custom {
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: all 0.3s ease-in-out;
}

.navbar-custom .navbar-brand {
  font-size: 1.6rem;
  font-weight: 700;
  color: #0f3460;
  text-transform: uppercase;
}

.navbar-custom .navbar-brand .text-green {
  color: #ff6b6b; /* coral red accent */
}

/* Center menu items */
.navbar-custom .navbar-collapse {
  justify-content: center;
}

.navbar-custom .nav-link {
  font-weight: 500;
  margin: 0 12px;
  color: #444;
  transition: color 0.3s ease;
}

.navbar-custom .nav-link:hover {
  color: #ff6b6b; /* coral red */
}

/* Active state */
.navbar-custom .nav-link.active {
  color: #ff6b6b;
}

/* Call-to-action button */
.btn-get-started {
  background: #ff6b6b;
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-get-started:hover {
  background: #e63946;
  transform: translateY(-2px);
}

/* ===== Mobile Menu ===== */
.navbar-toggler {
  border: none;
  outline: none;
}

.navbar-toggler-icon {
  filter: invert(50%);
}

@media (max-width: 768px) {
  .navbar-custom .navbar-collapse {
    justify-content: flex-start;
  }
  
  .navbar-custom .nav-link {
    margin: 8px 0;
  }
  
  .btn-get-started {
    display: inline-block;
    margin-top: 10px;
  }
}

/* ===== Banner Section ===== */
.banner-bg {
  background: linear-gradient(135deg, #0f3460, #16213e);
  color: #fff;
  padding: 120px 20px 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-top: 180px;
}

.banner-bg::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 107, 107, 0.2);
  border-radius: 50%;
  z-index: 0;
}

.banner-bg::after {
  content: "";
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 250px;
  height: 250px;
  background: rgba(255, 211, 105, 0.15);
  border-radius: 50%;
  z-index: 0;
}

.banner-content {
  position: relative;
  z-index: 1;
  max-width: 750px;
  margin: 0 auto;
}

.banner-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
}

.banner-content p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #eaeaea;
}

/* Buttons */
.banner-content .btn {
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}

.banner-content .btn-primary {
  background: #ff6b6b;
  color: #fff;
  border: none;
}

.banner-content .btn-primary:hover {
  background: #e63946;
  transform: translateY(-3px);
}

.banner-content .btn-secondary {
  background: #ffd369;
  color: #0f3460;
  border: none;
}

.banner-content .btn-secondary:hover {
  background: #fcbf49;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
  .banner-content h1 {
    font-size: 2rem;
  }

  .banner-content p {
    font-size: 1rem;
  }
}
/* ===== Features Section ===== */
.features-section {
    background: #ffffff;
    padding: 60px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    text-align: center;
}

.features-section h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #0f3460; /* deep navy */
}

.features-section p {
    font-size: 1.05rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto 2rem auto;
}

/* Feature Cards */
.feature-card {
    background: #f9f9f9;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ff6b6b; /* coral red */
}

.feature-desc {
    font-size: 0.95rem;
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    .features-section h2 {
        font-size: 1.85rem;
    }

    .features-section p {
        font-size: 1rem;
    }
}
/* ===== About Section ===== */
.about-section {
    padding: 80px 20px;
    background: #f4f7fa;
}

.about-section .text-content h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #0f3460;
    margin-bottom: 20px;
}

.about-section .text-content p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.7;
}

.about-section .text-content ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.about-section .text-content ul li {
    font-size: 0.95rem;
    color: #444;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.about-section .text-content ul li i {
    color: #ff6b6b;
    font-size: 1.1rem;
    margin-right: 8px;
}

.about-section .btn-primary {
    background: #ff6b6b;
    color: #fff;
    padding: 12px 28px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.about-section .btn-primary:hover {
    background: #e63946;
    transform: translateY(-2px);
}

/* Image */
.about-section .image-content {
    text-align: center;
    margin-top: 30px;
}

.about-section .about-image {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .about-section .text-content h2 {
        font-size: 1.85rem;
    }

    .about-section .text-content p {
        font-size: 0.95rem;
    }
}
/* ===== CTA Section ===== */
.cta-section {
    background: linear-gradient(135deg, #ff6b6b, #ffb677); /* Coral to warm orange gradient */
    color: #fff;
    padding: 80px 20px;
    border-radius: 12px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: "";
    position: absolute;
    top: -50px;
    left: -50px;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.cta-section::after {
    content: "";
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: rgba(0,0,0,0.05);
    border-radius: 50%;
    z-index: 0;
}

.cta-section .content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.cta-section .btn-cta {
    background: #0f3460; /* Deep navy */
    color: #fff;
    padding: 14px 28px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-section .btn-cta:hover {
    background: #16213e;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .cta-section h2 {
        font-size: 1.85rem;
    }

    .cta-section p {
        font-size: 1rem;
    }
}
/* ===== Features Section ===== */
.features-section {
    padding: 80px 20px;
    background: #f4f7fa;
}

.features-section h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #0f3460;
    margin-bottom: 40px;
}

/* Feature Cards */
.feature-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.feature-card .icon-circle {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px auto;
    background: #ff6b6b;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    transition: all 0.3s ease;
}

.feature-card:hover .icon-circle {
    background: #e63946;
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0f3460;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .features-section h2 {
        font-size: 1.85rem;
    }

    .feature-card h3 {
        font-size: 1.15rem;
    }

    .feature-card p {
        font-size: 0.9rem;
    }
}

/* ===== Testimonials Section ===== */
.testimonials-section {
    padding: 80px 20px;
    background: #f4f7fa;
}

.testimonials-section h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #0f3460;
    margin-bottom: 50px;
    text-align: center;
}

/* Testimonial Cards */
.testimonial-card {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
    position: relative;
    transition: all 0.3s ease;
    text-align: center;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.testimonial-card .quote-icon {
    font-size: 2rem;
    color: #ff6b6b;
    margin-bottom: 15px;
}

.testimonial-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.testimonial-card .author-info .author-name {
    font-weight: 600;
    color: #0f3460;
    margin-bottom: 2px;
}

.testimonial-card .author-info .author-title {
    font-size: 0.85rem;
    color: #888;
}

/* Responsive */
@media (max-width: 768px) {
    .testimonials-section h2 {
        font-size: 1.85rem;
    }

    .testimonial-card p {
        font-size: 0.9rem;
    }
}
/* ===== Full-Width Image Section ===== */
.full-width-image-section {
    position: relative;
    width: 100%;
    min-height: 400px;
    background: url('../images/logo/bottom.webp') center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.full-width-image-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 52, 96, 0.6); /* navy overlay */
    z-index: 1;
}

.full-width-image-section .content-overlay {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
    color: #fff;
}

.full-width-image-section h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.full-width-image-section p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

.full-width-image-section .btn-cta {
    background: #ff6b6b;
    color: #fff;
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.full-width-image-section .btn-cta:hover {
    background: #e63946;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .full-width-image-section h2 {
        font-size: 1.85rem;
    }

    .full-width-image-section p {
        font-size: 1rem;
    }
}
/* ===== Disclaimer Section ===== */
.disclaimer-section {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px 20px;
    color: #555;
    box-shadow: 0 6px 15px rgba(0,0,0,0.05);
}

.disclaimer-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0f3460;
    margin-bottom: 15px;
}

.disclaimer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== Footer Section ===== */
.footer-section {
    background: #0f3460;
    color: #ffffff;
    padding: 60px 20px 20px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.footer-section h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-section p, 
.footer-section li {
    font-size: 0.9rem;
    color: #d1d5db;
    margin-bottom: 8px;
}

.footer-section a {
    color: #d1d5db;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: #ff6b6b;
}

.footer-section .social-icons a {
    display: inline-block;
    margin-right: 10px;
    color: #d1d5db;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.footer-section .social-icons a:hover {
    color: #ff6b6b;
}

.footer-bottom {
    font-size: 0.85rem;
    margin-top: 20px;
    color: #aaa;
}
/* ===== Breadcrumb Section ===== */
.breadcrumb-section {
    background: linear-gradient(135deg, #0f3460, #16213e);
    color: #fff;
    padding: 60px 20px;
    text-align: center;
    position: relative;
    border-radius: 12px;
    margin-bottom: 40px;
    padding-top: 150px;
}

.breadcrumb-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 52, 96, 0.5);
    border-radius: 12px;
    z-index: 0;
}

.breadcrumb-section .breadcrumb-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.breadcrumb-section h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.breadcrumb-section .breadcrumb {
    justify-content: center;
    background: transparent;
    padding: 0;
    margin-bottom: 0;
}

.breadcrumb-section .breadcrumb-item a {
    color: #ff6b6b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-section .breadcrumb-item a:hover {
    color: #ffe66d;
}

.breadcrumb-section .breadcrumb-item.active {
    color: #fff;
    font-weight: 600;
}

/* ===== Contact Section ===== */
.contact-section {
    padding: 60px 20px;
    background: #f4f7fa;
}

.contact-section h2 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #0f3460;
}

.contact-section h4 {
    font-weight: 600;
    margin-bottom: 20px;
}

.contact-info li {
    font-size: 0.95rem;
    margin-bottom: 12px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-icons a {
    display: inline-block;
    margin-right: 10px;
    color: #0f3460;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: #ff6b6b;
}

/* Contact Form */
.contact-form .form-label {
    font-weight: 500;
    margin-bottom: 5px;
}

.contact-form .form-control {
    border-radius: 8px;
    padding: 10px 15px;
    border: 1px solid #ccc;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: #0f3460;
    box-shadow: 0 0 6px rgba(15, 52, 96, 0.3);
}

.btn-submit {
    background: #ff6b6b;
    color: #fff;
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #e63946;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .breadcrumb-section h1 {
        font-size: 1.5rem;
    }

    .contact-section h2 {
        font-size: 1.5rem;
    }

    .contact-info li {
        font-size: 0.9rem;
    }

    .contact-form .form-control {
        font-size: 0.9rem;
    }
}
