body,
html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: #333;
    overflow-x: hidden;
    /* Prevent horizontal scroll */
}

/* Global Box Sizing */
*,
*::before,
*::after {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

/* Global Hover Effects */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Scroll Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

#background-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.main-header {
    /* background-color and backdrop-filter moved to ::before to prevent containing block issue */
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 2000;
    transition: all 0.3s ease;
}

.main-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: -1;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* ... existing styles ... */

.nav-toggle {
    display: none;
    cursor: pointer;
    z-index: 2002;
    /* Higher than nav-links */
    width: 30px;
    height: 25px;
    position: relative;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #333;
    position: absolute;
    left: 0;
    transition: 0.3s ease-in-out;
    border-radius: 3px;
}

.nav-toggle span:nth-child(1) {
    top: 0;
}

.nav-toggle span:nth-child(2) {
    top: 11px;
}

.nav-toggle span:nth-child(3) {
    top: 22px;
}

.nav-toggle.active span:nth-child(1) {
    top: 11px;
    transform: rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    top: 11px;
    transform: rotate(-45deg);
}

/* ... existing styles ... */

/* Header Layout */
.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 10px;
}

.main-nav {
    display: block;
    /* Changed from flex to block to allow full width nav */
}

.logo {
    /* Logo styles */
}

.logo-img {
    max-height: 80px;
    width: auto;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 20px;
    /* Space between logo and contact info */
    flex-grow: 1;
}

.header-contact-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Left align text */
    gap: 5px;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-icons-row {
    display: flex;
    gap: 10px;
    margin-top: 5px;
}

.contact-link {
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #007bff;
}

.social-icon {
    color: #555;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #007bff;
}

.contact-row {
    display: flex;
    align-items: center;
}

.social-icons-row {
    display: flex;
    gap: 15px;
    margin-top: 5px;
}

.social-icon {
    color: #333;
    font-size: 16px;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #007bff;
}

.contact-link {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #007bff;
}

.contact-link i {
    color: #007bff;
    font-size: 14px;
}

/* Desktop Menu Styles */
.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
    justify-content: flex-start;
    /* Align menu items to the left, or center if preferred */
}

.contact-link {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #007bff;
}

.contact-link i {
    color: #007bff;
    font-size: 14px;
}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
}

.nav-links li {
    margin: 0;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #007bff;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #007bff;
    background-color: transparent;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links .btn {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border-radius: 25px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.nav-links .btn:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    color: white;
}

.nav-links .btn::after {
    display: none;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 160px;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 4px;
    top: 100%;
    left: 0;
}

.dropdown-content a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 14px;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
    color: #007bff;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Mobile Menu Styles */

/* Slider Styles */
.slider-container {
    max-width: 100%;
    position: relative;
    margin: 20px auto 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

@media (min-width: 1025px) {
    .slider-container {
        margin-top: 80px;
        /* Push slider down on desktop to clear header */
    }
}

.slider-wrapper {
    position: relative;
    height: 500px;
    /* Fixed height for desktop */
    width: 100%;
    overflow: hidden;
    /* Hide overflowing slides */
}

.slider-track {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease-in-out;
    /* Smooth sliding */
    width: 100%;
}

.slide {
    min-width: 100%;
    /* Each slide takes full width */
    height: 100%;
    position: relative;
    display: block;
    /* Ensure display is block */
}

/* Slide Image */
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Slide Content Overlay */
.slide-content {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    max-width: 600px;
    z-index: 2;
    padding: 30px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 12px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity 0.5s ease 0.3s, transform 0.5s ease 0.3s;
    /* Delay for content fade in */
    transform: translateY(-40%);
    /* Initial state for animation */
}

/* Animate content when slide is active (toggled by JS) */
.slide.active .slide-content {
    opacity: 1;
    transform: translateY(-50%);
}

.slide-content h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 700;
}

.slide-content p {
    font-size: 20px;
    margin-bottom: 25px;
    line-height: 1.4;
}

.slider-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    border-radius: 25px;
    transition: all 0.3s ease;
    border: 2px solid #007bff;
    font-weight: 600;
}

.slider-btn:hover {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
}

/* Navigation Arrows */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    display: flex;
    /* Centering content */
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 24px;
    transition: 0.3s ease;
    border-radius: 50%;
    /* Circle shape */
    user-select: none;
    z-index: 3;
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    backdrop-filter: blur(2px);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.prev:hover,
.next:hover {
    background-color: rgba(255, 255, 255, 0.9);
    color: #333;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

/* Dots */
.slider-dots {
    text-align: center;
    position: absolute;
    bottom: 20px;
    width: 100%;
    z-index: 3;
}

.dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 6px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: inline-block;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background-color: #fff;
    transform: scale(1.3);
}

@media (max-width: 1024px) {
    .nav-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        /* Full width */
        height: 100vh;
        background-color: #fff;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 80px 20px 20px;
        /* Increased top padding */
        box-shadow: none;
        transform: translateX(100%);
        /* Use transform for performance */
        transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 2001;
        gap: 0;
        overflow-y: auto;
        /* Allow scrolling if menu is long */
    }

    .nav-links.active {
        transform: translateX(0);
        /* Slide in */
        display: flex;
    }

    .nav-links li {
        width: 100%;
        margin-bottom: 0;
        border-bottom: 1px solid #f5f5f5;
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        display: block;
        padding: 12px 0;
        /* Reduced padding */
        font-size: 16px;
        /* Reduced font size */
        width: 100%;
    }

    .nav-links a::after {
        display: none;
        /* Remove underline effect on mobile */
    }

    .nav-links a:hover {
        color: #007bff;
        padding-left: 10px;
        /* Slide effect */
    }

    .nav-links .btn {
        margin-top: 20px;
        text-align: center;
        width: 100%;
        box-sizing: border-box;
    }

    /* Mobile Header Adjustments */
    .header-top {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
        align-items: flex-start;
        /* Align top to handle different heights */
    }

    .header-left {
        flex-direction: column;
        /* Stack logo and contact info */
        align-items: flex-start;
        gap: 10px;
        width: 100%;
        /* Take full width to allow wrapping if needed */
    }

    .header-contact-info {
        display: flex !important;
        /* Force display */
        flex-direction: row;
        /* Row of icons */
        align-items: center;
        gap: 15px;
        flex-wrap: wrap;
    }

    .contact-row {
        margin: 0;
    }

    .social-icons-row {
        margin-top: 0;
        gap: 15px;
    }

    .social-icon {
        font-size: 18px;
    }

    .logo-img {
        max-height: 50px;
        width: auto;
    }

    .contact-link span {
        display: none;
        /* Hide text on mobile */
    }

    .contact-link {
        font-size: 18px;
        /* Larger icons */
    }



    .nav-toggle {
        margin-left: 15px;
        /* Gap between logo area and menu icon */
        margin-top: 10px;
        /* Align with logo roughly */
    }

    /* Mobile Dropdown Styles */
    .dropdown {
        width: 100%;
    }

    .dropdown-content {
        position: static;
        display: none;
        width: 100%;
        box-shadow: none;
        background-color: #f9f9f9;
        padding-left: 20px;
        /* Indent for hierarchy */
    }

    .dropdown-content a {
        padding: 10px 0;
        font-size: 15px;
    }

    .dropdown-content.show {
        display: block;
    }
}

@media (max-width: 480px) {
    .header-contact-info {
        display: flex !important;
        /* Ensure visible on small screens */
    }
}



.hero {
    text-align: center;
    padding: 100px 20px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
}

.hero button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hero button:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.hero button:hover {
    background-color: #0056b3;
}

.split-section {
    display: flex;
    align-items: center;
    margin: 50px 0;
    gap: 40px;
    min-height: 400px;
}

.split-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-image {
    flex: 1;
    height: 400px;
}

.split-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.split-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.split-button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
    text-decoration: none;
}

.split-button:hover {
    background-color: #0056b3;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.split-section.reverse {
    flex-direction: row-reverse;
}

@media (max-width: 1024px) {
    .split-section {
        flex-direction: column;
    }

    .split-section.reverse {
        flex-direction: column;
    }

    .hero h1 {
        font-size: 36px;
    }
}

.main-footer {
    background-color: #343a40;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    margin-top: auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links a {
    margin: 0 10px;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #007bff;
}

.computer-section {
    background-color: #f8f9fa;
    padding: 60px 0;
    text-align: center;
}

.computer-section h2,
.computer-section h3 {
    text-align: center;
}

.computer-section h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.computer-section h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #555;
}

.section-intro {
    font-size: 18px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.reason-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reason-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.reason-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #007bff;
}

.additional-info {
    margin-bottom: 40px;
    background-color: #e9ecef;
    padding: 30px;
    border-radius: 10px;
}

.additional-info p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 30px;
}

.info-card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.info-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
}

.info-card h5 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #007bff;
}

.final-pitch {
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.final-pitch h5 {
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #007bff;
}

.final-pitch ul {
    list-style-position: inside;
    padding-left: 0;
}

.final-pitch li {
    margin-bottom: 10px;
}

.computer-section {
    background-color: #f8f9fa;
    padding: 60px 0;
    text-align: center;
}

.computer-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.section-intro {
    font-size: 18px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 40px;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.reason-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reason-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.reason-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #007bff;
}

.additional-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.info-card {
    background-color: #e9ecef;
    padding: 20px;
    border-radius: 8px;
}

/* Contact page styles */
.contact-page {
    max-width: 800px;
    margin: 50px auto;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.contact-page h1 {
    text-align: center;
    margin-bottom: 30px;
}

.form-errors {
    background: #fdecea;
    color: #611a15;
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 15px;
}

.form-errors ul {
    margin: 0;
    padding-left: 18px;
}

.form-success {
    background: #e6ffed;
    color: #0a6020;
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 15px;
}

.contact-form .form-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-form .form-label {
    width: 160px;
    text-align: right;
    padding-right: 12px;
    font-weight: 600;
    color: #333;
}

.contact-form .form-field {
    flex: 1;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    box-sizing: border-box;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.contact-form textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form input[type="tel"]:focus,
.contact-form textarea:focus {
    border-color: #66a3ff;
    box-shadow: 0 6px 18px rgba(30, 100, 255, 0.08);
    outline: none;
}

.contact-info {
    margin-top: 20px;
    color: #555;
    text-align: center;
}

@media (max-width: 600px) {
    .contact-form .form-row {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-form .form-label {
        width: auto;
        text-align: left;
        padding-right: 0;
        margin-bottom: 6px;
    }

    .contact-form textarea {
        min-height: 120px;
    }
}

.info-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

.cta-section {
    background-color: #007bff;
    color: #fff;
    padding: 40px;
    border-radius: 10px;
    margin-top: 40px;
    text-align: center;
}

.cta-section h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 16px;
    margin-bottom: 25px;
}

/ *   S l i d e r   S t y l e s   * /     . s l i d e r - c o n t a i n e r    {
                 m a x - w i d t h :    1 0 0 % ;
                 p o s i t i o n :    r e l a t i v e ;
                 m a r g i n :    2 0 p x   a u t o   4 0 p x ;
                 / *   S p a c i n g   * /             b o r d e r - r a d i u s :    1 2 p x ;
                 o v e r f l o w :    h i d d e n ;
                 / *   R o u n d   c o r n e r s   f o r   t h e   s l i d e r   * /             b o x - s h a d o w :    0   1 0 p x   2 5 p x   r g b a ( 0 ,    0 ,    0 ,    0 . 1 ) ;
         
}

         . s l i d e r - w r a p p e r    {
                 p o s i t i o n :    r e l a t i v e ;
                 h e i g h t :    5 0 0 p x ;
                 / *   F i x e d   h e i g h t   f o r   d e s k t o p   * /     
}

         / *   H i d e   s l i d e s   b y   d e f a u l t   * /     . s l i d e    {
                 d i s p l a y :    n o n e ;
                 h e i g h t :    1 0 0 % ;
                 w i d t h :    1 0 0 % ;
                 p o s i t i o n :    r e l a t i v e ;
         
}

         / *   F a d e   a n i m a t i o n   * /     . f a d e    {
                 a n i m a t i o n - n a m e :    f a d e ;
                 a n i m a t i o n - d u r a t i o n :    1 . 5 s ;
         
}

         @ k e y f r a m e s   f a d e    {
                 f r o m    {
                             o p a c i t y :    . 4             
    }

                     t o    {
                             o p a c i t y :    1             
    }

         
}

         . s l i d e   i m g    {
                 w i d t h :    1 0 0 % ;
                 h e i g h t :    1 0 0 % ;
                 o b j e c t - f i t :    c o v e r ;
                 / *   C o v e r   t h e   a r e a   * /             d i s p l a y :    b l o c k ;
         
}

         / *   S l i d e   C o n t e n t   O v e r l a y   * /     . s l i d e - c o n t e n t    {
                 p o s i t i o n :    a b s o l u t e ;
                 t o p :    5 0 % ;
                 l e f t :    8 % ;
                 / *   A l i g n   t e x t   s l i g h t l y   l e f t   * /             t r a n s f o r m :    t r a n s l a t e Y ( - 5 0 % ) ;
                 c o l o r :    # f f f ;
                 / *   W h i t e   t e x t   f o r   c o n t r a s t   * /             t e x t - s h a d o w :    2 p x   2 p x   8 p x   r g b a ( 0 ,    0 ,    0 ,    0 . 7 ) ;
                 / *   R e a d a b l e   o n   a n y   b g   * /             m a x - w i d t h :    6 0 0 p x ;
                 z - i n d e x :    2 ;
                 p a d d i n g :    2 0 p x ;
                 b a c k g r o u n d :    r g b a ( 0 ,    0 ,    0 ,    0 . 3 ) ;
                 / *   S l i g h t   d a r k   b a c k i n g   f o r   l e g i b i l i t y   * /             b o r d e r - r a d i u s :    8 p x ;
                 b a c k d r o p - f i l t e r :    b l u r ( 2 p x ) ;
         
}

         . s l i d e - c o n t e n t   h 1    {
                 f o n t - s i z e :    4 8 p x ;
                 m a r g i n - b o t t o m :    1 5 p x ;
                 f o n t - w e i g h t :    7 0 0 ;
         
}

         . s l i d e - c o n t e n t   p    {
                 f o n t - s i z e :    2 0 p x ;
                 m a r g i n - b o t t o m :    2 5 p x ;
                 l i n e - h e i g h t :    1 . 4 ;
         
}

         . s l i d e r - b t n    {
                 d i s p l a y :    i n l i n e - b l o c k ;
                 p a d d i n g :    1 2 p x   3 0 p x ;
                 b a c k g r o u n d - c o l o r :    # 0 0 7 b f f ;
                 c o l o r :    # f f f ;
                 t e x t - d e c o r a t i o n :    n o n e ;
                 f o n t - s i z e :    1 6 p x ;
                 b o r d e r - r a d i u s :    2 5 p x ;
                 / *   P i l l   s h a p e   * /             t r a n s i t i o n :    a l l   0 . 3 s   e a s e ;
                 b o r d e r :    2 p x   s o l i d   # 0 0 7 b f f ;
                 f o n t - w e i g h t :    6 0 0 ;
         
}

         . s l i d e r - b t n : h o v e r    {
                 b a c k g r o u n d - c o l o r :    t r a n s p a r e n t ;
                 c o l o r :    # f f f ;
                 b o r d e r - c o l o r :    # f f f ;
         
}

         / *   N a v i g a t i o n   A r r o w s   * /     . p r e v ,
     . n e x t    {
                 c u r s o r :    p o i n t e r ;
                 p o s i t i o n :    a b s o l u t e ;
                 t o p :    5 0 % ;
                 w i d t h :    a u t o ;
                 m a r g i n - t o p :    - 2 2 p x ;
                 p a d d i n g :    1 6 p x ;
                 c o l o r :    w h i t e ;
                 f o n t - w e i g h t :    b o l d ;
                 f o n t - s i z e :    2 4 p x ;
                 t r a n s i t i o n :    0 . 6 s   e a s e ;
                 b o r d e r - r a d i u s :    0   3 p x   3 p x   0 ;
                 u s e r - s e l e c t :    n o n e ;
                 z - i n d e x :    3 ;
                 b a c k g r o u n d - c o l o r :    r g b a ( 0 ,    0 ,    0 ,    0 . 2 ) ;
         
}

         . n e x t    {
                 r i g h t :    0 ;
                 b o r d e r - r a d i u s :    3 p x   0   0   3 p x ;
         
}

         . p r e v : h o v e r ,
     . n e x t : h o v e r    {
                 b a c k g r o u n d - c o l o r :    r g b a ( 0 ,    0 ,    0 ,    0 . 8 ) ;
         
}

         / *   D o t s   * /     . s l i d e r - d o t s    {
                 t e x t - a l i g n :    c e n t e r ;
                 p o s i t i o n :    a b s o l u t e ;
                 b o t t o m :    2 0 p x ;
                 w i d t h :    1 0 0 % ;
                 z - i n d e x :    3 ;
         
}

         . d o t    {
                 c u r s o r :    p o i n t e r ;
                 h e i g h t :    1 2 p x ;
                 w i d t h :    1 2 p x ;
                 m a r g i n :    0   6 p x ;
                 b a c k g r o u n d - c o l o r :    r g b a ( 2 5 5 ,    2 5 5 ,    2 5 5 ,    0 . 5 ) ;
                 b o r d e r - r a d i u s :    5 0 % ;
                 d i s p l a y :    i n l i n e - b l o c k ;
                 t r a n s i t i o n :    b a c k g r o u n d - c o l o r   0 . 6 s   e a s e ;
         
}

         . a c t i v e ,
     . d o t : h o v e r    {
                 b a c k g r o u n d - c o l o r :    # f f f ;
                 t r a n s f o r m :    s c a l e ( 1 . 2 ) ;
         
}

         / *   R e s p o n s i v e   D e s i g n   * /     @ m e d i a   ( m a x - w i d t h :   1 0 2 4 p x )    {
                 . s l i d e r - w r a p p e r    {
                             h e i g h t :    4 0 0 p x ;
                     
    }

                     . s l i d e - c o n t e n t   h 1    {
                             f o n t - s i z e :    3 6 p x ;
                     
    }

                     . s l i d e - c o n t e n t   p    {
                             f o n t - s i z e :    1 8 p x ;
                     
    }

         
}

         @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )    {
                 . s l i d e r - w r a p p e r    {
                             h e i g h t :    3 5 0 p x ;
                     
    }

                     . s l i d e - c o n t e n t    {
                             l e f t :    5 0 % ;
                             t r a n s f o r m :    t r a n s l a t e ( - 5 0 % ,    - 5 0 % ) ;
                             t e x t - a l i g n :    c e n t e r ;
                             w i d t h :    9 0 % ;
                     
    }

                     . s l i d e - c o n t e n t   h 1    {
                             f o n t - s i z e :    2 8 p x ;
                     
    }

                     . s l i d e r - b t n    {
                             p a d d i n g :    1 0 p x   2 4 p x ;
                             f o n t - s i z e :    1 4 p x ;
                     
    }

         
}

         @ m e d i a   ( m a x - w i d t h :   4 8 0 p x )    {
                 . s l i d e r - w r a p p e r    {
                             h e i g h t :    3 0 0 p x ;
                     
    }

                     . s l i d e - c o n t e n t   h 1    {
                             f o n t - s i z e :    2 4 p x ;
                             m a r g i n - b o t t o m :    1 0 p x ;
                     
    }

                     . s l i d e - c o n t e n t   p    {
                             f o n t - s i z e :    1 4 p x ;
                             m a r g i n - b o t t o m :    1 5 p x ;
                     
    }

         
}

     