:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --light-color: #ecf0f1;
    --dark-color: #2c3e50;
    --text-color: #333;
    --text-light: #7f8c8d;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/*  Welcome overlay */
.welcome-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.97);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
}

.welcome-content {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    max-width: 500px;
    width: 90%;
}

.status-indicator {
    margin: 1.5rem 0;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.status-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: inline-block;
}

.status-dot.open {
    background: #2ecc71;
}

.status-dot.closed {
    background: #e74c3c;
}

.welcome-button {
    margin-top: 1rem;
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
    color: var(--primary-color);
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    margin: 15px auto;
    border-radius: 2px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--secondary-color);
    color: white;
    border-radius: 4px;
    font-weight: 500;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: #2980b9;
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

/* Header Styles */
.header {
    background-color: rgba(44, 62, 80, 0.95);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.header.scrolled {
    padding: 15px 0;
    background-color: rgba(44, 62, 80, 0.98);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo-group {
    display: flex;
    align-items: center;
}

.logo {
    height: 50px;
    margin-right: 15px;
}

.logo-text-primary {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    line-height: 1.1;
}

.logo-text-secondary {
    font-size: 0.9rem;
    color: var(--light-color);
    line-height: 1.1;
}

/* Navigation */
.nav-desktop .nav-list {
    display: flex;
    gap: 20px;
}

.nav-desktop .nav-list a {
    color: white;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 4px;
    transition: var(--transition);
    position: relative;
}

.nav-desktop .nav-list a:hover {
    color: var(--secondary-color);
}

.nav-desktop .nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.nav-desktop .nav-list a:hover::after {
    width: 70%;
}

/* Mobile Menu */
.mobile-menu-button {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background: white;
    z-index: 1000;
    transition: var(--transition);
    padding: 30px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    right: 0;
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-color);
    cursor: pointer;
}

.mobile-menu ul {
    margin-top: 40px;
}

.mobile-menu ul li {
    margin-bottom: 20px;
}

.mobile-menu ul li a {
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.mobile-menu ul li a:hover {
    color: var(--secondary-color);
    padding-left: 10px;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('assets/workshop-bg.jpg') no-repeat center center/cover;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.container2 {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease;
}

.hero-button {
    animation: fadeIn 1.5s ease;
}

/* About Section */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-image {
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.about-image:hover {
    transform: scale(1.02);
}

.about-subtitle {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.about-text {
    margin-bottom: 20px;
    color: var(--text-light);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    font-weight: 500;
}

.feature-icon {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

/* Services Section */
.services-section {
    background-color: #f9f9f9;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.machine-icon {
    width: 80px;
    height: 80px;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.service-card:hover .machine-icon {
    background: var(--secondary-color);
    color: white;
}

.service-icon {
    font-size: 2rem;
    color: var(--secondary-color);
}

.service-card:hover .service-icon {
    color: white;
}

.service-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-description {
    color: var(--text-light);
}

/* Products Section */
.products-table-container {
    overflow-x: auto;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
    border-radius: 8px;
}

.products-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.products-table th,
.products-table td {
    padding: 15px;
    text-align: center;
    border: 1px solid #ddd;
}

.products-table th {
    background-color: var(--primary-color);
    color: white;
    font-weight: 500;
}

.products-table tr:nth-child(even) {
    background-color: #f2f2f2;
}

.products-table tr:hover {
    background-color: #e9e9e9;
}

.table-head {
    position: sticky;
    top: 0;
}

.sub-head th {
    background-color: #384858;
}

.table-note {
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: center;
    font-style: italic;
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.contact-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--primary-color);
    position: relative;
}

.contact-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
}

.contact-info-group {
    margin-bottom: 25px;
}

.contact-subtitle {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.contact-subtitle-small {
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--text-light);
}

.contact-detail-group {
    margin-bottom: 15px;
}

.contact-icon {
    color: var(--secondary-color);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.social-link {
    color: var(--secondary-color);
    transition: var(--transition);
}

.social-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.map-container {
    height: 400px;
    margin-top: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.map-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: white;
}

.footer-description {
    margin-bottom: 20px;
    color: var(--light-color);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-links-title,
.footer-contact-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
}

.footer-links-title::after,
.footer-contact-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary-color);
}

.footer-links-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    transition: var(--transition);
    color: var(--light-color);
}

.footer-link:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--light-color);
}

.footer-contact-icon {
    color: var(--secondary-color);
    margin-top: 3px;
}

.footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
    color: var(--light-color);
    font-size: 0.9rem;
}

/* Go to Top Button */
.go-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--secondary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    border: none;
    box-shadow: var(--shadow);
    z-index: 999;
}

.go-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.go-to-top:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}

.go-to-top svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* call Button */
.call-button {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--shadow);
    z-index: 999;
    transition: var(--transition);
}

.call-button:hover {
    transform: scale(1.1);
}

/* Loading Animation */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--secondary-color);
    animation: spin 1s ease-in-out infinite;
    margin-bottom: 20px;
}

.loading-text {
    color: white;
    font-size: 1.2rem;
}

.no-scroll {
    overflow: hidden;
}
/* Add these styles to your existing CSS */
/* Add these styles to your existing CSS */
.print-button-container {
    text-align: center;
    margin: 30px 0;
}

.print-btn {
    background: var(--primary-color);
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Hide print-only header on screen */
.print-only-header {
    display: none;
}

/* Print styles */
/* @media print {
    body * {
        visibility: hidden !important;
        display: none !important;
    }

    .print-section, .print-section * {
        visibility: visible !important;
        display: block !important;
    }

    .print-section {
        position: static !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        page-break-inside: avoid;
    }

    .print-only-header {
        text-align: center;
        font-size: 12px;
        margin-bottom: 10px;
    }

    .print-only-header h2 {
        font-size: 20px;
        margin-bottom: 4px;
    }

    .products-table {
        width: 100% !important;
        border-collapse: collapse;
        font-size: 10px;
        table-layout: auto;
        page-break-inside: auto;
    }

    .products-table thead {
        display: table-header-group;
    }

    .products-table th,
    .products-table td {
        border: 1px solid black;
        padding: 4px;
        text-align: center;
        page-break-inside: avoid;
    }

    @page {
        size: A4 portrait;
        margin: 10mm;
    }
} */


/* Animations */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media screen and (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
}
@media screen and (max-width: 1150px) {
    /* Services Section */
    .services-grid {
    grid-template-columns: repeat(2, 1fr); /* Creates 2 equal-width columns */
    gap: 20px; /* Adds space between grid items */
}
}

@media screen and (max-width: 880px) {

    /* Header Mobile Styles */
    .nav-desktop {
        display: none;
    }

    .mobile-menu-button {
        display: block;
    }

    .header-logo-group {
        flex: 1;
    }

    /* Hero Section */
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    /* About Section */
    .about-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-image {
        max-width: 100%;
        height: auto;
    }

    /* Services Section */
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Products Section */
    .products-table th,
    .products-table td {
        padding: 10px;
        font-size: 0.9rem;
    }

    /* Contact Section */
    .contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .map-container {
        height: 300px;
    }

    /* Footer */
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-links-list,
    .footer-contact-list {
        align-items: center;
    }
}

@media screen and (max-width: 768px) {

    /* Hero Section */
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    /* Section Titles */
    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    /* About Features Grid */
    .features-grid {
        grid-template-columns: 1fr;
    }

    /* Products Table */
    .products-table th,
    .products-table td {
        padding: 8px;
        font-size: 0.85rem;
    }

    /* Footer */
    .footer {
        padding: 40px 0 0;
    }
}

@media screen and (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    /* Header */
    .logo {
        height: 40px;
    }

    .logo-text-primary {
        font-size: 1rem;
    }

    .logo-text-secondary {
        font-size: 0.8rem;
    }

    /* Hero Section */
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    /* Section Padding */
    .section {
        padding: 60px 0;
    }

    /* Contact Info */
    .contact-detail span {
        font-size: 0.9rem;
    }

    /* Footer */
    .footer-divider p {
        font-size: 0.8rem;
    }

    /* call Button */
    .call-button {
        bottom: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

/* Mobile Menu Animation */
@media screen and (min-width: 881px) {
    .mobile-menu {
        display: none;
    }
}

/* Existing Mobile Menu Styles (from your code) */
.mobile-menu-button {
    display: none;
}

@media screen and (max-width: 880px) {
    .mobile-menu-button {
        display: block;
    }

    .nav-desktop {
        display: none;
    }
}

/* Additional Mobile Optimization */
@media screen and (max-width: 360px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

/* ======================
   Enhanced Large Screen Styles (1024px+)
   ====================== */

@media screen and (min-width: 1600px) {

    /* Typography Enhancements */
    html {
        font-size: 18px;
    }

    h1 {
        font-size: 3.5rem;
        letter-spacing: -0.03em;
    }

    h2.section-title {
        font-size: 3rem;
        margin-bottom: 4rem;
    }

    /* Header Improvements */
    .header {
        padding: 1.5rem 0;
    }

    .header.scrolled {
        padding: 1rem 0;
    }

    .nav-desktop .nav-list {
        gap: 2.5rem;
    }

    .nav-desktop .nav-list a {
        font-size: 1.1rem;
        padding: 0.5rem 1rem;
    }

    /* Hero Section Enhancements */
    .hero {
        min-height: 800px;
    }

    .hero-title {
        font-size: 4.5rem;
        margin-bottom: 2rem;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 2rem;
        margin-bottom: 3rem;
    }

    .btn {
        padding: 1.25rem 3rem;
        font-size: 1.1rem;
        border-radius: 0.5rem;
    }

    /* About Section Grid */
    .about-container {
        gap: 5rem;
        align-items: start;
    }

    .about-image {
        border-radius: 1rem;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }

    .features-grid {
        gap: 2rem;
        margin-top: 3rem;
    }

    .feature-item {
        font-size: 1.1rem;
    }

    /* Services Grid Enhancement */
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 4rem;
    }

    .service-card {
        padding: 3rem 2rem;
        border-radius: 1rem;
    }

    .service-title {
        font-size: 1.5rem;
    }

    .machine-icon {
        width: 100px;
        height: 100px;
        margin-bottom: 2rem;
    }

    .service-icon {
        font-size: 2.5rem;
    }

    /* Products Table Improvements */
    .products-table {
        min-width: 100%;
        font-size: 1.1rem;
    }

    .products-table th {
        padding: 1.25rem;
    }

    /* Contact Section Layout */
    .contact-container {
        gap: 5rem;
    }

    .contact-card {
        padding: 3rem;
    }

    .map-container {
        height: 500px;
    }

    /* Footer Enhancements */
    .footer-container {
        grid-template-columns: repeat(4, 1fr);
        gap: 5rem;
    }

    .footer-logo {
        font-size: 1.75rem;
    }

    /* Advanced Hover Effects */
    .service-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    }

    .feature-item:hover .feature-icon {
        transform: rotate(15deg) scale(1.2);
    }

    .feature-icon {
        transition: var(--transition);
    }

    /* Parallax Effect for Hero */
    @media (prefers-reduced-motion: no-preference) {
        .hero {
            background-attachment: fixed;
        }
    }

    /* Smooth Image Zoom */
    .about-image {
        overflow: hidden;
    }

    .about-image img {
        transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .about-image:hover img {
        transform: scale(1.05);
    }

    /* Enhanced Table Styling */
    .products-table {
        border-radius: 1rem;
        overflow: hidden;
    }

    .products-table th {
        background-color: var(--primary-color);
        padding: 1.5rem;
        font-weight: 600;
    }

    .products-table td {
        padding: 1.25rem;
    }

    /* Card Depth Effect */
    .service-card,
    .contact-card {
        position: relative;
    }

    .service-card::before,
    .contact-card::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: inherit;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .service-card:hover::before,
    .contact-card:hover::before {
        opacity: 1;
    }

    /* Grid Layout Optimization */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

    /* Button Enhancements */
    .btn {
        position: relative;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .btn::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 300px;
        height: 300px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        transform: translate(-50%, -50%) scale(0);
        transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .btn:hover::after {
        transform: translate(-50%, -50%) scale(1);
    }

    /* Section Spacing */
    .section {
        padding: 8rem 0;
    }

    /* Contact Detail Interactions */
    .contact-detail {
        padding: 1rem;
        border-radius: 0.5rem;
        transition: all 0.3s ease;
    }

    .contact-detail:hover {
        background: rgba(52, 152, 219, 0.05);
        transform: translateX(10px);
    }
}