@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

:root {
    --primary-color: #4a90e2; /* Brighter Blue */
    --secondary-color: #50e3c2; /* Teal/Turquoise */
    --background-color: #f8f9fa;
    --text-color: #343a40;
    --heading-color: #212529;
    --white-color: #ffffff;
    --light-gray: #e9ecef;
    --dark-gray: #6c757d;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --box-shadow-elegant: 0 8px 24px rgba(0, 0, 0, 0.12);
    --border-radius: 12px;
    --navbar-height: 60px; /* Define navbar height */
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #4a90e2 0%, #50e3c2 100%);
    --gradient-elegant: linear-gradient(135deg, rgba(74, 144, 226, 0.95) 0%, rgba(80, 227, 194, 0.95) 100%);
}

html { /* Add scroll-padding-top to prevent overlap */
    scroll-padding-top: var(--navbar-height);
    scroll-behavior: smooth; /* Optional: smooth scrolling */
}

body {
    font-family: 'Poppins', sans-serif; /* Using Poppins font */
    margin: 0;
    padding: 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
    background-attachment: fixed;
    color: var(--text-color);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

#language-switcher {
    position: fixed; /* Keep it fixed */
    top: 15px;
    right: 20px;
    z-index: 1001; /* Ensure it's above navbar if needed */
}

#language-switcher button {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white-color);
    border: 1px solid var(--white-color);
    padding: 5px 10px;
    margin-left: 5px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-size: 0.9em;
}

#language-switcher button:hover {
    background-color: var(--white-color);
    color: var(--primary-color);
}

header {
    background: var(--gradient-elegant);
    color: var(--white-color);
    padding: 6rem 1rem 5rem; /* Increased padding */
    text-align: center;
    position: relative; /* Needed for absolute positioning of switcher */
    overflow: hidden;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 0;
}

.header-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

header h1 {
    font-size: 3.2em; /* Larger heading */
    margin-bottom: 1.2rem;
    font-weight: 600;
    letter-spacing: -0.3px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: fadeInDown 0.8s ease-out;
    opacity: 0.95;
}

header .motto {
    font-size: 1.8em;
    font-weight: 600;
    margin-bottom: 2rem;
    opacity: 1;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-style: normal;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: fadeInDown 1s ease-out;
    position: relative;
    display: inline-block;
    padding: 1rem 2.5rem;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 40px;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    color: var(--white-color);
}

header p:not(.motto) {
    font-size: 1.3em;
    font-weight: 300;
    margin-bottom: 1.5rem; /* Add margin below subtitle */
    opacity: 0.9;
    animation: fadeInDown 1.2s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Store Button Styles */
.store-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem; /* Added margin top */
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.store-button {
    display: inline-flex; /* Use flex to align icon and text */
    align-items: center;
    background-color: rgba(33, 37, 41, 0.9); /* Dark background with transparency */
    color: var(--white-color);
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.store-button i {
    font-size: 1.5em;
    margin-right: 10px;
}

.store-button:hover {
    background-color: rgba(255, 255, 255, 0.2); /* Lighter on hover */
    transform: translateY(-3px);
    color: var(--white-color); /* Ensure text color stays white */
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Optional: Slightly different style for App Store */
.store-button.app-store {
 /* You could add specific styles here if needed, e.g., background-image */
}

.store-button.google-play {
 /* You could add specific styles here if needed */
}

main {
    max-width: 960px; /* Limit content width */
    margin: 2rem auto; /* Center main content */
    padding: 0 2rem;
    display: grid; /* Use grid for layout */
    gap: 2rem; /* Space between sections */
}

section {
    padding: 3rem 2.5rem; /* Increased padding */
    background-color: var(--white-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); /* Smooth transition */
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-secondary);
    transform: scaleY(0);
    transition: transform 0.4s ease;
    transform-origin: top;
}

section:hover::before {
    transform: scaleY(1);
}

section:hover {
    transform: translateY(-8px); /* Subtle lift effect on hover */
    box-shadow: var(--box-shadow-elegant);
    border-color: rgba(74, 144, 226, 0.2);
}

h2 {
    color: var(--heading-color);
    border-bottom: none;
    padding-bottom: 0.5rem;
    margin-bottom: 2rem; /* More space below heading */
    font-weight: 500;
    font-size: 2em;
    letter-spacing: -0.2px;
    position: relative;
    opacity: 0.9;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    opacity: 0.6;
}

ul {
    list-style: disc; /* Use standard disc bullets */
    padding-left: 20px; /* Indent list */
}

li {
    margin-bottom: 0.8rem; /* More space between list items */
}

a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

footer {
    text-align: center;
    padding: 3rem 1rem;
    margin-top: 4rem;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9em;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-secondary);
}

.footer-links {
    margin-top: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

/* Removed Social Media Icons in Footer Styles */

/* Responsive Design Adjustments */
@media (max-width: 768px) {
    header h1 {
        font-size: 2.2em;
    }

    main {
        padding: 0 1rem;
    }

    section {
        padding: 1.5rem;
    }

    #language-switcher {
        top: 10px;
        right: 10px;
    }

    #language-switcher button {
        padding: 4px 8px;
        font-size: 0.8em;
    }
}

/* How it Works Section Styles */
#how-it-works .steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

#how-it-works .step i {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

#how-it-works .step h3 {
    font-size: 1.2em;
    color: var(--heading-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

#how-it-works .step p {
    font-size: 0.95em;
}

/* Feature List Icon Styles */
#features ul {
    list-style: none; /* Remove default bullets */
    padding-left: 0; /* Remove default padding */
}

#features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem; /* More space between list items */
}

#features li i {
    font-size: 1.3em;
    color: var(--primary-color);
    margin-right: 15px; /* Space between icon and text */
    width: 25px; /* Fixed width for alignment */
    text-align: center;
}

/* Advantages Section Styles (Similar to Features) */
#advantages ul {
    list-style: none; /* Remove default bullets */
    padding-left: 0; /* Remove default padding */
}

#advantages li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem; /* More space between list items */
}

#advantages li i {
    font-size: 1.3em;
    color: var(--primary-color);
    margin-right: 15px; /* Space between icon and text */
    width: 25px; /* Fixed width for alignment */
    text-align: center;
}

/* Contact Icon Style */
#contact a i {
    margin-right: 8px;
}

/* App Preview Section Styles */
#app-preview {
    text-align: center;
}

#app-preview .gallery-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

#app-preview .gallery-main {
    position: relative;
    width: 100%;
    max-width: 700px;
    height: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

#app-preview .gallery-slider {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    transition: transform 0.8s ease;
}

#app-preview .slide {
    min-width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: #f5f5f5;
    transition: all 0.3s ease;
}

#app-preview .gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.8);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--primary-color);
    z-index: 2;
}

#app-preview .gallery-nav:hover {
    background-color: var(--primary-color);
    color: white;
}

#app-preview .prev {
    left: 10px;
}

#app-preview .next {
    right: 10px;
}

@media (max-width: 768px) {
    #app-preview .gallery-main {
        height: 300px;
    }
}

/* Testimonials Section Styles */
#testimonials {
    background-color: var(--light-gray); /* Light background for contrast */
    padding-top: 2rem;
    padding-bottom: 2rem;
}

/* Removed old .testimonial-cards grid styles */

.testimonial-carousel-container {
    max-width: 900px; /* Increased width to better fit two cards */
    margin: 1.5rem auto 0;
    overflow: hidden;
    position: relative;
}

.testimonial-track {
    display: flex; /* Align cards horizontally */
    transition: transform 0.5s ease-in-out; /* Smooth sliding animation */
    /* Width will be calculated by JS or implicitly set by flex items */
}

#testimonials .card {
    flex: 0 0 calc(50% - 2rem); /* Set width for two cards side-by-side, accounting for margin */
    box-sizing: border-box;
    background-color: var(--white-color);
    padding: 2.5rem; /* Adjusted padding */
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    border-left: 4px solid transparent;
    background-image: linear-gradient(var(--white-color), var(--white-color)), var(--gradient-secondary);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    margin: 0 1rem; /* Add some horizontal spacing between cards if needed, adjust based on visibility */
    opacity: 0.85; /* Slightly fade out non-active cards (optional) */
    transition: all 0.4s ease;
    position: relative;
}

#testimonials .card.active {
    opacity: 1; /* Make the active card fully visible */
    transform: scale(1.02);
    box-shadow: var(--box-shadow-elegant);
}

#testimonials .card .quote {
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--text-color);
}

#testimonials .card .author {
    font-weight: 600;
    text-align: right;
    color: var(--dark-gray);
}

/* Navbar Styles */
#main-nav {
    background-color: rgba(33, 37, 41, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--navbar-height);
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#mobile-menu-toggle {
    display: none; /* Hidden by default on desktop */
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
}

#mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--white-color);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

#mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

#mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

#nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 0.5rem;
}

#nav-menu li {
    padding: 0;
}

#nav-menu a {
    color: var(--light-gray);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.85em;
    white-space: nowrap;
    position: relative;
}

#nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-secondary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

#nav-menu a:hover::before,
#nav-menu a:focus::before {
    width: 80%;
}

#nav-menu a:hover,
#nav-menu a:focus {
    background-color: rgba(74, 144, 226, 0.2);
    color: var(--white-color);
    text-decoration: none;
    transform: translateY(-2px);
}

/* Mobile Navbar Styles */
@media (max-width: 900px) {
    #mobile-menu-toggle {
        display: flex; /* Show hamburger on mobile */
    }
    
    #nav-menu {
        position: fixed;
        top: var(--navbar-height);
        left: -100%; /* Start off-screen */
        width: 100%;
        height: calc(100vh - var(--navbar-height));
        background-color: rgba(33, 37, 41, 0.95);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 0;
        padding-top: 2rem;
        transition: left 0.3s ease;
        backdrop-filter: blur(10px);
    }
    
    #nav-menu.active {
        left: 0; /* Slide in when active */
    }
    
    #nav-menu li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    #nav-menu a {
        display: block;
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1.1em;
        border-radius: 0;
    }
    
    #nav-menu a:hover {
        background-color: var(--primary-color);
    }
}

#language-switcher {
    position: fixed; /* Keep it fixed */
    top: 15px;
    right: 20px;
    z-index: 1001; /* Ensure it's above navbar if needed */
}

/* Removed Social Media Icons in Footer Styles */

/* Responsive Design Adjustments */
@media (max-width: 768px) {
    header h1 {
        font-size: 2.2em;
    }

    main {
        padding: 0 1rem;
    }

    section {
        padding: 1.5rem;
    }

    #language-switcher {
        top: 10px;
        right: 10px;
    }

    #language-switcher button {
        padding: 4px 8px;
        font-size: 0.8em;
    }
}

/* How it Works Section Styles */
#how-it-works .steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

#how-it-works .step i {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

#how-it-works .step h3 {
    font-size: 1.2em;
    color: var(--heading-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

#how-it-works .step p {
    font-size: 0.95em;
}

/* Feature List Icon Styles */
#features ul {
    list-style: none; /* Remove default bullets */
    padding-left: 0; /* Remove default padding */
}

#features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem; /* More space between list items */
}

#features li i {
    font-size: 1.3em;
    color: var(--primary-color);
    margin-right: 15px; /* Space between icon and text */
    width: 25px; /* Fixed width for alignment */
    text-align: center;
}

/* Advantages Section Styles (Similar to Features) */
#advantages ul {
    list-style: none; /* Remove default bullets */
    padding-left: 0; /* Remove default padding */
}

#advantages li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem; /* More space between list items */
}

#advantages li i {
    font-size: 1.3em;
    color: var(--primary-color);
    margin-right: 15px; /* Space between icon and text */
    width: 25px; /* Fixed width for alignment */
    text-align: center;
}

/* Contact Icon Style */
#contact a i {
    margin-right: 8px;
}

/* App Preview Section Styles */
#app-preview {
    text-align: center;
}

#app-preview .preview-images {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap; /* Allow images to wrap on smaller screens */
    margin-top: 1.5rem;
}

#app-preview .preview-images img {
    max-width: 250px; /* Limit image width */
    height: auto;
    border-radius: 12px;
    box-shadow: var(--box-shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid transparent;
}

#app-preview .preview-images img:hover {
    transform: scale(1.08) translateY(-5px); /* Slight zoom effect on hover */
    box-shadow: var(--box-shadow-elegant);
    border-color: var(--primary-color);
}


/* Payment Methods Styles */
#payment-methods {
    text-align: center;
}

.payment-options {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.payment-option {
    background-color: var(--white-color);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    flex: 1;
    min-width: 200px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.payment-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.payment-option i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.payment-option h3 {
    margin-bottom: 0.5rem;
    color: var(--heading-color);
}

.payment-option p {
    color: var(--text-color);
    font-size: 0.9rem;
}

.security-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: var(--border-radius);
}

.security-info i {
    font-size: 2rem;
    color: #28a745;
}

.security-info p {
    margin: 0;
    text-align: left;
}

@media (max-width: 768px) {
    .payment-options {
        flex-direction: column;
    }
    
    .payment-option {
        margin-bottom: 1rem;
    }
    
    .security-info {
        flex-direction: column;
        text-align: center;
    }
    
    .security-info p {
        text-align: center;
    }
}

/* Intro Video Section Styles */
#intro-video {
    text-align: center;
    padding: 3rem 2rem;
}

#intro-video .video-container {
    max-width: 900px;
    margin: 2rem auto 0;
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.15), rgba(80, 227, 194, 0.15));
    padding: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(74, 144, 226, 0.1);
}

#intro-video .video-container:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(74, 144, 226, 0.3);
    border-color: rgba(74, 144, 226, 0.3);
}

#intro-video video {
    width: 100%;
    max-height: 600px;
    border-radius: 8px;
    display: block;
    background-color: #000;
    object-fit: contain;
}

@media (max-width: 768px) {
    #intro-video {
        padding: 2rem 1rem;
    }
    
    #intro-video .video-container {
        padding: 0.5rem;
        margin: 1.5rem auto 0;
    }
}

/* Services Section Styles */
#services {
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background-color: var(--white-color);
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(74, 144, 226, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 35px rgba(74, 144, 226, 0.25);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 249, 250, 1) 100%);
}

.service-card i {
    font-size: 3.5em;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover i {
    color: var(--secondary-color);
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.3em;
    color: var(--heading-color);
    margin: 0 0 1rem 0;
    font-weight: 600;
    text-align: center;
}

.service-card p {
    font-size: 0.95em;
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .service-card i {
        font-size: 3em;
    }
    
    .service-card h3 {
        font-size: 1.2em;
    }
}

/* Sectors Section Styles */
#sectors {
    text-align: center;
}

#sectors p {
    font-size: 1.1em;
    color: var(--text-color);
    margin-bottom: 2rem;
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.sector-card {
    background-color: var(--white-color);
    border-radius: var(--border-radius);
    padding: 2rem 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.sector-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(74, 144, 226, 0.1), transparent);
    transition: left 0.5s ease;
}

.sector-card:hover::before {
    left: 100%;
}

.sector-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 35px rgba(74, 144, 226, 0.25);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 249, 250, 1) 100%);
}

.sector-card i {
    font-size: 3em;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.sector-card:hover i {
    color: var(--secondary-color);
    transform: scale(1.1);
}

.sector-card h3 {
    font-size: 1.1em;
    color: var(--heading-color);
    margin: 0;
    font-weight: 600;
    text-align: center;
}

@media (max-width: 768px) {
    .sectors-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .sector-card {
        padding: 1.5rem 1rem;
    }
    
    .sector-card i {
        font-size: 2.5em;
    }
    
    .sector-card h3 {
        font-size: 1em;
    }
}

/* What to Expect Section Styles */
#what-to-expect {
    text-align: center;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.05) 0%, rgba(80, 227, 194, 0.05) 100%);
}

.expect-steps {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
}

.expect-step {
    background-color: var(--white-color);
    border-radius: var(--border-radius);
    padding: 3rem 2.5rem;
    box-shadow: var(--box-shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 600px;
}

.expect-step::after {
    content: '\f063';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    bottom: -2.5rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.5em;
    color: var(--primary-color);
    z-index: 10;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.expect-step:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(5px);
}

.expect-step:last-child::after {
    display: none;
}

.expect-step:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-elegant);
    border-color: var(--primary-color);
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-secondary);
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
    transition: all 0.3s ease;
}

.expect-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}

.expect-step h3 {
    font-size: 1.4em;
    color: var(--heading-color);
    margin: 0 0 1rem 0;
    font-weight: 600;
    text-align: center;
}

.expect-step p {
    font-size: 1em;
    color: var(--text-color);
    line-height: 1.7;
    margin: 0;
    text-align: center;
}

@media (max-width: 768px) {
    .expect-steps {
        gap: 2rem;
    }
    
    .expect-step {
        padding: 2rem 1.5rem;
        max-width: 100%;
    }
    
    .expect-step::after {
        font-size: 2em;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.8em;
    }
    
    .expect-step h3 {
        font-size: 1.2em;
    }
} 