/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

 a:link, a:visited, a:hover, a:active {
        text-decoration: none;
        color: black;
}
:root {
    --primary: #00ACEF;
    --secondary: #0E0507;
    --white: #FFFFFF;
    --light-gray: #f5f5f5;
    --dark-gray: #333333;
}

body {
    background-color: var(--white);
    color: var(--secondary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Styles */
header {
    background-color: var(--white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    height: 60px;
    width: auto;
}

.logo-text h1 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.logo-text p {
    font-size: 0.8rem;
    color: var(--secondary);
    font-weight: 500;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--primary);
    background-color: rgba(0, 172, 239, 0.1);
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    color: var(--secondary);
    cursor: pointer;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary), #0099cc);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    background-color: rgba(14, 5, 7, 0.7);
    padding: 2rem;
    border-radius: 10px;
    max-width: 600px;
    width: 90%;
}

.slide-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.slider-nav button {
    background-color: var(--primary);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background-color 0.3s;
}

.slider-nav button:hover {
    background-color: rgba(0, 172, 239, 0.8);
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-title p {
    color: var(--dark-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features {
    background-color: var(--light-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--secondary);
    margin-bottom: 1rem;
}

/* Quick Links Section */
.quick-links {
    background-color: var(--white);
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.link-card {
    display: block;
    text-align: center;
    padding: 3rem 2rem;
    background: var(--light-gray);
    border-radius: 10px;
    text-decoration: none;
    color: var(--secondary);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.link-card:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-10px);
    border-color: var(--primary);
}

.link-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.link-card h3 {
    margin-bottom: 1rem;
}

/* About Page Styles */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.about-text h3 {
    color: var(--secondary);
    margin: 2rem 0 1rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
}

.stats {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    align-content: center;
}

.stat-item {
    text-align: center;
    padding: 1.4rem;
    background: var(--light-gray);
    border-radius: 10px;
    
}

.stat-item h4 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Values Section */
.values {
    background-color: var(--light-gray);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.value-card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.value-card h3 {
    color: var(--secondary);
    margin-bottom: 1rem;
}

/* Team Section */
.team {
    background-color: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    text-align: center;
}

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 5px solid var(--primary);
}

.team-member h3 {
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.team-member p {
    color: var(--dark-gray);
}

/* Products Page Styles */
.product-filter {
    background-color: var(--light-gray);
    padding: 2rem 0;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    background: var(--white);
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary);
    color: var(--white);
}

.products-grid-section {
    background-color: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-image {
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-content {
    padding: 1.5rem;
}

.product-content h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.product-content p {
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
}

.specs h4 {
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.specs ul {
    padding-left: 1.5rem;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.specs ul li {
    margin-bottom: 0.5rem;
}

/* Applications Section */
.applications {
    background-color: var(--light-gray);
}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.application-card {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.application-card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.application-card h3 {
    color: var(--secondary);
    margin-bottom: 1rem;
}

/* Machinery Page Styles */
.machinery-overview {
    background-color: var(--light-gray);
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.overview-text h2 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.overview-text p {
    margin-bottom: 2rem;
    color: var(--dark-gray);
}

.facility-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.facility-stat {
    text-align: center;
    padding: 1rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.facility-stat h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.overview-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.overview-image img {
    width: 100%;
    height: auto;
    display: block;
}

.machinery-grid-section {
    background-color: var(--white);
}

.machinery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
}

.machinery-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    background-size: contain;
}

.machinery-card:hover {
    transform: translateY(-10px);
}

.machinery-image {
    height: 350px;
    overflow: hidden;
    background-size: cover;
}

.machinery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.machinery-card:hover .machinery-image img {
    transform: scale(1.1);
}

.machinery-content {
    padding: 1.5rem;
}

.machinery-content h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.machinery-content p {
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
}

.machinery-specs h4 {
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.machinery-specs ul {
    padding-left: 1.5rem;
    color: var(--dark-gray);
}

.machinery-specs ul li {
    margin-bottom: 0.5rem;
}

/* Production Capacity */
.production-capacity {
    background-color: var(--light-gray);
}

.capacity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.capacity-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.capacity-item h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.capacity-bar {
    height: 20px;
    background: #e0e0e0;
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.capacity-fill {
    height: 100%;
    background: var(--primary);
    border-radius: 10px;
    transition: width 1s ease;
}

/* Contact Page Styles */
.contact-section {
    background-color: var(--white);
    padding: 5rem 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h2 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.contact-info > p {
    margin-bottom: 2rem;
    color: var(--dark-gray);
    line-height: 1.6;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 5px;
    min-width: 20px;
}

.contact-item h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-item p {
    color: var(--dark-gray);
    line-height: 1.5;
}

.emergency-contact {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary);
    margin-top: 2rem;
}

.emergency-contact h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.emergency-contact p {
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.emergency-phone {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-form {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.contact-form h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 172, 239, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Map Section */
.map-section {
    background-color: var(--light-gray);
    padding: 5rem 0;
}

.map-container {
    height: 400px;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary), #0099cc);
    color: var(--white);
}

.map-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.map-placeholder h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.map-placeholder p {
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.5;
}

/* FAQ Section */
.faq-section {
    background-color: var(--white);
    padding: 5rem 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary);
    transition: transform 0.3s;
}

.faq-item:hover {
    transform: translateY(-5px);
}

.faq-item h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item p {
    color: var(--dark-gray);
    line-height: 1.6;
}

/* Button */
.btn {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
}

.btn:hover {
    background: rgba(0, 172, 239, 0.8);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
    background: var(--white);
    color: var(--secondary);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h3,
.footer-column h4 {
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.footer-column p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: var(--primary);
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-grid,
    .overview-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .hero {
        height: 60vh;
    }
    
    .slide-content h2 {
        font-size: 2rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .contact-content {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        padding: 1rem 0;
    }
    
    nav.active {
        display: block;
    }
    
    nav ul {
        flex-direction: column;
        padding: 0 1rem;
    }
    
    nav ul li {
        margin: 0;
        margin-bottom: 0.5rem;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .hero {
        height: 50vh;
    }
    
    .slide-content {
        padding: 1.5rem;
    }
    
    .slide-content h2 {
        font-size: 1.5rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .slider-nav button {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .stats,
    .facility-stats {
        grid-template-columns: repeat(2, 1fr);
        align-content: center;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .filter-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 200px;
        text-align: center;
    }
    
    .contact-section,
    .map-section,
    .faq-section {
        padding: 3rem 0;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .logo {
        flex-direction: column;
        text-align: center;
        gap: 01px;
    }
    
    .logo-text h1 {
        font-size: 1.5rem;
    }
    
    .hero {
        height: 40vh;
    }
    
    .slide-content h2 {
        font-size: 1.2rem;
    }
    
    .slide-content p {
        font-size: 0.9rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .stats,
    .facility-stats {
        grid-template-columns: 1fr;
    }
    
    .products-grid,
    .machinery-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .map-placeholder {
        padding: 1.5rem;
    }
    
    .map-placeholder i {
        font-size: 3rem;
    }
    /* Registration Section Styles */

.registration-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
    color: #00ACEF;
}

.registration-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.registration-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary);
}

.registration-card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.registration-card h3 {
    color: var(--secondary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.registration-number {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    margin: 1rem 0;
    font-family: 'Courier New', monospace;
    background: rgba(0, 172, 239, 0.1);
    padding: 0.8rem 1rem;
    border-radius: 8px;
    border: 2px dashed var(--primary);
}

.registration-card p:last-child {
    color: var(--dark-gray);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Primary Color Class */
.primary-color {
    color: var(--primary);
    font-weight: 600;
}

/* Responsive Design for Registration Section */
@media (max-width: 768px) {
    .registration-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .registration-card {
        padding: 2rem 1.5rem;
    }
    
    .registration-number {
        font-size: 1.2rem;
        padding: 0.6rem 0.8rem;
    }
}

@media (max-width: 480px) {

    
    .registration-card {
        padding: 1.5rem 1rem;
    }
    
    .registration-card i {
        font-size: 2.5rem;
    }
    
    .registration-number {
        font-size: 1.1rem;
        padding: 0.5rem 0.7rem;
    }
}
    /* Clickable Contact Styles */
.clickable-contact {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    border-bottom: 1px solid transparent;
}

.clickable-contact:hover {
    color: #0088cc;
    border-bottom-color: var(--primary);
    transform: translateY(-1px);
}

.emergency-link {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 172, 239, 0.1);
    border-radius: 8px;
    border: 2px solid var(--primary);
    transition: all 0.3s ease;
}

.emergency-link:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 172, 239, 0.3);
}

/* Footer clickable contacts */
.footer-column .clickable-contact {
    color: #ccc;
    font-weight: 400;
}

.footer-column .clickable-contact:hover {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

/* Contact item link styles */
.contact-item a {
    text-decoration: none;
}

.contact-item p {
    line-height: 1.8;
}

/* Mobile-specific styles */
@media (max-width: 768px) {
    .clickable-contact {
        padding: 0.2rem 0;
    }
    
    .emergency-link {
        font-size: 1.1rem;
        padding: 0.4rem 0.8rem;
    }
    
    /* Ensure touch targets are large enough */
    .contact-item a {
        display: inline-block;
        min-height: 44px;
        line-height: 44px;
    }
}

/* Print styles - hide interactive elements when printing */
@media print {
    .clickable-contact {
        color: var(--dark-gray) !important;
        text-decoration: none !important;
        border-bottom: none !important;
    }
    
    .emergency-link {
        background: none !important;
        border: 1px solid var(--dark-gray) !important;
        color: var(--dark-gray) !important;
    }
}
   
}