:root {
  --pcma-blue: #0b1f4d;
  --pcma-red: #c1121f;
  --pcma-white: #ffffff;
  --pcma-gold: #f4b400;
  --pcma-light: #f8f9fa;
  --pcma-text: #1f2937;
  --pcma-gradient: linear-gradient(135deg, rgba(11, 31, 77, 0.95), rgba(193, 18, 31, 0.88));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--pcma-text);
  background: var(--pcma-white);
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-montserrat {
  font-family: "Montserrat", sans-serif;
}

.font-hindi {
  font-family: "Noto Sans Devanagari", "Hind", sans-serif;
}

.topbar {
  background: var(--pcma-blue);
  color: var(--pcma-white);
  font-size: 0.9rem;
}

.topbar a {
  color: var(--pcma-white);
  text-decoration: none;
}

.topbar .social-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.18);
  transition: transform 0.25s ease, background 0.25s ease;
}

.topbar .social-icon:hover {
  transform: translateY(-2px);
  background: var(--pcma-gold);
  color: var(--pcma-blue);
}

.navbar {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  box-shadow: 0 6px 24px rgba(11, 31, 77, 0.08);
}

.navbar .navbar-brand {
  font-weight: 700;
  color: var(--pcma-blue);
}

.navbar .nav-link {
  font-weight: 500;
  color: var(--pcma-blue);
  position: relative;
}

.navbar .nav-link.active,
.navbar .nav-link:hover {
  color: var(--pcma-red);
}

.btn-pcma-primary {
  background: var(--pcma-red);
  color: var(--pcma-white);
  border: none;
  border-radius: 999px;
  padding: 0.7rem 1.5rem;
  box-shadow: 0 8px 20px rgba(193, 18, 31, 0.25);
}

.btn-pcma-primary:hover {
  background: #9e0f19;
  color: var(--pcma-white);
}

.btn-pcma-outline {
  border: 2px solid var(--pcma-white);
  color: var(--pcma-white);
  border-radius: 999px;
  padding: 0.7rem 1.4rem;
}

.btn-pcma-outline:hover {
  background: var(--pcma-white);
  color: var(--pcma-blue);
}

.hero-section,
.page-hero {
  min-height: 78vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-section::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--pcma-gradient);
}

.hero-section .container,
.page-hero .container {
  position: relative;
  z-index: 2;
}

.glass-card {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
  border-radius: 1rem;
  box-shadow: 0 16px 40px rgba(11, 31, 77, 0.2);
}

.section-padding {
  padding: 80px 0;
}

.section-title {
  color: var(--pcma-blue);
  font-weight: 700;
}

.card-modern {
  border: 0;
  border-radius: 1rem;
  box-shadow: 0 12px 28px rgba(11, 31, 77, 0.1);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  height: 100%;
}

.card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 32px rgba(11, 31, 77, 0.16);
}

.icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(11, 31, 77, 0.1);
  color: var(--pcma-red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.benefit-card {
  background: var(--pcma-white);
}

.counter-wrap {
  background: var(--pcma-blue);
  color: var(--pcma-white);
}

.counter-num {
  font-size: 2.1rem;
  font-weight: 700;
}

.gallery-grid {
  column-count: 3;
  column-gap: 1rem;
}

.gallery-item {
  margin-bottom: 1rem;
  break-inside: avoid;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 10px 24px rgba(11, 31, 77, 0.12);
}

.gallery-item img {
  width: 100%;
  transition: transform 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.cta-section {
  background: linear-gradient(135deg, #0b1f4d, #102d78, #c1121f);
  color: var(--pcma-white);
  border-radius: 1.25rem;
}

.glow-btn {
  box-shadow: 0 0 20px rgba(244, 180, 0, 0.6);
}

.footer {
  background: #061332;
  color: #e5e7eb;
}

.footer a {
  color: #e5e7eb;
  text-decoration: none;
}

.footer a:hover {
  color: var(--pcma-gold);
}

.floating-whatsapp,
.scroll-top {
  position: fixed;
  right: 20px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1050;
  border: 0;
}

.floating-whatsapp {
  bottom: 88px;
  background: #25d366;
  color: var(--pcma-white);
  font-size: 1.4rem;
}

.scroll-top {
  bottom: 24px;
  background: var(--pcma-red);
  color: var(--pcma-white);
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
}

.timeline {
  border-left: 3px solid rgba(11, 31, 77, 0.15);
  margin-left: 1rem;
  padding-left: 1.5rem;
}

.timeline-item {
  position: relative;
  margin-bottom: 1.5rem;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -2.06rem;
  top: 0.45rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--pcma-red);
}

.quote-box {
  border-left: 4px solid var(--pcma-gold);
  padding: 1rem 1.25rem;
  background: #fffdf3;
  border-radius: 0.75rem;
}

@media (max-width: 991.98px) {
  .hero-section,
  .page-hero {
    min-height: 62vh;
  }

  .gallery-grid {
    column-count: 2;
  }
}

@media (max-width: 767.98px) {
  .topbar {
    font-size: 0.8rem;
  }

  .section-padding {
    padding: 60px 0;
  }

  .gallery-grid {
    column-count: 1;
  }
}

.feature-equal .card-modern,
.doc-upload-card,
.membership-card,
.glow-counter {
    height: 100%;
}

.membership-card {
    border: 1px solid rgba(244, 180, 0, 0.35);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.doc-upload-card {
    border: 2px dashed rgba(11, 31, 77, 0.28);
    border-radius: 1rem;
}

.glow-counter {
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 rgba(244, 180, 0, 0.2);
}

.mobile-sticky-join {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1048;
}

@media (min-width: 992px) {
    .mobile-sticky-join {
        display: none !important;
    }
}


/* ========================= */
/* PREMIUM FAQ SECTION CSS   */
/* ========================= */

.custom-faq .accordion-item {
    background: #fff;
    transition: all 0.3s ease;
}

    .custom-faq .accordion-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 14px 30px rgba(11, 31, 77, 0.08) !important;
    }

.custom-faq .accordion-button {
    padding: 1.25rem 1.4rem;
    background: #fff;
    color: var(--pcma-blue);
    font-size: 1.02rem;
    box-shadow: none !important;
}

    .custom-faq .accordion-button:not(.collapsed) {
        background: linear-gradient( 135deg, rgba(11, 31, 77, 0.05), rgba(193, 18, 31, 0.05) );
        color: var(--pcma-red);
    }

    .custom-faq .accordion-button::after {
        background-size: 1rem;
        transition: all 0.3s ease;
    }

.custom-faq .accordion-body {
    padding: 1.2rem 1.4rem 1.5rem;
    line-height: 1.8;
    font-size: 0.96rem;
}

@media (max-width: 767px) {

    .custom-faq .accordion-button {
        font-size: 0.95rem;
        padding: 1rem;
    }

    .custom-faq .accordion-body {
        font-size: 0.92rem;
        padding: 1rem;
    }
}

/* ===================================== */
/* PREMIUM CTA SECTION CSS */
/* ===================================== */

.premium-cta {
    background: linear-gradient( 135deg, #071633 0%, #0b1f4d 35%, #102d78 70%, #c1121f 100% );
    border-radius: 2rem;
    padding: 5rem 4rem;
    box-shadow: 0 25px 60px rgba(11, 31, 77, 0.28), inset 0 1px 0 rgba(255,255,255,0.08);
    position: relative;
    z-index: 2;
}

/* Decorative Shapes */

.cta-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    z-index: 1;
}

.cta-shape-1 {
    width: 300px;
    height: 300px;
    background: rgba(244, 180, 0, 0.15);
    top: -100px;
    left: -100px;
}

.cta-shape-2 {
    width: 260px;
    height: 260px;
    background: rgba(193, 18, 31, 0.12);
    bottom: -120px;
    right: -100px;
}

/* Badge */

.cta-badge {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    padding: 0.7rem 1.2rem;
    border-radius: 999px;
    backdrop-filter: blur(8px);
    font-size: 0.92rem;
    font-weight: 500;
}

/* Mini Features */

.mini-feature {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 1rem;
    padding: 1rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

    .mini-feature:hover {
        transform: translateY(-4px);
        background: rgba(255,255,255,0.14);
    }

    .mini-feature i {
        color: var(--pcma-gold);
        font-size: 1.2rem;
    }

/* Buttons */

.cta-btn-primary {
    background: var(--pcma-gold);
    color: #111;
    border-radius: 999px;
    padding: 0.9rem 1.8rem;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(244,180,0,0.35);
}

    .cta-btn-primary:hover {
        transform: translateY(-3px);
        background: #ffd24d;
        color: #111;
    }

.cta-btn-whatsapp {
    background: #25D366;
    color: white;
    border-radius: 999px;
    padding: 0.9rem 1.8rem;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(37,211,102,0.28);
}

    .cta-btn-whatsapp:hover {
        transform: translateY(-3px);
        background: #1ebe5d;
        color: white;
    }

/* Contact Card */

.cta-contact-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 1.6rem;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.contact-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(244,180,0,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pcma-gold);
    font-size: 2rem;
}

.contact-number-box {
    background: rgba(255,255,255,0.06);
    border-radius: 1rem;
    padding: 1rem;
    transition: all 0.3s ease;
}

    .contact-number-box:hover {
        background: rgba(255,255,255,0.12);
    }

.number-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(244,180,0,0.14);
    color: var(--pcma-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.contact-number {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
}

    .contact-number:hover {
        color: var(--pcma-gold);
    }

/* Responsive */

@media (max-width: 991px) {

    .premium-cta {
        padding: 3rem 2rem;
    }
}

@media (max-width: 767px) {

    .premium-cta {
        padding: 2.5rem 1.5rem;
        border-radius: 1.4rem;
    }

        .premium-cta h2 {
            font-size: 2rem;
        }

    .mini-feature {
        justify-content: center;
    }
}
/* ===================================== */
/* PREMIUM FOOTER CSS */
/* ===================================== */

.premium-footer {
    background: linear-gradient( 135deg, #050f28 0%, #081a45 40%, #0b1f4d 100% );
    padding-top: 5rem;
    color: #dbe4ff;
    position: relative;
}

/* Background Shapes */

.footer-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.footer-shape-1 {
    width: 260px;
    height: 260px;
    background: rgba(193,18,31,0.12);
    top: -80px;
    right: -80px;
}

.footer-shape-2 {
    width: 220px;
    height: 220px;
    background: rgba(244,180,0,0.08);
    bottom: -80px;
    left: -80px;
}

/* Logo */

.footer-logo {
    width: 64px;
    height: 64px;
    border-radius: 1rem;
    background: linear-gradient( 135deg, var(--pcma-red), #e63946 );
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: white;
    box-shadow: 0 15px 30px rgba(193,18,31,0.28);
}

/* Text */

.footer-text {
    color: rgba(255,255,255,0.72);
    line-height: 1.9;
}

/* Titles */

.footer-title {
    color: white;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
}

    .footer-title::after {
        content: "";
        width: 55px;
        height: 3px;
        background: var(--pcma-gold);
        position: absolute;
        left: 0;
        bottom: -10px;
        border-radius: 999px;
    }

/* Links */

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    transition: all 0.3s ease;
}

    .footer-links a:hover {
        color: var(--pcma-gold);
        padding-left: 5px;
    }

/* Social Icons */

.footer-social {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .footer-social:hover {
        transform: translateY(-5px);
        background: var(--pcma-gold);
        color: #111;
    }

/* Contact Box */

.footer-contact-box {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255,255,255,0.05);
    border-radius: 1rem;
    padding: 1rem;
    transition: all 0.3s ease;
}

    .footer-contact-item:hover {
        background: rgba(255,255,255,0.09);
    }

.footer-contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(193,18,31,0.15);
    color: var(--pcma-red);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .footer-contact-icon.whatsapp {
        background: rgba(37,211,102,0.15);
        color: #25D366;
    }

    .footer-contact-icon.email {
        background: rgba(244,180,0,0.12);
        color: var(--pcma-gold);
    }

.footer-contact-item a {
    color: white;
    text-decoration: none;
    font-weight: 600;
}

    .footer-contact-item a:hover {
        color: var(--pcma-gold);
    }

/* Newsletter */

.newsletter-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 1.5rem;
    padding: 2rem;
    backdrop-filter: blur(12px);
}

.newsletter-badge {
    background: rgba(244,180,0,0.14);
    color: var(--pcma-gold);
    padding: 0.45rem 1rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
}

.footer-input {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: white;
    border-radius: 999px;
    padding: 0.95rem 1.2rem;
    padding-right: 3rem;
}

    .footer-input:focus {
        background: rgba(255,255,255,0.12);
        border-color: var(--pcma-gold);
        box-shadow: none;
        color: white;
    }

    .footer-input::placeholder {
        color: rgba(255,255,255,0.55);
    }

.footer-input-icon {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,0.55);
}

.footer-subscribe-btn {
    background: linear-gradient( 135deg, var(--pcma-red), #e63946 );
    border: none;
    border-radius: 999px;
    padding: 0.9rem 1rem;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .footer-subscribe-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 25px rgba(193,18,31,0.28);
    }

/* Bottom */

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1.5rem 0;
}

.footer-copy {
    color: rgba(255,255,255,0.7);
}

.footer-bottom-links {
    display: flex;
    justify-content: center;
    justify-content: md-end;
    gap: 12px;
    flex-wrap: wrap;
}

    .footer-bottom-links a {
        color: rgba(255,255,255,0.7);
        text-decoration: none;
    }

        .footer-bottom-links a:hover {
            color: var(--pcma-gold);
        }

/* Responsive */

@media (max-width: 991px) {

    .premium-footer {
        padding-top: 4rem;
    }
}

@media (max-width: 767px) {

    .premium-footer {
        padding-top: 3.5rem;
    }

    .newsletter-card {
        padding: 1.5rem;
    }
}
/* ===================================== */
/* HERO SLIDER SECTION CSS */
/* ===================================== */

.hero-slider-section {
    position: relative;
    overflow: hidden;
    background: #081a45;
}

.hero-slide {
    min-height: 720px;
    position: relative;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

/* Background */

.hero-slide-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

    .hero-slide-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.18;
        filter: blur(2px);
    }

/* Overlay */

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 90deg, rgba(5,15,40,0.95) 0%, rgba(11,31,77,0.88) 45%, rgba(11,31,77,0.55) 100% );
    z-index: 2;
}

.hero-slide .container {
    position: relative;
    z-index: 5;
}

/* Badge */

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.4rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: white;
    font-weight: 600;
    backdrop-filter: blur(12px);
}

/* Title */

.hero-title {
    font-size: 4.3rem;
    line-height: 1.08;
    font-weight: 800;
    color: white;
    margin: 1.5rem 0;
}

    .hero-title span {
        color: var(--pcma-gold);
        display: block;
    }

/* Description */

.hero-desc {
    color: rgba(255,255,255,0.82);
    font-size: 1.1rem;
    line-height: 1.9;
    max-width: 650px;
}

/* Features */

.hero-feature-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 2rem;
}

.hero-feature-item {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.08);
    color: white;
    padding: 0.85rem 1.2rem;
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(10px);
}

    .hero-feature-item i {
        color: var(--pcma-gold);
    }

/* Buttons */

.hero-btn-primary {
    background: linear-gradient( 135deg, var(--pcma-red), #ef233c );
    border: none;
    color: white;
    padding: 1rem 2rem;
    border-radius: 999px;
    font-weight: 600;
    transition: 0.3s;
}

    .hero-btn-primary:hover {
        transform: translateY(-3px);
        color: white;
    }

.hero-btn-outline {
    border: 2px solid rgba(255,255,255,0.65);
    color: white;
    padding: 1rem 2rem;
    border-radius: 999px;
    transition: 0.3s;
}

    .hero-btn-outline:hover {
        background: white;
        color: var(--pcma-blue);
    }

/* Right Image */

.hero-image-wrap {
    position: relative;
    text-align: center;
}

    .hero-image-wrap img {
        width: 100%;
        max-width: 780px;
        border-radius: 1.5rem;
        box-shadow: 0 25px 60px rgba(0,0,0,0.35);
        border: 1px solid rgba(255,255,255,0.08);
    }

/* Floating Badge */

.floating-badge {
    position: absolute;
    left: 50%;
    bottom: -25px;
    transform: translateX(-50%);
    background: linear-gradient( 135deg, var(--pcma-red), #0b1f4d );
    color: white;
    padding: 1rem 1.8rem;
    border-radius: 999px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

/* Controls */

.custom-control {
    width: 60px;
}

    .custom-control span {
        width: 54px;
        height: 54px;
        border-radius: 50%;
        background: rgba(255,255,255,0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        backdrop-filter: blur(10px);
        transition: 0.3s;
    }

        .custom-control span:hover {
            background: var(--pcma-red);
        }

/* Indicators */

.custom-indicators {
    bottom: 25px;
}

    .custom-indicators button {
        width: 12px !important;
        height: 12px !important;
        border-radius: 50%;
        border: none !important;
        background: rgba(255,255,255,0.5) !important;
    }

    .custom-indicators .active {
        width: 34px !important;
        border-radius: 999px;
        background: var(--pcma-gold) !important;
    }

/* Stats */

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 2rem;
}

.hero-stat-box {
    background: rgba(255,255,255,0.08);
    border-radius: 1rem;
    padding: 1.2rem;
    min-width: 140px;
    text-align: center;
    color: white;
}

    .hero-stat-box h4 {
        color: var(--pcma-gold);
        font-size: 2rem;
        font-weight: 700;
    }

/* Checklist */

.hero-check-list {
    margin-top: 2rem;
}

    .hero-check-list div {
        margin-bottom: 1rem;
        color: white;
    }

    .hero-check-list i {
        color: #22c55e;
        margin-right: 10px;
    }

/* Responsive */

@media (max-width: 991px) {

    .hero-slide {
        min-height: auto;
        padding: 100px 0 80px;
        text-align: center;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-feature-list,
    .hero-stats {
        justify-content: center;
    }

    .hero-image-wrap {
        margin-top: 2rem;
    }
}

@media (max-width: 767px) {

    .hero-slide {
        padding: 90px 0 70px;
    }

    .hero-title {
        font-size: 2.3rem;
    }

    .hero-desc {
        font-size: 1rem;
    }

    .hero-feature-item {
        width: 100%;
        justify-content: center;
    }

    .hero-btn-primary,
    .hero-btn-outline {
        width: 100%;
    }

    .floating-badge {
        position: relative;
        bottom: auto;
        margin-top: 20px;
        left: auto;
        transform: none;
        display: inline-block;
    }

    .custom-control {
        display: none;
    }
}

/* ===================================== */
/* SIMPLE HERO IMAGE SLIDER CSS */
/* ===================================== */

.simple-hero-slider {
    position: relative;
    overflow: hidden;
    background: #081a45;
}

/* Image */

.slider-img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

/* Controls */

.slider-control {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

    .slider-control i {
        color: white;
        font-size: 1.4rem;
    }

    .slider-control:hover {
        background: rgba(193,18,31,0.9);
    }

/* Indicators */

.carousel-indicators {
    bottom: 25px;
}

    .carousel-indicators button {
        width: 12px !important;
        height: 12px !important;
        border-radius: 50%;
        border: none !important;
        background: rgba(255,255,255,0.6) !important;
    }

    .carousel-indicators .active {
        width: 34px !important;
        border-radius: 999px;
        background: #f4b400 !important;
    }

/* Responsive */

@media (max-width: 991px) {

    .slider-img {
        height: auto;
    }
}

@media (max-width: 767px) {

    .slider-control {
        width: 42px;
        height: 42px;
    }

        .slider-control i {
            font-size: 1rem;
        }
}

/* Navbar Dropdown */

.dropdown-menu {
    min-width: 240px;
    padding: 12px;
    border-radius: 1rem;
    animation: fadeDropdown 0.25s ease;
}

.dropdown-item {
    border-radius: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

    .dropdown-item:hover {
        background: rgba(11,31,77,0.06);
        color: var(--pcma-red);
        padding-left: 18px;
    }

.dropdown-toggle::after {
    margin-left: 8px;
    vertical-align: middle;
}

@keyframes fadeDropdown {

    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* ===================================== */
/* NAVBAR DROPDOWN HOVER */
/* ===================================== */

.navbar .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all 0.3s ease;
    margin-top: 0;
    border: none;
    border-radius: 1rem;
    min-width: 240px;
    padding: 12px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* Show on Hover */

.navbar .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Dropdown Items */

.navbar .dropdown-item {
    border-radius: 0.8rem;
    padding: 12px 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

    .navbar .dropdown-item:hover {
        background: rgba(11,31,77,0.06);
        color: var(--pcma-red);
        padding-left: 22px;
    }

/* Arrow Rotation */

.navbar .dropdown-toggle::after {
    transition: transform 0.3s ease;
}

.navbar .dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

/* Mobile Fix */

@media (max-width: 991px) {

    .navbar .dropdown-menu {
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0;
        margin-top: 10px;
    }

        .navbar .dropdown-menu.show {
            display: block;
        }
}

/* ===================================== */
/* NAVBAR LOGO */
/* ===================================== */

.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

/* Logo */

.navbar-logo {
    width: 72px;
    height: 72px;
    object-fit: contain;
}

/* Text */

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--pcma-blue);
}

.brand-subtitle {
    font-size: 1rem;
    font-weight: 700;
    color: var(--pcma-blue);
    margin-top: 6px;
}

/* Responsive */

@media (max-width: 767px) {

    .navbar-logo {
        width: 56px;
        height: 56px;
    }

    .brand-title,
    .brand-subtitle {
        font-size: 0.9rem;
    }
}