/* CSS Variables */
:root {
    --primary-color: #3fbbc0;
    --secondary-color: #6c757d;
    --success-color: #28a745;
    --info-color: #17a2b8;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --font-family: 'Open Sans', sans-serif;
    --heading-font: 'Raleway', sans-serif;
}

/* Global Styles */
body {
    font-family: var(--font-family);
    color: #444444;
    line-height: 1.6;
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

a:hover {
    color: #67c8cc;
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
}

/* Header */
#header {
    background: #fff;
    transition: all 0.5s;
    z-index: 997;
    padding: 8px 0;
    box-shadow: 0px 2px 15px rgba(25, 119, 204, 0.1);
}

#header.header-scrolled {
    padding: 8px 0;
}

#header .logo {
    font-size: 24px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #2c4964;
}

#header .logo a {
    color: #2c4964;
    text-decoration: none;
}

#header .logo img {
    max-height: 40px;
}

/* Navigation Menu */
.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar > ul > li {
    margin-left: 5px;
}

.navbar a, .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    font-size: 15px;
    font-weight: 500;
    color: #2c4964;
    white-space: nowrap;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
}

.navbar a i, .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
    color: #3fbbc0;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
    text-transform: none;
    font-weight: 500;
    color: #2c4964;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
    color: #3fbbc0;
}

.navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

/* Appointment Button */
.appointment-btn {
    background: #3fbbc0;
    color: #fff;
    border-radius: 50px;
    padding: 10px 25px;
    margin-left: 15px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: 0.3s;
    display: inline-block;
}

.appointment-btn:hover {
    background: #34a5a9;
    color: #fff;
    text-decoration: none;
}

/* Mobile Navigation */
.mobile-nav-toggle {
    color: #2c4964;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-family: var(--heading-font);
}

#header .logo a {
    color: #2c4964;
}

#header .logo img {
    max-height: 40px;
}

/* Navigation */
.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    font-family: var(--heading-font);
    font-size: 14px;
    font-weight: 500;
    color: #2c4964;
    white-space: nowrap;
    transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
    color: var(--primary-color);
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
    text-transform: none;
    color: #2c4964;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
    color: var(--primary-color);
}

.navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

/* Appointment Button */
.appointment-btn {
    margin-left: 25px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50px;
    padding: 8px 25px;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 14px;
    display: inline-block;
}

.appointment-btn:hover {
    background: #65c9cd;
    color: #fff;
}

/* Mobile Navigation */
.mobile-nav-toggle {
    color: #2c4964;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

/* Section Title */
.section-title {
    text-align: center;
    padding-bottom: 30px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    color: #2c4964;
}

.section-title h2::before {
    content: "";
    position: absolute;
    display: block;
    width: 120px;
    height: 1px;
    background: #ddd;
    bottom: 1px;
    left: calc(50% - 60px);
}

.section-title h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    bottom: 0;
    left: calc(50% - 20px);
}

.section-title p {
    margin-bottom: 0;
}

/* Section Background */
.section-bg {
    background-color: #f1f7fd;
}

/* Hero Section */
.hero-section {
    width: 100%;
    height: 100vh;
    background: linear-gradient(45deg, rgba(86, 58, 250, 0.9) 0%, rgba(116, 15, 214, 0.9) 100%), url("../images/hero-bg.jpg") center center;
    background-size: cover;
    position: relative;
}

.hero-section .container {
    padding-top: 80px;
}

.hero-title {
    margin: 0 0 10px 0;
    font-size: 64px;
    font-weight: 700;
    line-height: 56px;
    color: #fff;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    font-size: 24px;
}

.hero-text {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    font-size: 18px;
}

.hero-buttons .btn {
    margin: 5px;
    border-radius: 50px;
    padding: 10px 35px;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    transition: 0.5s;
}

/* Why Us Section */
.why-us .box {
    padding: 50px 30px;
    box-shadow: 0px 2px 15px rgba(25, 119, 204, 0.1);
    transition: 0.3s;
    height: 100%;
}

.why-us .box:hover {
    box-shadow: 0px 5px 25px rgba(25, 119, 204, 0.15);
    transform: translateY(-10px);
}

.why-us .box span {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
}

.why-us .box h4 {
    font-size: 24px;
    font-weight: 600;
    padding: 0;
    margin: 20px 0;
    color: rgba(1, 41, 112, 0.8);
}

.why-us .box p {
    color: #aaaaaa;
    font-size: 15px;
    margin: 0;
    padding: 0;
}

/* About Section */
.about .content h3 {
    font-weight: 600;
    font-size: 26px;
    color: #2c4964;
}

.about .content ul {
    list-style: none;
    padding: 0;
}

.about .content ul li {
    padding-bottom: 10px;
}

.about .content ul i {
    font-size: 20px;
    padding-right: 4px;
    color: var(--primary-color);
}

.about .content p:last-child {
    margin-bottom: 0;
}

/* Counters */
.about .counters {
    padding-top: 40px;
}

.about .counters span {
    font-size: 48px;
    display: block;
    color: var(--primary-color);
    font-weight: 700;
}

.about .counters p {
    padding: 0;
    margin: 0 0 20px 0;
    font-family: var(--heading-font);
    font-size: 14px;
    color: #2c4964;
}

/* Services Section */
.services .icon-box {
    text-align: center;
    border: 1px solid #b2ddf2;
    padding: 80px 20px;
    transition: all ease-in-out 0.3s;
    background: #fff;
    box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.05);
}

.services .icon-box:hover {
    border-color: #fff;
    box-shadow: 0px 0 35px 0 rgba(0, 0, 0, 0.08);
}

.services .icon {
    margin: 0 auto;
    width: 64px;
    height: 64px;
    background: var(--primary-color);
    border-radius: 5px;
    transition: all 0.3s ease-out 0s;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transform-style: preserve-3d;
}

.services .icon i {
    color: #fff;
    font-size: 28px;
}

.services .icon-box:hover .icon {
    background: #fff;
    transform: translateZ(20px);
}

.services .icon-box:hover .icon i {
    color: var(--primary-color);
}

.services .title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
}

.services .title a {
    color: #111;
}

.services .description {
    font-size: 15px;
    line-height: 28px;
    margin-bottom: 0;
}

/* Appointment Section */
.appointment {
    background: linear-gradient(90deg, rgba(86, 58, 250, 0.8) 0%, rgba(116, 15, 214, 0.8) 100%), url("../images/appointment-bg.jpg") center center;
    background-size: cover;
    padding: 60px 0;
}

.appointment .section-title h2,
.appointment .section-title p {
    color: #fff;
}

.appointment .php-email-form {
    width: 100%;
}

.appointment .php-email-form .form-group {
    padding-bottom: 8px;
}

.appointment .php-email-form .form-control {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    height: 44px;
}

.appointment .php-email-form .form-control:focus {
    border-color: var(--primary-color);
}

.appointment .php-email-form .form-select {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    height: 44px;
}

.appointment .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    height: 120px;
}

.appointment .php-email-form .btn-primary {
    background: var(--primary-color);
    border: 0;
    border-radius: 50px;
    padding: 10px 35px;
    transition: 0.4s;
}

.appointment .php-email-form .btn-primary:hover {
    background: #67c8cc;
}

/* Departments Section */
.departments .nav-tabs {
    border: 0;
}

.departments .nav-tabs .nav-link {
    border: 0;
    padding: 12px 15px;
    transition: 0.3s;
    color: #2c4964;
    border-radius: 0;
    border-right: 2px solid #b2ddf2;
    font-weight: 600;
    font-size: 15px;
}

.departments .nav-tabs .nav-link:hover {
    color: var(--primary-color);
}

.departments .nav-tabs .nav-link.active {
    color: #fff;
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.departments .nav-tabs .nav-link.active:hover {
    color: #fff;
}

.departments .tab-content .details h4 {
    font-size: 30px;
    font-weight: 700;
    color: #2c4964;
    margin-bottom: 15px;
}

.departments .tab-content .details p {
    color: #777777;
}

.departments .tab-content .details ul {
    list-style: none;
    padding: 0;
}

.departments .tab-content .details ul li {
    padding-bottom: 10px;
}

.departments .tab-content .details ul i {
    font-size: 18px;
    padding-right: 4px;
    color: var(--primary-color);
}

/* Testimonials Section */
.testimonials .testimonial-item {
    box-sizing: content-box;
    min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 4px solid #fff;
    margin: 0 auto;
}

.testimonials .testimonial-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 5px 0;
    color: #111;
}

.testimonials .testimonial-item h4 {
    font-size: 14px;
    color: #999;
    margin: 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
    color: #b2ddf2;
    font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
}

.testimonials .testimonial-item p {
    font-style: italic;
    margin: 0 15px 0 15px;
    padding: 20px 20px 60px 20px;
    background: #f3f9fd;
    position: relative;
    border-radius: 6px;
}

.testimonials .testimonial-wrap {
    padding-left: 10px;
}

.testimonials .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid var(--primary-color);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--primary-color);
}

/* FAQ Section */
.faq .faq-list {
    padding: 0 100px;
}

.faq .faq-list ul {
    padding: 0;
    list-style: none;
}

.faq .faq-list li + li {
    margin-top: 15px;
}

.faq .faq-list li {
    padding: 20px;
    background: #fff;
    border-radius: 4px;
    position: relative;
}

.faq .faq-list a {
    display: block;
    position: relative;
    font-family: var(--heading-font);
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    padding: 0 30px;
    outline: none;
    cursor: pointer;
}

.faq .faq-list .icon-help {
    font-size: 24px;
    position: absolute;
    right: 0;
    left: 20px;
    color: #87ceeb;
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
    font-size: 24px;
    position: absolute;
    right: 0;
    top: 0;
}

.faq .faq-list p {
    margin-bottom: 0;
    padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
    display: none;
}

.faq .faq-list a.collapsed {
    color: #2c4964;
}

.faq .faq-list a.collapsed:hover {
    color: var(--primary-color);
}

.faq .faq-list a.collapsed .icon-show {
    display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
    display: none;
}

/* Call to Action Section */
.cta {
    background: linear-gradient(rgba(2, 2, 2, 0.5), rgba(0, 0, 0, 0.5)), url("../images/cta-bg.jpg") fixed center center;
    background-size: cover;
    padding: 120px 0;
}

.cta h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
}

.cta p {
    color: #fff;
}

.cta .cta-btn {
    font-family: var(--heading-font);
    text-transform: uppercase;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 40px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px;
    border: 2px solid #fff;
    color: #fff;
}

.cta .cta-btn:hover {
    background: var(--primary-color);
    border: 2px solid var(--primary-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 36px;
        line-height: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
        line-height: 24px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 28px;
        line-height: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }

    .faq .faq-list {
        padding: 0;
    }

    .departments .nav-tabs .nav-link {
        border: 0;
        padding: 15px;
    }

    .departments .nav-tabs .nav-link.active {
        color: #fff;
        background: var(--primary-color);
    }
}

/* Additional Utility Classes */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #67c8cc;
    border-color: #67c8cc;
}

/* Footer */
#footer {
    color: #444444;
    font-size: 14px;
    background: #f1f7fd;
}

#footer .footer-top {
    padding: 60px 0 30px 0;
    background: #fff;
}

#footer .footer-contact {
    margin-bottom: 30px;
}

#footer .footer-contact h3 {
    font-size: 28px;
    margin: 0 0 10px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    text-transform: uppercase;
    font-weight: 600;
    color: #2c4964;
}

#footer .footer-contact p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: var(--heading-font);
    color: #777777;
}

#footer h4 {
    font-size: 16px;
    font-weight: bold;
    color: #2c4964;
    position: relative;
    padding-bottom: 12px;
}

#footer .footer-links {
    margin-bottom: 30px;
}

#footer .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-links ul i {
    padding-right: 2px;
    color: #3fbbc0;
    font-size: 18px;
    line-height: 1;
}

#footer .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

#footer .footer-links ul li:first-child {
    padding-top: 0;
}

#footer .footer-links ul a {
    color: #777777;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

#footer .footer-links ul a:hover {
    text-decoration: none;
    color: var(--primary-color);
}

#footer .footer-newsletter {
    font-size: 15px;
}

#footer .footer-newsletter h4 {
    font-size: 16px;
    font-weight: bold;
    color: #2c4964;
    position: relative;
    padding-bottom: 12px;
}

#footer .footer-newsletter form {
    margin-top: 30px;
    background: #fff;
    padding: 6px 10px;
    position: relative;
    border-radius: 50px;
    text-align: left;
    border: 1px solid #b2ddf2;
}

#footer .footer-newsletter form input[type=email] {
    border: 0;
    padding: 4px 8px;
    width: calc(100% - 100px);
    background: #fff;
    color: #2c4964;
}

#footer .footer-newsletter form input[type=submit] {
    position: absolute;
    top: -1px;
    right: -1px;
    bottom: -1px;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 20px;
    background: var(--primary-color);
    color: #fff;
    transition: 0.3s;
    border-radius: 50px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type=submit]:hover {
    background: #67c8cc;
}

#footer .credits {
    padding-top: 5px;
    font-size: 13px;
    color: #2c4964;
}

#footer .social-links a {
    font-size: 18px;
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

#footer .social-links a:hover {
    background: #67c8cc;
    color: #fff;
    text-decoration: none;
}

/* Back to top button */
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: #67c8cc;
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/* Product Pages Specific */
.product-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0056b3 100%);
    color: white;
    padding: 100px 0 50px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.1);
}

/* Pricing Tables */
.pricing-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 123, 255, 0.15);
}

.pricing-header {
    background: var(--primary-color);
    color: white;
    padding: 2rem;
    text-align: center;
}

.pricing-body {
    padding: 2rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.pricing-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e9ecef;
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* FAQ Styles */
.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-header {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px 10px 0 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-header:hover {
    background: #e9ecef;
}

/* Testimonial Styles */
.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin: 1rem;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

/* Loading Spinner */
.spinner {
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .btn,
    .cta-section {
        display: none !important;
    }
    
    .container {
        max-width: 100% !important;
    }
}