/* RESET */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}


/* NAVBAR */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 6%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}


/* LOGO */

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #0a58ca;
    font-weight: 600;
}

.logo img {
    height: 35px;
}


/* LINKS */

.nav-links {
    display: flex;
    gap: 25px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #0a58ca;
}


/* BUTTON */

.call-btn {
    background: #0a58ca;
    color: #fff;
    padding: 7px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
}


/* MENU ICON */

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}


/* MOBILE */

@media(max-width:768px) {
    .nav-links {
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        display: none;
        text-align: center;
        padding: 15px 0;
    }
    .nav-links.active {
        display: flex;
    }
    .menu-toggle {
        display: block;
    }
    .call-btn {
        display: none;
    }
}

#typing-logo::after {
    content: "|";
    margin-left: 5px;
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}


/* HERO */


/* HERO WRAPPER */

.hero {
    padding: 16px 6%;
    background: #f5f5f5;
}


/* SLIDER */

.slider {
    position: relative;
    width: 100%;
    height: 60vh;
    /* desktop height */
    max-height: 520px;
    /* safety cap */
    border-radius: 20px;
    overflow: hidden;
}


/* SLIDES (stacked) */

.slide {
    position: absolute;
    inset: 0;
    /* top:0 right:0 bottom:0 left:0 */
    opacity: 0;
    transition: opacity .6s ease;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}


/* IMAGE */

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* full banner look */
    display: block;
}


/* TABLET */

@media (max-width:1024px) {
    .slider {
        height: 50vh;
        max-height: 420px;
    }
}


/* MOBILE */

@media (max-width:768px) {
    .hero {
        padding: 12px;
    }
    .slider {
        height: 38vh;
        /* no blank space */
        border-radius: 12px;
    }
    .slide img {
        object-fit: contain;
        /* clean fill */
    }
}


/* SMALL MOBILE */

@media (max-width:480px) {
    .slider {
        height: 30vh;
    }
}


/* ABOUT SECTION */


/* ABOUT SECTION */

.about {
    padding: 70px 6%;
    background: #f8fbff;
}


/* CONTAINER */

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}


/* IMAGE */

.about-img img {
    width: 450px;
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateX(-100px);
    opacity: 0;
    transition: 1s;
}


/* TEXT */

.about-content {
    max-width: 550px;
    transform: translateX(100px);
    opacity: 0;
    transition: 1s;
}

.about-content h2 {
    color: #0a58ca;
    margin-bottom: 10px;
}

.about-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.about-content p {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}


/* BUTTON */

.btn {
    display: inline-block;
    background: #0a58ca;
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    transition: 0.3s;
}

.btn:hover {
    background: #084298;
}


/* ANIMATION ACTIVE */

.about.show .about-img img {
    transform: translateX(0);
    opacity: 1;
}

.about.show .about-content {
    transform: translateX(0);
    opacity: 1;
}


/* MOBILE */

@media(max-width:768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }
    .about-img img {
        transform: none;
    }
    .about-content {
        transform: none;
    }
}

.products {
    padding: 60px 6%;
}

.products h2 {
    margin-bottom: 20px;
}


/* GRID */

.product-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}


/* CARD */

.card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: #000;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.card-content {
    padding: 15px;
}

.card-content h3 {
    font-size: 16px;
}

.card-content p {
    font-size: 14px;
    color: #666;
}

.card-content span {
    display: block;
    margin-top: 10px;
    color: #0a58ca;
    font-weight: bold;
}


/* HOVER */

.card:hover {
    transform: translateY(-10px);
}


/* MOBILE */

@media(max-width:1024px) {
    .product-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:600px) {
    .product-container {
        grid-template-columns: 1fr;
    }
}


/* SECTION */

.services {
    padding: 70px 6%;
    background: linear-gradient(135deg, #f8fbff, #eef6ff);
    text-align: center;
}

.services h2 {
    font-size: 34px;
    margin-bottom: 10px;
}

.subtitle {
    color: #666;
    margin-bottom: 40px;
}


/* GRID */

.service-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}


/* CARD */

.service-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: 0.4s ease;
    transform: translateY(50px);
    opacity: 0;
}


/* ICON */

.icon {
    font-size: 40px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #0a58ca, #4fc3f7);
    color: #fff;
    padding: 15px;
    border-radius: 50%;
    display: inline-block;
}


/* TEXT */

.service-card h3 {
    margin-bottom: 10px;
    color: #0a58ca;
}

.service-card p {
    font-size: 14px;
    color: #555;
}


/* 🔥 HOVER */

.service-card:hover {
    transform: translateY(-12px) scale(1.03);
    background: linear-gradient(135deg, #0a58ca, #4fc3f7);
    color: #fff;
}

.service-card:hover h3,
.service-card:hover p {
    color: #fff;
}

.service-card:hover .icon {
    background: #fff;
    color: #0a58ca;
}


/* ANIMATION */

.services.show .service-card {
    transform: translateY(0);
    opacity: 1;
}


/* RESPONSIVE */

@media(max-width:1024px) {
    .service-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:600px) {
    .service-container {
        grid-template-columns: 1fr;
    }
}

.why {
    padding: 80px 8%;
    background: #f9fbff;
}


/* FLEX FIX */

.why-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}


/* IMAGE BIG + PREMIUM */

.why-image img {
    width: 320px;
    height: 320px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: 0.4s;
}

.why-image img:hover {
    transform: scale(1.05);
}


/* CONTENT */

.why-content {
    max-width: 550px;
}

.why-content h2 {
    font-size: 34px;
    margin-bottom: 15px;
    color: #111;
}

.why-content p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}


/* LIST PREMIUM */

.why-list {
    list-style: none;
    margin-bottom: 25px;
}

.why-list li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 30px;
    font-size: 15px;
}


/* CUSTOM CHECK ICON */

.why-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #0a58ca;
    font-weight: bold;
}


/* BUTTON */

.why-btn {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(135deg, #0a58ca, #4fc3f7);
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.why-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}


/* RESPONSIVE */

@media(max-width:768px) {
    .why-container {
        flex-direction: column;
        text-align: center;
    }
    .why-image img {
        width: 250px;
        height: 250px;
    }
}

.products {
    padding: 80px 6%;
    background: #f8fbff;
    text-align: center;
}

.products h2 {
    font-size: 34px;
}

.subtitle {
    color: #666;
    margin-bottom: 40px;
}


/* GRID */

.product-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}


/* CARD */

.product-card {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: 0.4s;
}

.product-card img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    margin-bottom: 15px;
}


/* TEXT */

.product-card h3 {
    margin-bottom: 8px;
}

.product-card p {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}


/* BUTTON */

.view-btn {
    display: inline-block;
    padding: 8px 20px;
    background: #0a58ca;
    color: #fff;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}


/* HOVER */

.product-card:hover {
    transform: translateY(-10px);
}

.view-btn:hover {
    background: #084298;
}


/* MOBILE */

@media(max-width:1024px) {
    .product-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:600px) {
    .product-container {
        grid-template-columns: 1fr;
    }
}


/* FOOTER */

.footer {
    background: #0a1f44;
    color: #fff;
    padding-top: 60px;
}


/* GRID */

.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 0 8%;
}


/* BOX */

.footer-box h3 {
    margin-bottom: 15px;
}

.footer-box p {
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
}


/* LINKS */

.footer-box ul {
    list-style: none;
}

.footer-box ul li {
    margin-bottom: 10px;
}

.footer-box ul li a {
    text-decoration: none;
    color: #ccc;
    transition: 0.3s;
}

.footer-box ul li a:hover {
    color: #4fc3f7;
    padding-left: 5px;
}


/* BOTTOM */

.footer-bottom {
    text-align: center;
    padding: 15px;
    margin-top: 40px;
    background: #06152e;
    font-size: 14px;
}


/* MOBILE */

@media(max-width:1024px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:600px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.contact-section {
    padding: 50px 20px;
    background: #f9f9f9;
    text-align: center;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}

.contact-info,
.contact-form {
    flex: 1;
    min-width: 300px;
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.form-group {
    margin-bottom: 15px;
    text-align: left;
}

input,
select,
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.submit-btn {
    width: 100%;
    padding: 12px;
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.submit-btn:hover {
    background: #0056b3;
}


/* MOBILE */

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }
}


/* ===== SECTION ===== */

.about-premium {
    padding: 80px 6%;
    background: linear-gradient(135deg, #f8fbff, #eef5ff);
}


/* CONTAINER */

.about-premium-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}


/* IMAGE */

.about-premium-img img {
    width: 100%;
    max-width: 420px;
    border-radius: 20px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15);
    transition: 0.4s;
}

.about-premium-img img:hover {
    transform: scale(1.05);
}


/* CONTENT */

.about-premium-content {
    max-width: 550px;
}


/* TAG */

.tag {
    display: inline-block;
    background: #e3f2fd;
    color: #0a58ca;
    padding: 6px 12px;
    border-radius: 5px;
    font-size: 13px;
    margin-bottom: 10px;
}


/* TITLE */

.about-premium-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
}


/* TEXT */

.about-premium-content p {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}


/* FEATURES */

.about-features {
    display: flex;
    gap: 20px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.about-features div {
    background: #fff;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}


/* BUTTON */

.about-btn {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(135deg, #0a58ca, #2ca6df);
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
}

.about-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}


/* ===== MOBILE ===== */

@media(max-width:768px) {
    .about-premium-container {
        flex-direction: column;
        text-align: center;
    }
    .about-premium-content h2 {
        font-size: 26px;
    }
    .about-features {
        justify-content: center;
    }
}


/* ===== SECTION ===== */

.svc-section {
    padding: 60px 5%;
    background: linear-gradient(135deg, #f7faff, #eef4ff);
}


/* HEADER */

.svc-header {
    text-align: center;
    margin-bottom: 40px;
}

.svc-tag {
    display: inline-block;
    background: #e7f0ff;
    color: #0a58ca;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 12px;
    margin-bottom: 10px;
}

.svc-header h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.svc-header p {
    color: #666;
}


/* GRID */

.svc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}


/* CARD */

.svc-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    transition: .3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}


/* ICON */

.svc-icon {
    font-size: 35px;
    margin-bottom: 10px;
}


/* TEXT */

.svc-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.svc-card p {
    font-size: 14px;
    color: #555;
}


/* HOVER */

.svc-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}


/* HIGHLIGHT */

.svc-highlight {
    background: linear-gradient(135deg, #0a58ca, #2ca6df);
    color: #fff;
}

.svc-highlight p {
    color: #fff;
}


/* ===== RESPONSIVE ===== */


/* Tablet */

@media(max-width:992px) {
    .svc-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* Mobile */

@media(max-width:576px) {
    .svc-grid {
        grid-template-columns: 1fr;
    }
    .svc-header h2 {
        font-size: 24px;
    }
}