/* Base Styles */
:root {
    --primary-color: #007bff;
    --secondary-color: #28a745;
    --danger-color: #dc3545;
    --light-color: #f0f2f5;
    --dark-color: #1f2d3d;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);
    --glass-shadow: rgba(31, 45, 61, 0.1);
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: rgba(79, 172, 254, 0.1);
}

/* Glass Card Effect */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    box-shadow: 0 8px 32px 0 var(--glass-shadow);
    transition: all 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px 0 var(--glass-shadow);
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0px 20px 20px rgba(0, 0, 0, 0.15);
    background-color: white;
}

.info-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    padding-left: 255px;
    background-color: #f5f5f5;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
}

.phone,
.mail {
    margin: 0 15px;
}

.phone:hover,
.mail:hover {
    color: var(--secondary-color);
}

.support-social a i {
    font-size: 16px;
}

.trapezoid-logo {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: 125px;
    background-color: white;
    clip-path: polygon(0% 0%, 80% 0%, 60% 100%, 0% 100%);
    background-image: url('../Images/City-Skyline-Transparent.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    z-index: 999;
}

.trapezoid-logo img {
    width: 65%;
    object-fit: cover;
    margin: 18px 0px;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    padding-left: 225px;
    background-color: white;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    height: 60px;
}

.nav-links {
    gap: 25px;
}

.nav-links a {
    margin: 0 15px;
    text-decoration: none;
    color: black;
    position: relative;
    text-decoration: none;
    display: inline-block;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Login Button Styles */
.login-btn {
    margin-right: 40px;
    border: none;
    color: white;
    background: linear-gradient(135deg, #007bff, #28a745);
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.login-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
    background: linear-gradient(135deg, #0056b3, #1e7e34);
}

.login-btn:active {
    transform: translateY(-1px) scale(1.02);
}

/* If the login button is in the navbar */
.nav-links .login-btn {
    margin: 0 15px;
    padding: 10px 20px;
    font-size: 14px;
}

.nav-links .login-btn:hover {
    color: white;
}

/* New Hero Section */
.new-hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 125px;
    position: relative;
    z-index: 1;
}

.new-hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../Images/background-city.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: brightness(0.6);
    z-index: -1;
}

/* If you don't have the image, you can replace with this linear gradient as a fallback */
/* Remove the additional overlay that might be interfering */
.new-hero::before {
    display: none;
}

.hero-overlay {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Stats Overview (Former Hero) */
.stats-overview {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    align-items: top;
    padding: 10px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    height: 100vh;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1200px) {

    .hero,
    .impact {
        flex-direction: column;
        height: auto;
    }

    .left,
    .heading {
        width: 90%;
    }

    .stats {
        margin-right: 0;
    }

    .steps-container {
        gap: 100px;
    }
}

@media (max-width: 768px) {
    .info-bar {
        padding-left: 10px;
        flex-direction: column;
        gap: 10px;
    }

    .main-nav {
        padding-left: 10px;
    }

    .trapezoid-logo {
        position: relative;
        width: 100%;
        clip-path: none;
        height: 80px;
    }

    .nav-links a {
        margin: 0 8px;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .process-steps {
        gap: 50px;
    }

    .process-tile {
        width: 100%;
        max-width: 300px;
    }

    .hero .right iframe {
        width: 100%;
    }

    .new-hero {
        height: 80vh;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .stats-overview {
        flex-direction: column;
        height: auto;
    }
}

/* Updated Carousel Tile Styles */
.tile {
    width: 150px;
    height: 150px;
    margin-right: 10px;
    background-color: var(--glass-bg);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    transition: all 0.3s ease;
    padding: 15px;
}

.tile:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.15);
}

.tile i {
    font-size: 40px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.tile span {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-color);
    text-align: center;
}

/* Hero Section */
.left {
    width: 50%;
    padding: 20px;
    box-sizing: border-box;
    margin-left: 50px;
}

.left h1 {
    font-size: 40px;
    margin-bottom: 20px;
    padding: 10px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.left .des {
    font-size: 14px;
    margin-bottom: 20px;
    padding: 0px 20px;
    border-left: var(--primary-color) solid 2px;
}

/* Testimonial Section */
.testimonials-section {
    padding: 6rem 2rem;
    background-color: white;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    /* slate-600 */
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.testimonial-card {
    background-color: #f1f5f9;
    /* gray-50 */
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
    font-style: italic;
    color: #64748b;
    /* slate-600 */
    margin-bottom: 1.5rem;
}

.testimonial-author .author-name {
    font-weight: bold;
    color: #1e293b;
    /* slate-800 */
}

.testimonial-author .author-role {
    font-size: 0.875rem;
    font-weight: 600;
    color: #10b981;
    /* green-500 or blue-500 depending on author */
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    animation: fadeIn 1s forwards;
}

.fade-up-stagger {
    opacity: 0;
    animation: fadeIn 0.8s forwards;
}

/* Carousel Section */
.carousel {
    margin: 100px 0px;
    height: 500px;
}

.carousel-track {
    margin: 0px auto;
    width: 92vw;
    height: 500px;
    overflow: hidden;
    box-sizing: border-box;
}

.carousel-track-left {
    margin-top: 30px;
    display: flex;
    width: max-content;
    gap: 60px;
    animation: scroll-left 10s linear infinite;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.carousel-track-right {
    display: flex;
    width: max-content;
    margin-top: 40px;
    gap: 60px;
    animation: scroll-right 10s linear infinite;
}

@keyframes scroll-right {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* Impact Section */
.impact {
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    height: 80vh;
    width: 90vw;
    gap: 100px;
}

.impact .heading h1 {
    font-size: 40px;
    margin-bottom: 20px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stats {
    margin: 20px;
    margin-right: 80px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    padding: 10px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    gap: 50px;
}

.block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    height: 150px;
    width: 200px;
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    background-color: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-bottom: var(--primary-color) 15px solid;
    transition: all 0.3s ease;
}

.block p {
    font-size: 18px;
}

.block i {
    font-size: 40px;
    color: var(--primary-color);
}

.block p,
.block h2,
.block i {
    margin: 5px;
}

.block:hover {
    transform: translateY(-10px);
    box-shadow: 0px 0px 20px rgba(0, 123, 255, 0.4);
}

/* Steps Section */
.steps-section {
    padding: 80px 0;
    background-color: rgba(255, 255, 255, 0.8);
    text-align: center;
}

.steps-section h2 {
    font-size: 32px;
    margin-bottom: 50px;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
}

.steps-section h2::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    bottom: -10px;
    left: 20%;
}

.process-steps {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 75px;
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 30px 20px;
    position: relative;
}

.process-tile {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    padding: 30px 20px;
    width: 250px;
    min-height: 220px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px 0 var(--glass-shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.process-tile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.process-tile:nth-child(1) {
    border-bottom: 3px solid var(--primary-color);
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.15);
}

.process-tile:nth-child(2) {
    border-bottom: 3px solid #9c27b0;
    box-shadow: 0 10px 25px rgba(156, 39, 176, 0.15);
}

.process-tile:nth-child(3) {
    border-bottom: 3px solid var(--secondary-color);
    box-shadow: 0 10px 25px rgba(40, 167, 69, 0.15);
}

.process-tile:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 123, 255, 0.25);
}

.step-number {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 20px;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid white;
}

/* Icon styles */
.step-icon {
    margin-bottom: 15px;
    margin-top: 10px;
    position: relative;
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.process-tile:nth-child(1) .step-icon {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.15), rgba(0, 198, 255, 0.15));
    border: 2px dashed rgba(0, 123, 255, 0.4);
}

.process-tile:nth-child(2) .step-icon {
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.15), rgba(224, 64, 251, 0.15));
    border: 2px dashed rgba(156, 39, 176, 0.4);
}

.process-tile:nth-child(3) .step-icon {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.15), rgba(132, 212, 90, 0.15));
    border: 2px dashed rgba(40, 167, 69, 0.4);
}

.step-icon i {
    font-size: 32px;
    animation: pulse 2s infinite alternate;
}

.process-tile:nth-child(1) .step-icon i {
    color: #0070e0;
}

.process-tile:nth-child(2) .step-icon i {
    color: #9c27b0;
}

.process-tile:nth-child(3) .step-icon i {
    color: #218838;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.9;
    }

    100% {
        transform: scale(1.2);
        opacity: 1;
    }
}

.process-tile h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark-color);
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.process-tile:nth-child(1) h3 {
    color: #0070e0;
}

.process-tile:nth-child(2) h3 {
    color: #9c27b0;
}

.process-tile:nth-child(3) h3 {
    color: #218838;
}

.process-tile p {
    color: #666;
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
    padding: 0 5px;
}

/* Emergency Helpline Section */
.helpline-section {
    padding: 80px 0;
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.helpline-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    background: linear-gradient(to right, var(--primary-color), var(--danger-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.helpline-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.helpline-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 8px 32px 0 var(--glass-shadow);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 200px;
}

.helpline-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Removing the old i style as we've moved to emoji divs */

.helpline-card h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.helpline-btn {
    display: inline-block;
    padding: 10px 30px;
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s ease;
}

.helpline-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

/* Colored cards for each emergency service */
.helpline-card.medical {
    border-top: 4px solid #e74c3c;
}

.helpline-card.medical i {
    color: #e74c3c;
}

.helpline-card.medical .helpline-btn {
    background-color: #e74c3c;
}

.helpline-card.medical .helpline-btn:hover {
    background-color: #c0392b;
}

.helpline-card.police {
    border-top: 4px solid #3498db;
}

.helpline-card.police i {
    color: #3498db;
}

.helpline-card.police .helpline-btn {
    background-color: #3498db;
}

.helpline-card.police .helpline-btn:hover {
    background-color: #2980b9;
}

.helpline-card.fire {
    border-top: 4px solid #e67e22;
}

.helpline-card.fire i {
    color: #e67e22;
}

.helpline-card.fire .helpline-btn {
    background-color: #e67e22;
}

.helpline-card.fire .helpline-btn:hover {
    background-color: #d35400;
}

.helpline-card.women {
    border-top: 4px solid #9b59b6;
}

.helpline-card.women i {
    color: #9b59b6;
}

.helpline-card.women .helpline-btn {
    background-color: #9b59b6;
}

.helpline-card.women .helpline-btn:hover {
    background-color: #8e44ad;
}

.helpline-card.child {
    border-top: 4px solid #2ecc71;
}

.helpline-card.child i {
    color: #2ecc71;
}

.helpline-card.child .helpline-btn {
    background-color: #2ecc71;
}

.helpline-card.child .helpline-btn:hover {
    background-color: #27ae60;
}

.helpline-card.disaster {
    border-top: 4px solid #f39c12;
}

.helpline-card.disaster i {
    color: #f39c12;
}

.helpline-card.disaster .helpline-btn {
    background-color: #f39c12;
}

.helpline-card.disaster .helpline-btn:hover {
    background-color: #d68910;
}

.helpline-card.senior {
    border-top: 4px solid #7f8c8d;
}

.helpline-card.senior i {
    color: #7f8c8d;
}

.helpline-card.senior .helpline-btn {
    background-color: #7f8c8d;
}

.helpline-card.senior .helpline-btn:hover {
    background-color: #636e72;
}

.helpline-card.traffic {
    border-top: 4px solid #16a085;
}

.helpline-card.traffic i {
    color: #16a085;
}

.helpline-card.traffic .helpline-btn {
    background-color: #16a085;
}

.helpline-card.traffic .helpline-btn:hover {
    background-color: #1abc9c;
}

/* Near Me Section */
.near-me-section {
    padding: 80px 0;
    background-color: rgba(255, 255, 255, 0.7);
}

.near-me-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.near-me-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.near-me-options {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.near-me-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 25px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px var(--glass-shadow);
}

.near-me-btn i {
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.near-me-btn span {
    font-weight: 500;
    color: var(--dark-color);
}

.near-me-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.near-me-btn.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
}

.near-me-btn.active i,
.near-me-btn.active span {
    color: white;
}

.near-me-map {
    height: 500px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--glass-shadow);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #888;
}

.map-placeholder i {
    font-size: 48px;
    margin-bottom: 15px;
}

/* Footer Section */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 50px 0 0;
    margin-top: 50px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.footer-section p {
    margin-bottom: 10px;
    color: #ccc;
}

.footer-section p i {
    margin-right: 10px;
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    border-top: 1px solid #444;
    margin-top: 30px;
}

.footer-bottom p {
    font-size: 14px;
    color: #888;
}

/* Add styles for CTA buttons */
.cta-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.btn {
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
}

.primary-btn {
    background-color: var(--primary-color);
    color: white;
    margin: 30px;
}

.primary-btn:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.secondary-btn {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    height: auto;
    width: auto;
    margin: 30px;
    background-color: whitesmoke;
}

.secondary-btn:hover {
    background-color: rgba(0, 123, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background-color: white;
}

/* Additional styling to ensure step numbers are visible */
.process-tile {
    margin-top: 30px;
}

.steps-section {
    padding-top: 80px;
}

/* Ensure step numbers don't get cut off at the container edges */
.process-steps {
    padding-top: 30px;
    margin-top: 10px;
    position: relative;
}

/* Replacing with unified top border styling in the main tile styling */

.process-tile:nth-child(1) .step-number {
    background: linear-gradient(135deg, #007bff, #00c6ff);
    color: white;
}

.process-tile:nth-child(2) .step-number {
    background: linear-gradient(135deg, #9c27b0, #e040fb);
    color: white;
}

.process-tile:nth-child(3) .step-number {
    background: linear-gradient(135deg, #28a745, #84d45a);
    color: white;
}

/* Replace icon styles with emoji styles */
.helpline-emoji {
    font-size: 48px;
    margin-bottom: 15px;
    animation: pulse 2s infinite alternate;
}

.helpline-card.medical .helpline-emoji {
    color: #e74c3c;
}

.helpline-card.police .helpline-emoji {
    color: #3498db;
}

.helpline-card.fire .helpline-emoji {
    color: #e67e22;
}

.helpline-card.women .helpline-emoji {
    color: #9b59b6;
}

.helpline-card.child .helpline-emoji {
    color: #2ecc71;
}

.helpline-card.disaster .helpline-emoji {
    color: #f39c12;
}

.helpline-card.senior .helpline-emoji {
    color: #7f8c8d;
}

.helpline-card.traffic .helpline-emoji {
    color: #16a085;
}

/* Add this to your existing CSS file */
.nav-social-link {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-social-link:hover {
    color: var(--primary-color);
}