* { 
    margin:0;
    padding:0; 
    box-sizing:border-box; 
    font-family:"Arial"; 
}

:root {
    --main:#065f71;
}

/* Reset and Base Styles */
html, body {
    overflow-x: hidden;
    max-width: 100%;
}

body {
    padding-top: 0;
}

/* Dark Mode Styles */
.dark-mode {
    background: #0c1d21;
    color: #eee;
}

.dark-mode .strip-section {
    background: #044653;
}

.dark-mode .strip-section h3 {
    color: #ffffff;
}

.dark-mode .strip-section p {
    color: #b7b4b4;
}

.dark-mode .about-section {
    background: #033843;
}

.dark-mode .about-section h2 {
    color: #ffffff;
}

.dark-mode .about-section p {
    color:white;
}

.dark-mode .features-modern {
    background: #044653;
}

.dark-mode .features-modern h2 {
    color: #ffffff;
}

.dark-mode .gallery-section {
    background: #033843;
}

.dark-mode .gallery-section h2 {
    color: #ffffff;
}

.dark-mode .cta-section {
    background: #044653;
}

.dark-mode .cta-section h2 {
    color: #ffffff;
}

.dark-mode .cta-section p {
    color: #b6b2b2;
}

/* RTL Support */
.rtl {
    direction: rtl;
}

/* Hero Section */
.section-title {
    text-align: center;
    font-size: 34px;
    margin-bottom: 50px;
    color: #00eaff;
}

.hero-ultra {
    position: relative;
    width: 100%;
    padding: 150px 4%;
    color: #fff;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(200deg, rgba(0,117,128,0.85), rgba(0,26,33,0.95)),
        url("https://images.unsplash.com/photo-1485827404703-89b55fcc595e?w=1920&q=80")
        center/cover no-repeat;
    z-index: -1;
}

.hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-left {
    max-width: 650px;
    flex: 1;
}

.hero-tag {
    color: #00eaff;
    font-size: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.hero-left h1 {
    font-size: 58px;
    line-height: 1.15;
    font-weight: 900;
    color: #ffffff;
}

.hero-left h1 span {
    color: #00eaff;
}

.hero-desc {
    margin: 25px 0;
    font-size: 18px;
    line-height: 1.6;
    color: #d6f3f5;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.hero-btn-primary {
    background: #00eaff;
    padding: 14px 34px;
    border-radius: 10px;
    color: #00363e;
    font-weight: bold;
    text-decoration: none;
    font-size: 17px;
    transition: 0.3s;
    display: inline-block;
}

.hero-btn-primary:hover {
    background: #00c8d6;
    transform: translateY(-3px);
}

.hero-btn-outline {
    padding: 14px 32px;
    border-radius: 10px;
    border: 2px solid #00eaff;
    color: #00eaff;
    text-decoration: none;
    font-size: 17px;
    font-weight: bold;
    transition: 0.3s;
    display: inline-block;
}

.hero-btn-outline:hover {
    background: rgba(0,234,255,0.15);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 45px;
    flex-wrap: wrap;
}

.hero-stats h4 {
    font-size: 34px;
    margin-bottom: 5px;
    color: #00eaff;
}

.hero-stats p {
    color: #c8e6e8;
}

.hero-right {
    position: relative;
    flex: 1;
    max-width: 600px;
}

.hero-right img {
    width: 100%;
    max-width: 600px;
    border-radius: 15px;
    animation: floatUp 4s ease-in-out infinite;
}

@keyframes floatUp {
    0% { transform: translateY(0); }
    50% { transform: translateY(-18px); }
    100% { transform: translateY(0); }
}

.floating-shape {
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(0,234,255,0.18);
    border-radius: 50%;
    filter: blur(70px);
    top: 50%;
    left: -50px;
    transform: translateY(-50%);
    animation: softGlow 6s infinite alternate;
}

@keyframes softGlow {
    0% { opacity: 0.6; }
    100% { opacity: 1; }
}

/* Strip Section */
.strip-section {
    overflow: hidden;
    background: #9ac7cb;
    padding: 40px 0;
    white-space: nowrap;
    position: relative;
}

.scroll-track {
    display: flex;
    width: max-content;
    animation: scroll 18s linear infinite;
    gap: 80px;
}

.strip-item {
    display: inline-block;
    text-align: center;
    padding: 0 20px;
}

.strip-item h3 {
    font-size: 32px;
    color: #065f71;
}

.strip-item p {
    color: #171818;
    font-weight: 300;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* About Section */
.about-section {
    padding: 80px 8%;
    background: #f1ebeb;
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.about-text {
    flex: 1 1 500px;
    max-width: 600px;
}

.about-text h2 {
    color: #065f71;
    font-size: 40px;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 17px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
}

.about-img {
    flex: 1 1 400px;
    max-width: 500px;
}

.about-img img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    display: block;
}

/* Features Section - FIXED GRID */
.features-modern {
    padding: 80px 8%;
    background: #dfe9ed;
}

.features-modern h2 {
    color: #065f71;
    font-size: 40px;
    text-align: center;
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-card {
    background: #065f71;
    padding: 30px;
    border-radius: 12px;
    transition: .3s;
    border: 1px solid rgba(0, 234, 255, 0.2);
    color: white;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 20px rgba(0, 234, 255, 0.25);
}

/* Gallery Section - FIXED GRID */
.gallery-section {
    padding: 80px 8%;
    background: #d4dbdd;
}

.gallery-section h2 {
    color:#065f71;
    font-size: 40px;
    text-align: center;
    margin-bottom: 50px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-grid img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 8px 15px rgb(0, 109, 128);
    transition: transform 0.3s;
}

.gallery-grid img:hover {
    transform: scale(1.03);
    border: 2px solid white;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 80px 6%;
    background: #f5f7fa;
}

.cta-section h2 {
    color:#065f71;
    font-size: 40px;
    margin-bottom: 20px;
}

.cta-section p {
    color:#0a0f14;
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 18px;
}

.cta-btn {
    margin-top: 20px;
    padding: 14px 34px;
    border: none;
    background: #00eaff;
    font-size: 18px;
    border-radius: 8px;
    cursor: pointer;
    color: #00363e;
    font-weight: bold;
    transition: 0.3s;
}

.cta-btn:hover {
    background: #065f71;
    color: white;
    box-shadow: 0 8px 15px rgb(0, 109, 128);
}

@media (max-width: 992px) {
    /* Hero Section */
    .hero-ultra {
        padding: 120px 20px;
    }
    
    .hero-inner {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .hero-left h1 {
        font-size: 42px;
    }
    
    .hero-desc {
        font-size: 16px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 30px;
    }
    
    .hero-stats h4 {
        font-size: 28px;
    }
    
    /* About Section */
    .about-container {
        flex-direction: column;
        text-align: center;
    }
    
    .about-text h2 {
        font-size: 32px;
    }
    
    .about-img img {
        margin-left: 0;
        width: 100%;
        height: auto;
    }
    
    /* Features Grid - 2 columns */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    /* Gallery Grid - 3 columns */
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
}

/* Mobile (up to 768px) */
@media (max-width: 768px) {
    /* Hero Section */
    .hero-ultra {
        padding: 100px 15px;
    }
    
    .hero-left h1 {
        font-size: 32px;
    }
    
    .hero-desc {
        font-size: 15px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-btn-primary, .hero-btn-outline {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    /* Strip Section */
    .strip-item h3 {
        font-size: 24px;
    }
    
    /* Features Grid - 1 column FULL WIDTH */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100%;
    }
    
    .feature-card {
        width: 100%;
        padding: 25px 20px;
    }
    
    /* Gallery Grid - 2 columns FULL WIDTH */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        width: 100%;
    }
    
    .gallery-grid img {
        height: 200px;
    }
    
    /* About Image */
    .about-img img {
        height: auto;
        max-height: 400px;
    }
}

/* Small Mobile (up to 480px) */
@media (max-width: 480px) {
    /* Hero Section */
    .hero-left h1 {
        font-size: 26px;
    }
    
    .hero-tag {
        font-size: 14px;
    }
    
    /* All Section Titles */
    .section-title,
    .features-modern h2,
    .gallery-section h2,
    .cta-section h2,
    .about-text h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    /* Gallery Grid - 1 column FULL WIDTH on very small screens */
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid img {
        height: 250px;
    }
    
    /* Features Cards */
    .feature-card {
        padding: 20px 15px;
    }
    
    /* CTA Section */
    .cta-section {
        padding: 60px 15px;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 100%;
    }
}


.container {
    max-width: 100%;
    overflow-x: hidden;
}

img, video, iframe {
    max-width: 100%;
    height: auto;
}
