:root {
    /* Colors */
    --primary-purple: #5b005d;
    --dark-bg: #121927;
     --light-bg: #ffffff;
    --text-light: #ffffff;
    --bg-muted: #f7f6f6;
    --accent-gold: #FDCC0D;
    --glass-bg: rgba(255, 255, 255, 0.05);
    
    /* Transitions */
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
}

/* Navbar Styling */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: white;
    color: #333;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 5px;
}



.brand-logo {
    width: 110px;   /* adjust size if needed */
    height: auto;
    display: block;
    margin: 0 auto 10px auto;
}


.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}



/* Navbar links */
.nav-links {
    position: relative;
    display: flex;
}

/* Links style */
.nav-links a {
    position: relative;
    padding: 8px 14px;
    text-decoration: none;
    color: #222;
    transition: color 0.3s ease;
}

/* Hover + Active color */
.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-purple);
    font-weight: 600;
}

/* Sliding underline (magic line) */
.navbar-underline {
    position: absolute;
    height: 2px;
    width: 0;
    background: var(--primary-purple);
    bottom: 0;
    left: 0;
    transition: all 0.35s ease;
    border-radius: 10px;
}



/* Dropdown Container */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Button */
.dropbtn {
    text-decoration: none;
    padding: 10px 15px;
    display: block;
    color: inherit;
}

/* Dropdown Content */
.dropdown-content {
    display: none;
    position: absolute;
    background: white;
    min-width: 180px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-radius: 8px;
    z-index: 1000;
}

/* Dropdown Links */
.dropdown-content a {
    display: block;
    padding: 6px 19px;
    text-decoration: none;
    color: black;
    transition: 0.3s;
}


/* Show Dropdown on Hover */
.dropdown:hover .dropdown-content {
    display: block;
}




/* Buttons */
button {
    cursor: pointer;
    border-radius: 25px;
    border: none;
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-purple);
    color: white;
    padding: 10px 20px;
}

.btn-primary.large {
    padding: 15px 35px;
    font-size: 1rem;
    background-color: var(--accent-gold);
    color: var(--dark-bg);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--primary-purple);
    padding: 8px 20px;
    color: var(--primary-purple);
}

.btn-video {
    background: rgba(255,255,255,0.1);
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
    padding: 15px 30px;
}

.menu-toggle {
    display: none;
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
    color: #000;
}




/* Hero Section */
.hero {
    height: 90vh;
    background: linear-gradient(rgba(26, 26, 46, 0.8), rgba(26, 26, 46, 0.9)), 
                url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 10%;
}

.hero-content h2 {
    max-width: 800px;
    margin: 0 auto 2rem;
    font-weight: 400;
    font-size: 1.5rem;
    color: var(--text-muted);
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 4rem;
    
}

/* Schedule Card */
.schedule-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.schedule-card h3 {
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.day {
    color: var(--accent-gold);
    font-weight: bold;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.event-name {
    font-size: 1.2rem;
    font-weight: bold;
    margin: 5px 0;
}

.time {
    color: var(--accent-gold);
    font-weight: bold;
}



/*=== service time section====== */
.service-times-container {
  background-color: var(--light-bg);
  padding: 80px 20px;
  text-align: center;
  color: var(--text-white);
}

.serif-title {
 
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: var(--primary-purple);
}

.subtitle2 {
  color: #000;
  font-size: 1rem;
  margin-bottom: 50px;
 
}

.card-wrapper {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}

/* THE CARD */
.service-card {
  background-color: var(--primary-purple);
  border-radius: 12px;
  padding: 40px 30px;
  flex: 1;
  min-width: 300px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.icon-bg {
  background-color: var(--light-bg);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.icon-bg i {
  color: var(--primary-purple);
  font-size: 1.2rem;
}

.day-label {
  color: var(--accent-gold);
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 1.2px;
  margin-bottom: 12px;
}

.service-name {
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.time-text {
  color: var(--accent-yellow);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 14px;
}

.info-text {
  color: var(--light-bg);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-top: auto;
}

/* FOOTER BUTTON */
.footer-action {
  margin-top: 50px;
}







/* ======= about us ====*/
.about-section {
    padding: 80px 5%;
    background-color: var(--bg-muted);
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-container {
    max-width: 1200px;
    display: flex;
    gap: 60px;
    align-items: center;
}

/* Image Styling */
.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 
                0 10px 10px -5px rgba(0, 0, 0, 0.04);
    display: block;
     
    
}

/* Text Styling */
.about-text {
    flex: 1;
}

.sub-heading {
    color: #000;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 12px;
}

.about-hg {
    color: var(--primary-purple);
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.about-text p {
    color: #000;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Button Styling */
.btn-outline-purple {
    margin-top: 10px;
    padding: 12px 28px;
    background: transparent;
    color: var(--primary-purple);
    border: 1.5px solid var(--primary-purple);
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline-purple:hover {
    background-color: var(--primary-purple);
    color: white;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
}


/* === beliefs section ==== */

.beliefs-section {
    padding: 80px 5%;
    background-color: var(--bg-muted);
    text-align: center;
}

.beliefs-header .serif-title3 {
    font-family: 'Georgia', serif;
    font-size: 2.2rem;
    color: var(--primary-purple);
    margin-bottom: 50px;
}

.beliefs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.belief-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: left;
    border: 1px solid #000000;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease;
}

.belief-card:hover {
    transform: translateY(-5px);
}

.plus-icon {
    background-color: var(--primary-purple);
    color: var(--text-light);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.belief-h3 {
    font-family: 'Georgia', serif;
    font-size: 1.3rem;
    color: #000;
    margin-bottom: 15px;
}

.belief-p {
    color:#000;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive adjustment for tablet/mobile */
@media (max-width: 768px) {
    .beliefs-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .beliefs-grid {
        grid-template-columns: 1fr;
    }
}




/* why=== */
/* ===============================
   PRAY ZONE SECTION
================================ */

.pray-zone{
    background:#f8f6fc;
    padding:80px 0;
    font-family: Arial, Helvetica, sans-serif;
}

/* Container */
.pray-container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* Grid Layout */
.pray-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

/* Title */
.pray-title{
    font-size:45px;
    font-weight:700;
    margin-bottom:25px;
    color: #121927;
}

.pray-highlight{
    color:var(--primary-purple);
}

/* Description */
.pray-desc{
    font-size:17px;
    line-height:1.8;
    color:#555;
    margin-bottom:25px;
}

.pray-mark{
    font-weight:700;
    color:var(--primary-purple);
}

/* List */
.pray-list{
    list-style:none;
    padding:0;
}

.pray-list li{
    display:flex;
    align-items:flex-start;
    gap:12px;
    margin-bottom:15px;
    font-size:16px;
    color:#444;
}

.pray-icon{
    color:var(--primary-purple);
}

/* Quote Box */
.pray-quote{
    margin-top:35px;
    padding:22px;
    border-left:5px solid var(--primary-purple);
    background:white;
    border-radius:10px;
    color: #121927;
    font-style:italic;
    box-shadow:0 6px 25px rgba(0,0,0,0.05);
}

.pray-author{
    display:block;
    margin-top:12px;
    font-weight:700;
    color:var(--primary-purple);
}

/* Image */
.pray-img{
    width:100%;
    border-radius:20px;
    transition:0.4s;
    box-shadow:0 10px 40px rgba(0,0,0,0.08);
}

.pray-img:hover{
    transform:scale(1.03);
}

/* Hidden before scroll */
.pray-fade{
    opacity:0;
    transform:translateY(40px);
    transition:0.8s ease;
}

/* Show animation */
.pray-fade.show{
    opacity:1;
    transform:translateY(0);
}


/* ===============================
   RESPONSIVE DESIGN
================================ */

/* Tablet */
@media(max-width:992px){
    .pray-grid{
        grid-template-columns:1fr;
        text-align:center;
    }

    .pray-list li{
        justify-content:center;
    }
}

/* Mobile */
@media(max-width:600px){
    .pray-title{
        font-size:32px;
    }

    .pray-desc{
        font-size:15px;
    }

    .pray-zone{
        padding:50px 0;
    }
}





/* === evets */

.events-section {
    background-color: var(--light-bg);
    padding: 100px 5%;
    color: var(--text-white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.events-container {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.event-subtitle {
    color: #000;
    font-size: 1.1rem;
}
/* Featured Card */
.featured-card {
    flex: 1.2;
    background-image: url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    min-height: 400px;
}

.card-overlay {
    background: linear-gradient(rgba(91, 0, 93, 0.75), rgba(199,44,255, 0.9));
    height: 100%;
    width: 100%;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    
}


.badge {
    background: var(--accent-yellow);
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.7rem;
    padding: 4px 12px;
    border-radius: 20px;
    align-self: flex-start;
    margin-bottom: 20px;
}

.event-title {
    font-family: 'Georgia', serif;
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.event-meta {
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.event-meta p {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.event-desc {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 450px;
}

.learn-more-btn {
    background: white;
    color: var(--primary-purple);
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
}

/* Sidebar Items */
.events-sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.event-item {
    background: var(--bg-muted);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    gap: 20px;
    transition: transform 0.3s ease;
}

.event-item:hover {
    background: #eeeded;
}

.item-thumb {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.4s ease;
}

.item-thumb:hover{
     transform: scale(1.1);
}

.item-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #242424;
}

.item-meta {
    font-size: 0.75rem;
    color: #242424;
    display: block;
    margin-bottom: 10px;
}
#meta-icon{
    color: var(--primary-purple);
}
.item-info p {
    font-size: 0.85rem;
    color: #242424;
    line-height: 1.4;
}

/* Footer Action */
.section-footer {
    text-align: center;
    margin-top: 50px;
}

.outline-pill-btn3 {
    background: transparent;
    border: 1px solid var(--primary-purple);
    color: var(--primary-purple);
    padding: 12px 30px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
}

.outline-pill-btn3:hover {
    border-color: var(--primary-purple);
    color: var(--text-light);
    background-color: var(--primary-purple);
}

/* Responsive */
@media (max-width: 992px) {
    .events-container {
        flex-direction: column;
    }
}



/* ===== VIDEO MODAL ===== */

.video-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 20px;
    animation: fadeIn 0.3s ease-in-out;
}

.video-modal-content {
    position: relative;
    width: 100%;
    max-width: 900px;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    transform: scale(0.9);
    animation: scaleUp 0.3s ease forwards;
}

.video-modal iframe {
    width: 100%;
    height: 500px;
    display: block;
}

.close-video {
    position: absolute;
    top: -45px;
    right: 0;
    font-size: 32px;
    color: #fff;
    cursor: pointer;
    transition: 0.3s ease;
}

.close-video:hover {
    color: #ccc;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleUp {
    from { transform: scale(0.8); }
    to { transform: scale(1); }
}

/* Responsive */
@media (max-width: 768px) {
    .video-modal iframe {
        height: 250px;
    }

    .close-video {
        top: -40px;
        font-size: 28px;
    }
}







/* ==== ministries-section === */

.ministries-section {
    background-color: var(--light-bg);
    padding: 100px 5%;
    color: var(--text-white);
    text-align: center;
}

.section-header {
    margin-bottom: 60px;
}

.serif-title {
    font-family: var(--serif-font);
    font-size: 2.8rem;
    margin-bottom: 10px;
}

.ministries-subtitle {
    color: #242424;
    font-size: 1.1rem;
}

/* Grid Layout */
.ministry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Card Styling */
.ministry-card {
    background-color: var(--bg-muted);
    border-radius: 16px;
    overflow: hidden;
    text-align: left;
    
    display: flex;
    flex-direction: column;
}

.ministry-card:hover {
   
}

.card-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    font-family: var(--serif-font);
    color: #242424;
}

.desc {
    color: #242424;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.meta-info {
    font-size: 0.8rem;
    color: #242424;
    margin-bottom: 20px;
}

.meta-info span {
    color: #000000; /* Soft blue/purple for labels */
    font-weight: 00;
}

.learn-more {
    color: var(--primary-purple);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Footer Button */
.section-footer {
    margin-top: 60px;
    
}

.view-all-btn2 {
    background: transparent;
    border: 1.5px solid var(--primary-purple);
    color: var(--primary-purple);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.view-all-btn2:hover {
    background-color: var(--primary-purple);
    border-color: var(--primary-purple);
    color: var(--light-bg);
}

/* Responsive */
@media (max-width: 1024px) {
    .ministry-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .ministry-grid { grid-template-columns: 1fr; }
    .serif-title { font-size: 2.2rem; }
}



/* === sermons-section ===  */

.sermon-video-section {
    background-color: var(--bg-muted);
    padding: 80px 5%;
    color: var(--text-white);
    text-align: center;
}

.sermon-video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1400px;
    margin: 50px auto;
}

.video-card {
    background: var(--light-bg);
    border-radius: 16px;
    overflow: hidden;
    text-align: left;
    cursor: pointer;
}
.sermons-subtitle{
    color: #242424;
    font-size: 20px;
}





/* Thumbnail & Play Button Logic */
.video-thumbnail {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.play-button {
    width: 60px;
    height: 60px;
    background: var(--primary-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.video-card:hover .play-overlay { opacity: 1; }
.video-card:hover .play-button { transform: scale(1); }
.video-card:hover .video-thumbnail img { transform: scale(1.05); }





/* Info Styling */
.video-info {
     padding: 25px; 
    }
.tag {
    color: var(--primary-purple);
    font-weight: 800;
    font-size: 0.7rem;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}
.video-info h3 { 
    font-family: 'Georgia', serif; 
    font-size: 1.1rem;
     margin-bottom: 10px;
     color: #242424;
     }
.video-info p {
     color: #333;
      font-size: 1rem;
     }





/* CTA BANNER STYLING */
.cta-banner {
    background-color: var(--primary-purple);
    padding: 80px 20px;
    text-align: center;
    color: var(--text-white);
   
}



.plus-icon-large {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
}

.cta-banner-hdg {
    font-family: var(--serif-font);
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

.cta-content p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn-white {
    background: var(--accent-gold);
    color: var(--dark-bg);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
}

.btn-outline-white {
    background: transparent;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
}

/* FOOTER STYLING */
.main-footer {
    background-color: var(--dark-footer-bg);
    padding: 80px 5% 40px;
    color: var(--text-white);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-brand {
    flex: 1;
    max-width: 350px;
}

.brand-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.logo-circle-small {
    background: var(--primary-purple);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: white;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--accent-gold);
}

/* Footer Nav Columns */
.footer-nav {
    flex: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.nav-col h4 {
    font-size: 1rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.nav-col a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.nav-col a:hover {
    color: var(--accent-gold);
}




/* Responsive */
@media (max-width: 768px) {
    .footer-top { flex-direction: column; }
    .footer-nav { grid-template-columns: 1fr 1fr; }
    .cta-content h2 { font-size: 2.2rem; }
}


.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Responsive: Stack on mobile */
@media (max-width: 640px) {
  .footer-container {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #ffffff; /* Brighter on hover */
}

.custom-hr{
    width:100%;
    height:0.2px;
    background:#ddd;
    margin:30px 0;
}





/* ===== MOBILE FULL SCREEN MENU ===== */
/* =========================
   BASE STYLE (Desktop)
========================= */

.menu-toggle {
    display: none;
}

/* =========================
   MOBILE DEVICES RESPONSIVENESS
========================= */

/* ⭐ Small phones (<=480px) */
@media (max-width: 480px) {

    .menu-toggle {
        display: block;
    }

    .nav-links {

        position: absolute;
        top: 70px;
        right: 10px;
        width: 200px;
        background: white;
        flex-direction: column;
        padding: 15px;
        display: none;
        box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        border-radius: 8px;
        align-items: center;
    }
}

/* ⭐ Large phones (481px – 600px) */
@media (min-width: 481px) and (max-width: 600px) {

    .menu-toggle {
        display: block;
    }

    .nav-links {

        position: absolute;
        top: 75px;
        right: 15px;
        width: 220px;
        background: white;
        flex-direction: column;
        padding: 18px;
        display: none;
        box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        border-radius: 8px;
        align-items: center;
    }
}

/* ⭐ Tablets (601px – 768px) */
@media (min-width: 601px) and (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    .nav-links {

        position: absolute;
        top: 80px;
        right: 20px;
        width: 240px;
        background: white;
        flex-direction: column;
        padding: 20px;
        display: none;
        box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        border-radius: 8px;
        align-items: center;
    }
}

/* ⭐ Small laptops (769px – 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {

    .menu-toggle {
        display: block;
    }
}

/* ⭐ Desktop (above 1024px) */
@media (min-width: 1025px) {

    .menu-toggle {
        display: none;
    }

    .nav-links {
        display: flex;
    }
}