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

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

/* universal */
body {
    margin: 0;
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: rgb(245, 245, 250);
    scroll-padding-top: 70px; /* Add padding for anchor links with sticky header */
}

ul {
    list-style-type: none;
}

a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: none;
    padding: 15px 0;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: none;
}

.flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.main-nav {
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.logo img {
    margin-right: 10px;
}

.logo span {
    color: #007AFF;
}

.navbar ul {
    display: flex;
    align-items: center;
}

.navbar li {
    margin-left: 20px;
}

.navbar a {
    padding: 8px 15px;
    font-weight: 500;
}

.navbar a:hover {
    color: #007AFF;
}

.download-nav {
    display: flex;
    align-items: center;
}

.downloadButton {
    display: inline-flex;
    align-items: center;
    background-color: #007AFF;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.downloadButton i {
    margin-right: 5px;
}

.downloadButton:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: none;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 80px 0 50px;
    margin-top: 0;
}

.gradientBackground {
    background-image: linear-gradient(135deg, #42a4ff, #0070e0);
    padding: 60px 0;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 0;
}

.hero-icon {
    width: 120px;
    height: auto;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-text {
    max-width: 800px;
    margin: 0 auto;
}

.hero-text p {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 15px;
    font-weight: 400;
}

.hero-text .cta-button {
    display: inline-flex;
    align-items: center;
    background-color: white;
    color: #007AFF;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 500;
    margin-top: 20px;
    transition: all 0.3s ease;
    text-align: center;
}

.hero-text .cta-button:hover {
    background-color: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: none;
}

/* Devices Showcase */
.devices-showcase {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin: 40px auto;
    max-width: 1200px;
    overflow: hidden;
    padding: 0;
}

.devices-showcase .section-title {
    padding: 40px 20px 20px;
    margin-bottom: 0;
    text-align: center;
}

.devices-showcase img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
    padding: 0;
    vertical-align: bottom;
}

/* Features Section */
.features {
    padding: 50px 0;
}

.feature-item {
    padding: 30px 0;
    margin-bottom: 20px;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background-color: rgb(245, 245, 250);
    border-radius: 12px;
    padding: 30px;
    transition: transform 0.3s ease;
}

.feature-grid:hover {
    transform: translateY(-5px);
}

.feature-grid .feature-content {
    grid-column: 1;
    padding-right: 20px;
}

.feature-grid .feature-image {
    grid-column: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-grid .feature-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

/* Make right-side images 30% smaller */
.feature-grid:not(.reverse) .feature-image img {
    max-width: 70%;
}

.feature-grid.reverse .feature-content {
    grid-column: 2;
    padding-left: 20px;
    padding-right: 0;
}

.feature-grid.reverse .feature-image {
    grid-column: 1;
}

.feature-content {
    padding: 0 20px;
}

.feature-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
    font-weight: 700;
}

.feature-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.feature-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.feature-image img:hover {
    transform: scale(1.02);
}

.secondaryBackground {
    background-color: transparent;
}

/* App Benefits */
.app-benefits {
    padding: 60px 0;
    background-color: rgb(245, 245, 250);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.benefit-item {
    background-color: rgb(245, 245, 250);
    padding: 30px 20px;
    text-align: center;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: #333;
}

.benefit-item i {
    font-size: 2.5rem;
    color: #0070e0;
    margin-bottom: 15px;
}

.benefit-item p {
    font-size: 1rem;
    color: #555;
}

/* Call to Action Section */
.cta-section {
    text-align: center;
    padding: 100px 0;
    background-color: rgb(245, 245, 250);
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #333;
}

/* Footer */
.footerBackground {
    background-color: #1a1a1a;
    padding: 60px 0 30px;
    color: white;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo img {
    width: 50px;
    margin-right: 15px;
}

.footer-logo h3 {
    font-size: 1.5rem;
    font-weight: 500;
    color: white;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #007AFF;
}

.copyright {
    text-align: center;
    color: #999;
    font-size: 0.9rem;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .navbar {
        padding: 10px 0;
        position: sticky;
        top: 0;
    }
    
    .hero {
        padding-top: 30px;
        margin-top: 0;
    }
    
    .hero-content {
        padding: 20px 15px;
    }
    
    .hero-icon {
        width: 100px;
        margin-bottom: 15px;
    }
    
    .devices-showcase {
        padding: 0;
        margin: 30px 15px;
    }
    
    .feature-item {
        margin-top: 0;
        padding: 20px 0;
    }
    
    .feature-image img {
        max-width: 100%;
        height: auto;
        margin-top: 15px;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        padding: 20px;
    }
    
    .feature-grid .feature-content,
    .feature-grid.reverse .feature-content {
        grid-column: 1;
        grid-row: 2;
        text-align: center;
        padding: 15px 0 0 0;
    }
    
    .feature-grid .feature-image,
    .feature-grid.reverse .feature-image {
        grid-column: 1;
        grid-row: 1;
        margin: 0 auto;
        max-width: 90%;
    }
    
    .features {
        padding: 10px 0 30px;
    }
    
    .feature-item {
        padding: 15px 0;
        margin: 0;
    }
    
    .feature-content {
        text-align: center;
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }

    .hero-text p {
        font-size: 1.3rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-logo {
        margin-bottom: 10px;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 480px) {
    .navbar {
        padding: 0 10px;
        height: auto;
        min-height: 70px;
    }

    .flex {
        flex-direction: row;
        padding: 15px 0;
        justify-content: space-between;
    }

    .main-nav, .download-nav {
        width: auto;
        justify-content: center;
        margin: 0;
    }

    .navbar ul {
        justify-content: flex-start;
        margin: 0;
    }

    .navbar li {
        margin: 0 10px;
    }

    .downloadButton {
        padding: 8px 15px;
        font-size: 0.9rem;
    }

    .hero {
        padding-top: 100px;
    }
    
    .hero-content {
        padding: 15px 10px;
    }
    
    .feature-content, 
    .feature-image {
        padding: 0 10px;
    }

    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .hero-text p {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .cta-button {
        padding: 12px 20px;
        font-size: 1rem;
    }

    .feature-content h2 {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }

    .feature-content p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .benefit-item {
        padding: 20px 15px;
    }

    .benefit-item i {
        font-size: 2rem;
    }

    .benefit-item h3 {
        font-size: 1.2rem;
    }
    
    .rating-text {
        font-size: 1rem;
    }
    
    .star-rating i {
        font-size: 1.2rem;
    }
    
    .feature-subtitle {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .feature-image {
        max-width: 95%;
    }

    .feature-grid {
        padding: 15px;
    }
}

/* video */
video {
    width: 100%;
    height: 700px;
    padding: 4vw 0px;
}

/* all devices */
.allDevices {
    width: 100%;
}

.allDevices img {
    width: 100%;
    height: auto;
    padding: 8vw 0px;
}

/* features */
.doubleGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    padding: 40px 0px;
    margin: 0 auto;
}

.featureContainer {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: 10px 0px;
}

.featureContainer h1 {
    text-align: center;
    width: 85%;
}

.featureContainer h2 {
    text-align: center;
    width: 85%;
    opacity: 0.625;
}

.featureContainer img {
    width: 75%;
    height: auto;
}

/* big footer */
.darkBackground {
    width: 100%;
    background-color: rgb(245, 245, 250);
    padding: 3vw 0vw 3vw 0vw;
}

.tripleGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    /* padding: 10vw 0px 5vw 0px; */
    margin: 0 auto;
}

.textIcon {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    align-items: center;
}

.textIcon img {
    width: 30%;
    height: 30%;
    object-fit: contain;
    padding-bottom: 10px;
}

.textIcon h1 {
    color: white;
    text-align: center;
    font-size: 1.5em;
}

.bigButton {
    display: flex;
    border: none;
    background-color: rgb(0,122,255);
    padding: 10px 60px;
    color: white;
    font-size: x-large;
    border-radius: 40px;
    margin: 0 auto;
    outline: none;
}

/* FAQ */
.accordionContainer {
    padding: 100px 20px;
}

.questionBackground {
    display: flex;
    flex-direction: column;
    background-color: rgb(245, 245, 250);
    border-radius: 20px;
    padding: 20px;
    margin-top: 15px;
    width: 100%;
}

.accordion {
    background-color: rgb(242, 242, 247);
    cursor: pointer;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.5s;
    font-size: large;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    margin: 0 auto;
}

.accordion img {
    width: 10px;
    height: 15px;
}

.active img {
    transform: rotate(90deg);
}

.panel {
  padding: 0 18px;
  display: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

/* terms */
.termsContainer {
    padding: 130px 0 60px;
    max-width: 800px;
}

.termsContainer p {
    margin-bottom: 20px;
    line-height: 1.8;
}

/* contact (form) */
.formPadding {
    padding: 100px 20px;
}

.contactGrid  {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.contactGrid div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contactGrid img {
    width: 50%;
    height: auto;
    padding: 20px 0px;
}

form {
    background-color: rgb(242, 242, 247);
    padding: 30px;
    border-radius: 15px;
}

input[type=text], select, textarea {
    width: 100%; 
    padding: 12px;
    border: 1px solid #ccc; 
    border-radius: 8px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
}

input[type=submit] {
    width: 100%;
    background-color: rgb(0,122,255);
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    margin-top: 20px;
}

label.error {
    color: red;
}

/* image gallery */
.galleryContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-top: 100px;
	overflow:auto;
}

.slider-outer {
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider-inner{
    display: flex;
    justify-content: center;
    align-items: center;
	height: auto;
	position: relative;
	overflow: hidden;
	float: left;
	padding: 3px;
}

.slider-inner img{
	display: none;
	width: 70%;
    height: auto;
}

.slider-inner img.active{
	display: inline-block;
}

.prev,.next{
	float: left;
	cursor: pointer;
}

.prev{
	position: relative;
    z-index: 100;
    width: 44px;
}

.next{
	position:relative;
    z-index:100;
    width: 44px;
}

/* pressKit */
@media screen and (max-width: 600px) {
    #pressKitTag {
      visibility: hidden;
      clear: both;
      float: left;
      margin: 10px auto 5px 20px;
      width: 28%;
      display: none;
    }
}

.pressKitContainer {
    max-width: 800px;
    margin: 0 auto; /* aligns to the centre */
    padding: 100px 20px;
}

.pressKitDownloadContainer {
    display: flex;
    justify-content: center;
}

.pressKitDownload {
    background-color: rgb(0,122,255);
    padding: 5px 30px;
    color: white;
    font-size: 14px;
    border-radius: 30px;
    outline: none;
    font-size: larger;
}

/* Video Showcase Enhancement */
.video-showcase {
    padding: 60px 0;
    text-align: center;
    background-color: rgb(245, 245, 250);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
    font-weight: 700;
}

.section-description {
    font-size: 1.2rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
}

.video-container:hover {
    transform: translateY(-5px);
}

.video-container video {
    width: 100%;
    display: block;
}

/* Mobile Adjustments for Video */
@media screen and (max-width: 768px) {
    .video-showcase {
        padding: 40px 15px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-description {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 480px) {
    .video-showcase {
        padding: 30px 10px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-description {
        font-size: 1rem;
        margin-bottom: 25px;
    }
}

/* Rating Section */
.rating-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 25px;
}

.rating-text {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-weight: 500;
}

.star-rating {
    display: flex;
    justify-content: center;
}

.star-rating i {
    color: #FFD700; /* Gold color for stars */
    font-size: 1.5rem;
    margin: 0 2px;
}

/* Feature Subtitle */
.feature-subtitle {
    color: #007AFF;
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 500;
}

/* Add scroll behavior for smooth navigation */
html {
    scroll-behavior: smooth;
}

/* Keep the regular CTA button with blue background for other sections */
.cta-section .cta-button {
    display: inline-flex;
    align-items: center;
    background-color: #007AFF;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 500;
    margin-top: 20px;
    transition: all 0.3s ease;
    text-align: center;
}

.cta-section .cta-button:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: none;
}

.cta-button i {
    margin-right: 8px;
    font-size: 1.2rem;
}