section {
    overflow: hidden;
}

/* Custom Utilities */
.glass-panel {
    background: rgba(18, 18, 18, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.gold-border-bottom {
    position: relative;
}

.gold-border-bottom::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: #D4AF37;
    transition: width 0.4s ease;
}

.gold-border-bottom:hover::after {
    width: 100%;
}

.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.text-glow {
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Global Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    color: #ffffff;
    /* Default to white for dark theme */
}

h1 {
    font-size: 2.25rem;
    /* text-4xl */
    line-height: 1.25;
}

@media (min-width: 768px) {
    h1 {
        font-size: 3rem;
        /* md:text-5xl */
    }
}

h2 {
    font-size: 2.25rem;
    /* text-4xl */
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    h2 {
        font-size: 3rem;
        /* md:text-5xl */
    }
}

h3 {
    font-size: 1.5rem;
    /* text-2xl */
    margin-top: 2rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.25rem;
    /* text-xl */
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

/* Global Paragraph Style */
p {
    font-family: 'Inter', sans-serif;
    color: #9ca3af;
    /* text-gray-400 */
    font-weight: 300;
    /* font-light */
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Strong tag styling for inline headings */
strong,
b {
    color: #ffffff;
    font-weight: 600;
}


.ps-grad-text {
    background-image: linear-gradient(to right, #ff974f 0, #E91E63 36%, #E91E63 65%, #ff5752 100%);
    font-weight: 600;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Heart Animation */
.ps-pulse-heart {
    color: #E91E63;
    animation: heartbeat 1s infinite;
    font-size: 1rem;
}

@keyframes heartbeat {
    0% {
        transform: scale(1);
    }

    15% {
        transform: scale(1.3);
    }

    30% {
        transform: scale(1);
    }

    45% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1);
    }
}


/* ... other styles ... */


/* Map Animations */
.pulse-marker {
    position: relative;
    width: 12px;
    height: 12px;
    background-color: #D4AF37;
    border-radius: 50%;
    z-index: 10;
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.6);
    animation: ring-pulse 2s infinite cubic-bezier(0.4, 0, 0.6, 1);
}

.pulse-ring:nth-child(2) {
    animation-delay: 0.6s;
}

@keyframes ring-pulse {
    0% {
        width: 100%;
        height: 100%;
        opacity: 1;
    }

    100% {
        width: 300%;
        height: 300%;
        opacity: 0;
    }
}

.map-line {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: dash 4s linear infinite;
}

@keyframes dash {
    to {
        stroke-dashoffset: 0;
    }
}


/* Innovation Section Specific Reset */
.innovation-text h4 {
    margin-top: 0 !important;
    margin-bottom: 0.5rem !important;
}

.innovation-text p {
    margin-bottom: 0 !important;
}


/* Contact Details Specific Reset */
.contact-text p {
    margin-bottom: 0 !important;
}


/* Contact Details Specific Reset */
.contact-text p {
    margin-bottom: 0 !important;
}

/* SVG Map Styles */
.map-svg {
    width: 100%;
    height: 100%;
}

.map-svg path {
    fill: #1a1a1a;
    stroke: #333;
    stroke-width: 0.5px;
    transition: all 0.3s ease;
}

.map-svg path:hover {
    fill: #2a2a2a;
    stroke: #D4AF37;
}