/* =================================================================
   XcelVote - Main Stylesheet
   Color Scheme: Purple (#6C63FF), Pink (#FF6B9D), Blue (#0A1F44)
   ================================================================= */

/* Import Co Headline Font */
@font-face {
    font-family: 'Co Headline';
    src: url('../fonts/CoHeadline-Regular.woff2') format('woff2'),
         url('../fonts/CoHeadline-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Co Headline';
    src: url('../fonts/CoHeadline-Bold.woff2') format('woff2'),
         url('../fonts/CoHeadline-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

/* CSS Variables */
:root {
    --primary-color: #0A08B7;
    --secondary-color: #FF00DD;
    --accent-color: #00D4AA;
    --dark-blue: #0A1F44;
    --light-purple: #F0EEFF;
    --success-color: #00D4AA;
    --warning-color: #FFB800;
    --danger-color: #FF4757;
    --text-dark: #2C3E50;
    --text-light: #6C757D;
    --border-color: #E0E6ED;
    --border-color-red: #ef4444;
    --bg-light: #F8F9FA;
    --white: #FFFFFF;
    --shadow: 0 4px 20px rgba(108, 99, 255, 0.15);
    --shadow-hover: 0 8px 30px rgba(108, 99, 255, 0.25);
    --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color))
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Co Headline', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-light);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}
.bg-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --webkit-background-clip: text;
    -webkit-background-clip: text;
    background-clip: text;
    color:transparent;
}

.flex {
    display: flex;
}
.flex-row {
    flex-direction: row;
}

.flex-column {
    flex-direction: column;
}
.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}


.justify-between {
    justify-content: space-between;
}

.self-center {
    align-self: center;
}
.gap-2 {
    gap: 2rem;
}

.gap-1 {
    gap: 1rem;
}

.gap-05 {
    gap: 0.5rem;
}

.flex-shrink-0 {
    flex-shrink: 0;
}

.white-space-nowrap {
    white-space: nowrap;
}

.mb-0 {
    margin-bottom: 0!important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.min-280 {
    min-width: 280px;
}

/* =================================================================
   NAVIGATION
   ================================================================= */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.2rem;
}

.logo .tagline {
    font-size: 0.75rem;
    color: var(--text-light);
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
}

.nav-links a:is(.btn-primary) {
    color: var(--white);
}

.nav-links a:not(.btn-primary):hover,
.nav-links a.active {
    color: var(--primary-color);
}

.nav-links a:not(.btn-primary)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:not(.btn-primary):hover::after,
.nav-links a.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

/* =================================================================
   BUTTONS
   ================================================================= */
.btn-primary,
.btn-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(108, 99, 255, 0.3);
}

.btn-primary:hover,
.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(108, 99, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--text-dark);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-weight: 500;
    border: 2px solid var(--border-color);
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}


.scalloped-hr-bottom {
    height: 20px;
    margin:0 0 40px 0;
    background-color: white;
    border: none;
    position: relative;
}

.scalloped-hr-bottom::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-mask-image: radial-gradient(circle at 20px 20px, transparent 20px, black 20px);
    mask-image: radial-gradient(circle at 20px 20px, transparent 20px, black 20px);
    -webkit-mask-size: 40px 20px;
    mask-size: 40px 20px;
    -webkit-mask-repeat: repeat-x;
    mask-repeat: repeat-x;
}

/* =================================================================
   HERO SECTION WITH SLIDESHOW
   ================================================================= */
.hero-section {
    background: linear-gradient(135deg, #0A1F44 0%, #1a3a6b 100%);
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.hero-slideshow {
    position: relative;
}

.slide {
    display: none;
}

.slide.active {
    display: block;
    animation: fadeIn 0.8s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    position: relative;
    min-height: auto;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.hero-image img {
    width: 1920px;
    height:auto;
    object-fit: cover;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    animation: float 3s ease-in-out infinite;
}

.hero-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.hero-image a img {
    width: 1920px;
    height:auto;
    object-fit: cover;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Slide Navigation */
.slide-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.slide-prev,
.slide-next {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.slide-prev:hover,
.slide-next:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.slide-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--white);
    width: 30px;
    border-radius: 10px;
}

/* =================================================================
   PARTNERS SECTION
   ================================================================= */
.partners-section {
    padding: 60px 0;
    background: var(--white);
}

.partner-layout {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 2rem;
}


.partner-list {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    align-items: center;
}
.section-title {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--white);
    width: fit-content;
}
.text-left {
    text-align: left !important;
}

.text-center {
    text-align: center !important;
}

.w-full {
    width: 100%;
}
.partners-carousel-container {
    position: relative;
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.partners-carousel {
    display: flex;
    transition: transform 0.3s ease;
    gap: 0.3rem;
}

.partners-carousel .partner-logo {
    flex: 0 0 auto;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
    color: var(--secondary-color);
    border: none;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 99;
    font-size: 1rem;
}

.carousel-arrow:hover {
    transform: translateY(-50%) scale(1.1);
}

.carousel-arrow.hidden {
    display: none;
}

.carousel-arrow.prev {
    left: -10px;
}

.carousel-arrow.next {
    right: -10px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 0.7rem;
    align-items: center;
    justify-items: center;
    flex: 1;
    min-width: 0;
}

.partner-logo {
    padding: 1rem;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.partner-logo.about {
    padding: 0.5rem;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.partner-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

.partner-logo img {
    width: 120px;
    height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.store-links {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
}

.store-links img {
    width: 120px;
    height:auto;
}
.w-24 {
    width: 6rem !important;
}

.w-28 {
    width: 7rem !important;
}

.partner-logo.about img {
    max-width: 100px;
    height: auto;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0%);
}

.bar {
    height: 15px;
    width: var(--bar-width, 100px);
    background: var(--bar-bg, #ccc);
    border-radius: 999px;
    margin: 8px;
    display: inline-block;
}


.hr {
    height: var(--bar-height, 20px);
    width: 100%;
    background: var(--bar-bg, #ccc);
    display: inline-block;
    margin-bottom: 2.5rem;
}


/* =================================================================
   FEATURES SECTION
   ================================================================= */
.features-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.features-container {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.what-we-do {
    margin-top: 3rem;
}

.what-we-do p {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.feature-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 2rem;
    border-radius: 20px;
    text-align: left;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.feature-text {
    margin: 0 auto 1.5rem -3rem;
    background: var(--white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.feature-card p {
    color: var(--white);
    line-height: 1.6;
}

/* =================================================================
   EVENTS SECTION
   ================================================================= */
.events-section {
    padding:0 0 80px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-top: 1rem;
}

.search-bar {
    position: relative;
}

.search-bar i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 1.2rem;
}

.search-bar input {
    width: 100%;
    padding: 1rem 1rem 1rem 3.5rem;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-bar input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(108, 99, 255, 0.1);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 3rem;
}


.live-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
    margin-bottom: 3rem;
}

.event-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.event-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.action-btn {
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    border: 2px solid var(--border-color);
    background: var(--white);
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.action-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.action-btn.primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border: none;
}

.action-btn.primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.event-card:hover .event-image img {
    transform: scale(1.1);
}

.event-initials {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    font-weight: 700;
    color: var(--white);
}

.event-content {
    padding: 1rem;
}

.event-title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.event-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5rem;
    border: 1px solid var(--border-color-red);
    border-radius: 0.2rem;
}


.live-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.event-status {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.event-status.launched {
    background: #e8f8f5;
    color: var(--success-color);
}

.event-status.pending {
    background: #6C757D;
    color: var(--text-dark);
}

.event-status.ended {
    background: #fff3e0;
    color: var(--warning-color);
}

.event-countdown {
    font-size: 0.9rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.event-countdown i {
    color: var(--secondary-color);
}

.event-organizer {
    font-size: 0.9rem;
    color: var(--border-color-red);
    text-align: center;
}


/* =================================================================
   PAGINATION
   ================================================================= */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
}

.pagination-btn {
    padding: 0.7rem 1.2rem;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: var(--text-dark);
}

.pagination-btn:hover:not(:disabled) {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-numbers {
    display: flex;
    gap: 0.5rem;
}

.page-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.page-number:hover {
    background: var(--light-purple);
    color: var(--primary-color);
}

.page-number.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

/* =================================================================
   CTA SECTION
   ================================================================= */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    text-align: center;
    color: var(--white);
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* =================================================================
   FOOTER
   ================================================================= */
.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 0;
}

.footer-content {
    display: flex;
    flex-direction: row;
    align-items: end;
    position: relative;
    height: 600px;
    width: 100%;
}

.footer-bar {
    position: absolute;
    top: 1rem;
    left: 2.5rem;
    display: flex;
    align-items: self-start;
    justify-content: center;
    width: fit-content;
    z-index: 10;
}

.footer-contact-box {
    background: var(--gradient);
    padding: 2.5rem;
    height: 90%;
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top-right-radius: 10rem;
    z-index: 10;
}

.footer-contact-content {
    width: fit-content;
    display: flex;
    flex-direction: column;
    align-items: self-start;
    text-align: left;
    gap: 1.1rem;
    color: var(--white);
    overflow-y: auto;
}

.footer-contact-content::-webkit-scrollbar {
    display: none;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 600;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}
.footer-info-icon {
    border-radius: 50%;
    background: var(--secondary-color);
    width: 1.2rem;
    height: 1.2rem;
    color: var(--white);
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.footer-info-icon i {
   font-size: 0.6em;
}
.footer-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.footer-item div {
   display: flex;
    gap: 0.3rem;
    align-items: center;
}

.footer-address-box {
    background: var(--gradient);
    position: absolute;
    padding-top: 5rem;
    height: 100%;
    width: 70%;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top-left-radius: 10rem;
    border-top-right-radius: 10rem;
}


.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: translateY(-3px);
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding: 2rem 0.5rem;
    color: var(--white);
    background-color: var(--primary-color);
    width: 100%;
}

.footer-bottom .developer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-bottom .developer:hover {
    opacity: 1;
}

.footer-bottom .developer img {
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.footer-bottom .developer:hover img {
    transform: scale(1.1);
}

.footer-bottom .developer a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-bottom .developer a:hover {
    color: var(--white);
    text-decoration: underline;
}

.footer-bottom .developer a::after {
    content: "Colorbrace";
}



/* =================================================================
   RESPONSIVE DESIGN
   ================================================================= */
@media (max-width: 1024px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-image {
        order: -1;
    }

    .hero-section {
        min-height: 350px;
    }

    .footer-contact-box {
        width: 40%;
    }

    .footer-bar {
        left: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .partners-section {
        padding: 20px 0;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1rem;
    }

.partner-layout {
    flex-direction: column;
    gap: 0;
}

    .hero-section {
        min-height: 270px;
    }
    .partner-logo {
        padding: 0.5rem;
    }
    .features-container {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 3rem;
    }

    .footer-address-box {
        align-items: end;
        padding-right: 1rem;
        height: 90%;
    }

    .footer-bar {
       align-items: center;
        width: 100%;
    }

    .action-btn {
        flex: 1;
        min-width: 150px;
        justify-content: center;
    }


}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .btn-primary,
    .btn-cta,
    .btn-secondary {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .partner-list {
        flex-direction: column;
        gap: 0;
        margin-top: 0.5rem;
    }

    .hero-section {
        min-height: 130px;
    }


    .partner-logo {
        padding: 0.2rem;
    }

    .features-container {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 3rem;
    }

    .feature-text {
        margin: 0 auto 1.5rem -3rem;
        font-size: 1rem;
    }
    .features-grid {
        gap: 1rem;
    }


    .what-we-do p {
        font-size: 1rem;
    }

    .footer-bar {
        align-items: center;
        width: 100%;
        left: 0;
        position: relative;
        padding-bottom: 2rem;
    }
    .footer-content {
        flex-direction: column;
        height: auto;
        align-items: center;
    }
    .footer-contact-box {
        height: auto;
        width: 100%;
        border-top-left-radius: 5rem;
        border-top-right-radius: 5rem;

    }

    .footer-address-box {
        position: relative;
        height: auto;
        width: 100%;
        border-top-left-radius:0;
        border-top-right-radius: 0;
        padding-bottom: 4rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* Loading Indicator Styles */
.loading-container {
    display: none;
    position: relative;
    text-align: center;
    padding: 3rem 1rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    margin: 2rem 0;
    border: 1px solid var(--border-color);
}

.loading-container.show {
    display: block;
}

.loading-spinner {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    border: 4px solid var(--border-color);
    border-left: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loading-text {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.loading-subtext {
    color: var(--text-light);
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Loading overlay for entire sections */
.section-loading {
    position: relative;
    min-height: 200px;
}

.section-loading::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    z-index: 10;
    border-radius: 12px;
}

.section-loading .loading-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 11;
    display: block;
    background: transparent;
    border: none;
    backdrop-filter: none;
    margin: 0;
}

/* Small loading indicator for buttons */
.btn-loading {
    position: relative;
    pointer-events: none;
    opacity: 0.7;
}

.btn-loading::after {
    content: '';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-left: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Pulse animation for skeleton loading */
.loading-skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading-pulse 2s infinite;
    border-radius: 6px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes loading-pulse {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Card loading state */
.card-loading {
    position: relative;
    overflow: hidden;
}

.card-loading::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    z-index: 5;
}

.card-loading .loading-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 6;
    display: block;
    background: transparent;
    border: none;
    backdrop-filter: none;
}

/* Hide content while loading */
.loading-hide {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.loading-show {
    opacity: 1;
    transition: opacity 0.3s ease;
}
