
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Sora', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: linear-gradient(135deg, #061429 0%, #0f2344 100%);
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: 250px;
    height: 70px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.nav-links a:hover {
    color: #4A90E2;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Home Section */
.home {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f1419 100%);
    color: white;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
    border-end-start-radius: 150px;
}

/* .home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(74,144,226,0.05)"/></svg>') repeat;
    animation: float 30s infinite linear;
} */

@keyframes float {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-100px); }
}

.home-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.carousel-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.carousel-track {
  display: flex;
  transition: transform 0.8s ease-in-out;
  height: 100%;
}

.carousel-slide {
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-content {
display: flex;
justify-content: space-between;
align-items: center;
max-width: 1200px;
width: 100%;
padding: 3rem 1rem 0px 1rem;
color: white;
}

.home-text {
max-width: 50%;
}

.home-text h1 {
font-size: 2.5rem;
margin-bottom: 1rem;
}

.home-text p {
font-size: 1.2rem;
margin-bottom: 1.5rem;
}
.home-features {
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #B0C4DE;
}

.feature-item::before {
    content: '✓';
    background: #00D4AA;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 0.8rem;
    font-weight: bold;
}

.cta-button {
    background: #00D4AA;
    color: #1a1a2e;
    padding: 15px 35px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0, 212, 170, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(0, 212, 170, 0.5);
    background: #00E5BB;
}

.home-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-image-bg {
    background: linear-gradient(135deg, #00D4AA 0%, #00B896 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    width: 400px;
    height: 450px;
    position: absolute;
    z-index: 1;
    bottom: 8px;
}

.home-image {
    position: relative;
    z-index: 2;
}

.home-image img,
.home-image video {
  width: 410px;
  height: 610px;
  border-radius: 1rem;
  object-fit: cover;
    z-index: 100;
    position: relative;
}

.home-slide-2{
    height: 610px;
    display: flex;
    align-items: center;
}

.bg-one-slide-2{
    width: 200px;
    position: absolute;
    background: linear-gradient(135deg, #00D4AA 0%, #00B896 100%);
    border-radius: 1rem;
    height: 100px;
    right: -50px;
    top: 60px;
}

.bg-two-slide-2{
    width: 200px;
    position: absolute;
    background: linear-gradient(135deg, #00D4AA 0%, #00B896 100%);
    border-radius: 1rem;
    height: 100px;
    left: -50px;
    bottom: 60px;
}

.block-right{
    width: 400px;
    position: absolute;
    background: linear-gradient(135deg, #00D4AA 0%, #00B896 100%);
    border-radius: 1rem;
    height: 400px;
    right: -50px;
    top: 60px;
}

.block-right-bottom{
    bottom: 60px;
    top: unset;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 1rem;
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ccc;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: #00B896;
}


.image-slide-2, .image-slide-3{
    height: 400px !important;
    object-fit: cover;
}

/* Section Styles */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #061429;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(45deg, #4A90E2, #87CEEB);
    border-radius: 2px;
}

/* About Section */

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.about-text {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.about-text h3 {
    color: #4A90E2;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #4A90E2, #87CEEB);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

/* Services Section */
.services {
    background: #f8fafd;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: linear-gradient(135deg, #f8fafd 0%, white 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #4A90E2;
    box-shadow: 0 15px 40px rgba(74, 144, 226, 0.2);
}

.service-card h3 {
    color: #061429;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    line-height: 1.8;
}


.case-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  margin-bottom: 5rem;
  gap: 2rem;
}

.case-grid.reverse {
  flex-direction: row-reverse;
}

.case-image {
  flex: 1 1 45%;
  max-width: 500px;
}

.case-image img {
  width: 100%;
  height: 335px;
  object-fit: cover;
  border: 3px solid #00B896;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.case-text {
  flex: 1 1 50%;
}

.case-text h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #111;
}

.case-text p {
  color: #444;
  line-height: 1.6;
  font-size: 1.05rem;
}


/* Clients Section */
.clients {
    background: #f8fafd;
    padding: 80px 0px 115px 0px;
}

.clients-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 10rem;
    align-items: start;
}

.clients-image{
    position: relative;
}

.clients-image .bg-client{
    position: absolute;
    width: 350px;
    height: 500px;
    border-radius: 15px;
    background: #061429;
    right: -45px;
    bottom: -35px;
}

.clients-image img {
    z-index: 100;
    position: relative;
    width: 350px;
    height: 500px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.clients-content {
    display: flex;
    flex-direction: column;
}

.clients-description {
    display: none;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
}

.clients-logos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.client-logo {
    width: 100%;
    background: white;
    padding: 0.25rem;
    border-radius: 10px;
    object-fit: contain;
    height: 80px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.carousel {
    display: flex;
    transition: transform 0.5s ease;
}

.client-slide {
    min-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem;
    gap: 2rem;
}

.carousel-nav {
    text-align: center;
    margin-top: 2rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    display: inline-block;
    margin: 0 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.carousel-dot.active {
    background: #4A90E2;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #061429 0%, #0f2344 100%);
    color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.45fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 2rem;
}

.image-contact{
    position: relative;
}

.image-contact .block-contact{
    position: absolute;
    background: linear-gradient(135deg, #00D4AA 0%, #00B896 100%);
    border-radius: 1rem;
    left: -45px;
    bottom: 60px;
    width: 265px;
    height: 400px;
}

.image-contact img{
    width: 265px;
    height: 400px;
    border-radius: 1rem;
    object-fit: cover;
    z-index: 100;
    position: relative;
}

.contact-info {
    color: white;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #eee;
}

.contact-list {
    list-style: none;
    padding: 0;
    font-size: 1rem;
    line-height: 1.8;
}

.contact-list li strong {
    color: #00ffcc;
}

.whatsapp-btn {
    width: fit-content;
    background: linear-gradient(135deg, #00D4AA 0%, #00B896 100%);
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: bold;
    text-align: center;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.whatsapp-btn:hover {
    background-color: #1da851;
}

.contact-form {
    width: 100%;
    margin: 0 auto;
    background: rgba(255,255,255,0.1);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #B0C4DE;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    background: rgba(255,255,255,0.1);
    color: white;
    font-size: 1rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #B0C4DE;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4A90E2;
}

.submit-btn {
    background: linear-gradient(45deg, #4A90E2, #5BA3F5);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(74, 144, 226, 0.5);
}

/* Footer */
footer {
    background: #061429;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #4A90E2;
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
    color: #B0C4DE;
    text-decoration: none;
    margin-bottom: 0.5rem;
    display: block;
}

.footer-section a:hover {
    color: #4A90E2;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #0f2344;
    color: #888;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .clients-logos-grid{
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .home{
        border-end-start-radius: 50px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, #061429 0%, #0f2344 100%);
        border-bottom-right-radius: 15px;
        flex-direction: column;
        padding: 1rem 20px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    /* Mobile Home Layout - Vertical Stack */
    .home-content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding-top: 1rem;
    }

    .home-image-bg{
        left: 50%;
        transform: translateX(-50%);
    }

    .home-text{
        max-width: unset;
        width: 100%;
    }

    .home-text h1 {
        font-size: 2.2rem;
        text-align: left;
        margin-bottom: 1rem;
    }

    .home-text p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        text-align: left;
    }

    .home-features {
        margin-bottom: 2rem;
    }

    .feature-item {
        margin-bottom: 0.8rem;
        font-size: 0.9rem;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 0.9rem;
        width: 100%;
        display: inline-block;
    }

    .home{
        padding-top: 100px;
    }

    .home-image-bg {
        width: 280px;
        height: 320px;
        border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    }

    .home-slide-2{
        height: fit-content;
        padding: 3rem 0;
    }

    .home-image img {
        width: 240px;
        height: auto;
    }

    .block-right{
        width: 85%;
        right: 0px;
        top: 20px;
    }

    .image-slide-2, .image-slide-3{
        width: 85% !important;
    }

    .image-slide-3{
        margin: 0 auto;
    }

    .bg-one-slide-2{
        right: 0;
        top: 0;
    }

    .bg-two-slide-2{
        left: 0;
        bottom: 0;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .case-grid{
        margin-bottom: 2rem;
    }

    .case-grid, .case-grid.reverse {
        flex-direction: column;
    }

    .case-text{
        order: 1;
    }

    .case-text h3{
        text-align: center;
        font-size: 1.25rem;
    }

    .case-text p{
        font-size: 1rem;
    }

    .case-image{
        width: 100%;
        order: 2;
    }

    .case-image img{
        width: 100%;
        height: 230px;
    }

    .clients-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .clients-image, .image-contact{
        display: none;
    }

    .clients-content{
        order: 1;
    }

    .clients-image {
        order: 2;
    }

    .clients-image img, .clients-image .bg-client{
        width: 300px;
        height: fit-content;
    }

    .clients-image .bg-client{
        width: 250px;
        height: 450px;
        right: 10px;
    }

    .clients-description{
        display: block;
    }
    
    .client-slide {
        flex-direction: column;
        padding: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        margin-top: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .home-text h1 {
        font-size: 2rem;
    }

    .service-card,
    .feature-card {
        padding: 1.5rem;
    }
}