/* ================= RESET ================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

html {
 scroll-behavior: smooth;
}

/* ================= BODY ================= */

body {
  background: radial-gradient(circle at top, #0a0f2c 0%, #020617 40%, #000 100%);
  color: white;
  overflow-x: hidden;
}

/* ================= NAVBAR ================= */

.navbar {
   width: 100%;
   display: flex;
   align-items: center;
   justify-content: space-between;

    padding: 25px 60px;

    position: relative;

    z-index: 1000;

    box-sizing: border-box;
}


/* ================= LOGO ================= */

.logo-section h1 {

    color: #4fdcff;

    font-size: 32px;

    margin: 0;

    font-weight: 700;

    text-shadow: 0 0 15px rgba(79, 220, 255, 0.8);
}

.logo-section p {

    color: #d1d1d1;

    margin-top: 5px;

    font-size: 13px;
}





/* ================= NAVIGATION ================= */

.nav-menu {

    display: flex;

    align-items: center;

    gap: 40px;

    list-style: none;

    margin: 0 auto;

    padding: 0;

    background: transparent;

    border: none;

    box-shadow: none;
}

/* ================= NAV LINKS ================= */

.nav-menu a {

    position: relative;

    color: white;

    text-decoration: none;

    font-size: 16px;

    font-weight: 600;

    transition: all 0.3s ease;
}


/* HOVER */

.nav-menu a:hover {

    color: #4fdcff;

    text-shadow:
        0 0 10px #4fdcff,
        0 0 20px #4fdcff,
        0 0 35px #4fdcff;
}


/* UNDERLINE */

.nav-menu a::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -6px;

    width: 0%;

    height: 2px;

    background: #4fdcff;

    transition: 0.3s ease;

    box-shadow: 0 0 10px #4fdcff;
}


.nav-menu a:hover::after {

    width: 100%;
}



/* ================= HERO ================= */

.hero {
  min-height: 100vh;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;

  padding: 40px 20px;
}

.hero-logo {
  width: 500px;
  max-width: 90%;

  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 0 35px rgba(76, 201, 240, 0.8));
}

.hero h1 {
  font-size: 50px;
  margin-bottom: 20px;
}

.hero span {
  color: #4cc9f0;
}
.hero p {
  color: #bbb;
  margin-bottom: 25px;
}

/* ================= NAVBAR BUTTON - ================= */ 

.nav-btn {

    padding: 12px 28px;

    border-radius: 40px;

    background: rgba(79,220,255,0.08);

    border: 1px solid #4fdcff;

    color: white;

    text-decoration: none;

    font-size: 16px;

    font-weight: 600;

    transition: all 0.3s ease;

    box-shadow:
        0 0 15px rgba(79,220,255,0.15);
}


/* HOVER */

.nav-btn:hover {

    background: #4fdcff;

    color: black;

    transform: translateY(-2px);

    box-shadow:
        0 0 30px rgba(79,220,255,0.6);
}

/* ================= HERO BUTTONS ================= */

.hero-buttons {

    display: flex;

    flex-direction: row;

    justify-content: center;

    align-items: center;

    gap: 18px;

    margin-top: 30px;
}





/* BOTH BUTTONS */

.btn-primary,
.btn-secondary {

    display: flex;

    justify-content: center;

    align-items: center;

    width: 130px;

    height: 30px;

    border-radius: 40px;

    font-size: 12px;

    font-weight: 600;

    text-decoration: none;

    transition: all 0.3s ease;
}


/* PRIMARY */

.btn-primary {

    background: #4fdcff;

    color: black;

    box-shadow:
        0 0 20px rgba(79,220,255,0.5);
}


/* SECONDARY */

.btn-secondary {

    border: 2px solid #4fdcff;

    color: white;

    background: transparent;

    box-shadow:
        0 0 18px rgba(79,220,255,0.2);
}

/* HOVER */

.btn-primary:hover,
.btn-secondary:hover {

    transform: translateY(-3px);

    box-shadow:
        0 0 30px rgba(79,220,255,0.7);
}

/* ================= SECTION ================= */

section {
  padding: 80px 10%;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 32px;
}

/* ABOUT CARD */

.about-card {

    max-width: 420px;

    margin: auto;

    text-align: center;

    background: rgba(255,255,255,0.05);

    border: 1px solid rgba(79,220,255,0.2);

    border-radius: 25px;

    padding: 35px;

    cursor: pointer;

    transition: 0.3s ease;
}


.about-card:hover {

    transform: translateY(-8px);

    box-shadow:
        0 0 30px rgba(79,220,255,0.3);
}


.about-card h3 {

    color: white;

    font-size: 30px;
}

.about-card h2 {
    margin-bottom: 20px;
}



.about-card p {

    color: #d1d1d1;
}



./* SHORT ABOUT */

.about-short {

    text-align: center;

    color: #d1d1d1;

    font-size: 60px;

    cursor: pointer;

    margin-top: 20px;

    transition: 0.3s ease;
}


.about-short span {

    color: #4fdcff;

    display: block;

    margin-top: 10px;
}


.about-short:hover {

    color: white;

    text-shadow:
        0 0 12px rgba(79,220,255,0.4);
}


/* DETAILS */

.about-details {

    max-width: 900px;

    margin: 50px auto;

    background: rgba(255,255,255,0.03);

    border: 1px solid rgba(79,220,255,0.2);

    border-radius: 25px;

    padding: 40px;

    display: none;

    animation: fadeIn 0.5s ease;
}


.about-details.active {

    display: block;
}


.about-details h2,
.about-details h3 {

    color: #4fdcff;

    margin-bottom: 20px;
}


.about-details p {

    color: white;

    font-size: 15px;

    line-height: 1.8;

    margin-bottom: 20px;
}


/* PRODUCT HEADING */

.products h2 {

    text-align: center;

    color: white;

    font-size: 30px;

    margin-bottom: 30px;
}

/* PRODUCT SECTION */

.product-container {
   
  

    display: flex;

    justify-content: center;

    margin-top: 50px;
}


/* CARD */

.mail-card {

    width: 320px;

    background: rgba(255,255,255,0.05);

    border: 1px solid rgba(79,220,255,0.2);

    border-radius: 25px;

    padding: 30px;

    text-align: center;

    cursor: pointer;

    transition: 0.3s ease;
}

.mail-card:hover {

    transform: translateY(-10px);

    box-shadow:
        0 0 30px rgba(79,220,255,0.35);
}


/* IMAGE */

.mail-card img {

    width: 200px;

    margin-bottom: 20px;
}


/* TITLE */

.mail-card h3 {

    color: white;

    font-size: 28px;
}


/* DESCRIPTION */

.mail-card p {

    color: #d1d1d1;

    margin-top: 10px;
}

.click-text {

    color: #4fdcff;

    display: block;

    margin-top: 15px;
}


/* DETAILS SECTION */

.mail-details {

    max-width: 900px;

    margin: 50px auto;

    background: rgba(255,255,255,0.03);

    border: 1px solid rgba(79,220,255,0.2);

    border-radius: 25px;

    padding: 40px;

    display: none;

    animation: fadeIn 0.5s ease;
}

.mail-details.active {

    display: block;
}

.mail-details h2{

    color: #4fdcff;

    margin-bottom: 20px;
}
.mail-details h3 {

    color: #4fdcff;

    margin-top: 30px;

    margin-bottom: 15px;
}

.mail-details p,
.mail-details li {

    color: white;

    line-height: 1.8;
}


@keyframes fadeIn {

    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================= SERVICES ================= */

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.box {
  background: rgba(255,255,255,0.05);

  border-radius: 20px;

  padding: 25px;

  text-align: center;

  transition: 0.3s;
}

.box:hover {
  transform: translateY(-8px);
}

.box img {
  width: 100px;
  margin-bottom: 15px;
}

/* ================= CONTACT ================= */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.contact-card {
  text-decoration: none;

  color: white;

  background: rgba(255,255,255,0.05);

  border-radius: 15px;

  padding: 20px;

  text-align: center;

  transition: 0.3s;
}

.contact-card:hover {
  transform: translateY(-8px);
}

/* ================= ANIMATION ================= */

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* ================= MOBILE ================= */
@media (max-width: 900px) {

    /* NAVBAR */

    .navbar {

        flex-direction: column;

        gap: 20px;

        padding: 20px;
    }


    /* NAV MENU */

    .nav-menu {

        flex-wrap: wrap;

        justify-content: center;

        gap: 20px;

        width: 100%;

        max-width: 700px;
    }


    /* LOGO */

    .logo-section {

    display: flex;

    align-items: center;

    gap: 15px;
} 

  .logo-section img {

    width: 60px;

    height: 60px;

    object-fit: contain;

    filter:
        drop-shadow(0 0 15px rgba(79,220,255,0.6));
}

.logo-text h1 {

    color: #4fdcff;

    font-size: 38px;

    margin: 0;

    font-weight: 700;
}


.logo-text p {

    color: #d1d1d1;

    margin-top: 4px;

    font-size: 15px;
}


    /* HERO TITLE */

    .hero h1 {

        font-size: 36px;

        line-height: 1.2;
    }


    /* HERO BUTTONS */

    .hero-buttons {

        flex-direction: row;

        justify-content: center;

        flex-wrap: wrap;

        gap: 15px;
    }


    /* SERVICES GRID */

    .grid {

        grid-template-columns: repeat(2, 1fr);
    }
}


/* MOBILE */

@media (max-width: 600px) {

    .grid {

        grid-template-columns: 1fr;
    }


    .hero h1 {

        font-size: 28px;
    }


    .hero-buttons {

        flex-direction: column;
    }


    .btn-primary,
    .btn-secondary {

        width: 100%;
    }
}

/* HOVER EFFECTS */


.card:hover,
.box:hover,
.about-card:hover,
.contact-card:hover {

  box-shadow:
    0 0 15px rgba(76, 201, 240, 0.4),
    0 0 35px rgba(76, 201, 240, 0.2);

  border-color: #4cc9f0;
}

.btn-primary:hover,
.btn-outline:hover {

  box-shadow: 0 0 20px rgba(76, 201, 240, 0.6);

  transform: translateY(-2px);
}


/* FOUNDER CONTAINER */

.about-container {

    display: flex;

    justify-content: center;

    align-items: stretch;

    gap: 25px;

    flex-wrap: wrap;

    margin-top: 40px;

}

/* FOUNDER CARD */

.about-card {

    width: 260px;

    min-height: 340px;

    padding: 25px 20px;

    border-radius: 22px;

    text-align: center;
}



/* FOUNDER IMAGE */

.about-card img {

    width: 120px;

    height: 120px;

    border-radius: 50%;

    object-fit: cover;

    object-position: center top;

    margin: 0 auto 15px;

    display: block;
}

.about-card h3 {

    font-size: 20px;

    margin-top: 10px;

    margin-bottom: 8px;
}

.about-card h2 {
    margin-bottom: 20px;
}


/* FOUNDER DESCRIPTION */

.about-card p {

    font-size: 16px;

    line-height: 1.5;

    max-width: 90%;

    margin: auto;
}

.founder-title {

    text-align: center;

    margin-bottom: 40px;
}

/* ================= CONTACT ================= */

.contact {
  padding: 100px 10%;
  text-align: center;
}

.contact-title {
  font-size: 42px;
  margin-bottom: 10px;
}

.contact-subtitle {
  color: #bbb;
  margin-bottom: 50px;
  font-size: 18px;
}


/* GRID */

.contact-grid {

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 25px;

  max-width: 1100px;

  margin: auto;
}


/* CARD */

.contact-card {

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 12px;

  padding: 22px;

  border-radius: 18px;

  text-decoration: none;

  color: white;

  background: rgba(255,255,255,0.04);

  border: 1px solid rgba(76,201,240,0.25);

  backdrop-filter: blur(12px);

  transition: all 0.35s ease;

  font-size: 18px;

  font-weight: 600;
}


/* ICON */

.contact-card i {

  font-size: 22px;

  color: #4cc9f0;

  transition: 0.3s;
}


/* HOVER */

.contact-card:hover {

  transform: translateY(-8px);

  border-color: #4cc9f0;

  box-shadow:
    0 0 20px rgba(76,201,240,0.4),
    0 0 40px rgba(76,201,240,0.15);
}


/* ICON ANIMATION */

.contact-card:hover i {

  transform: scale(1.2);

  color: white;
}


/* BRAND HOVER COLORS */

.contact-card:nth-child(2):hover {
  box-shadow: 0 0 25px #25D366;
}

.contact-card:nth-child(4):hover {
  box-shadow: 0 0 25px #0077b5;
}

.contact-card:nth-child(5):hover {
  box-shadow: 0 0 25px #E1306C;
}

.contact-card:nth-child(6):hover {
  box-shadow: 0 0 25px #1877F2;
}


/* MOBILE */

@media (max-width: 768px) {

  .contact-grid {

    grid-template-columns: 1fr;
  }

  .contact-title {
    font-size: 34px;
  }

}

@media (max-width: 900px) {

    .why-flow {

        flex-direction: column;
    }

    .flow-line {

        width: 2px;

        height: 60px;
    }
}

@media (max-width: 768px) 

    @media (max-width: 768px) {

    /* WHY US MOBILE */

    .why-grid {

        display: grid;

        grid-template-columns: 1fr;

        gap: 20px;

        justify-items: center;
    }

    .why-grid .box {

        width: 100%;

        max-width: 320px;
    }

    .why-grid img {

        width: 100%;

        height: auto;

        object-fit: cover;
    }
}

/* WHY US DESKTOP */

.why-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 25px;
}

.why-grid img {

    width: 100%;

    height: 180px;

    object-fit: cover;

    border-radius: 15px;
}

/* ================= CONTACT FORM ================= */

.contact-form-section {

    padding: 120px 20px;

    display: flex;

    justify-content: center;

    align-items: center;
}


/* FORM CONTAINER */

.form-container {

    width: 80%;

    max-width: 850px;

    text-align: center;
}


/* TITLE */

.form-container h2 {

    font-size: 56px;

    font-weight: 700;

    color: white;

    line-height: 1.2;

    margin-bottom: 20px;
}


/* DESCRIPTION */

.form-container p {

    color: #d0d0d0;

    font-size: 18px;

    line-height: 1.7;

    max-width: 750px;

    margin: 0 auto 50px;
}


/* FORM */

.premium-form {

    background: rgba(255,255,255,0.03);

    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 28px;

    padding: 40px;

    backdrop-filter: blur(10px);

    box-shadow:
        0 0 30px rgba(79,220,255,0.08);

    display: flex;

    flex-direction: column;

    gap: 22px;
}


/* INPUTS */

.premium-form input,
.premium-form textarea {

    width: 100%;

    padding: 18px 22px;

    border-radius: 16px;

    border: 1px solid rgba(255,255,255,0.12);

    background: rgba(255,255,255,0.02);

    color: white;

    font-size: 17px;

    outline: none;

    transition: 0.3s ease;

    box-sizing: border-box;
}


/* TEXTAREA */

.premium-form textarea {

    min-height: 140px;

    resize: none;
}


/* INPUT FOCUS */

.premium-form input:focus,
.premium-form textarea:focus {

    border-color: #4fdcff;

    box-shadow:
        0 0 20px rgba(79,220,255,0.25);
}


/* PHONE GROUP */

.phone-group {

    display: flex;

    align-items: center;

    border: 1px solid rgba(255,255,255,0.12);

    border-radius: 16px;

    overflow: hidden;

    background: rgba(255,255,255,0.02);
}


.phone-group span {

    padding: 0 18px;

    color: white;

    font-size: 17px;
}


.phone-group input {

    border: none;

    background: transparent;
}


/* SUBMIT BUTTON */

.premium-form button {

    height: 58px;

    border: none;

    border-radius: 18px;

    background: linear-gradient(90deg, #4fdcff, #008cff);

    color: white;

    font-size: 18px;

    font-weight: 600;

    cursor: pointer;

    transition: 0.3s ease;

    box-shadow:
        0 0 25px rgba(79,220,255,0.35);
}


/* BUTTON HOVER */

.premium-form button:hover {

    transform: translateY(-3px);

    box-shadow:
        0 0 35px rgba(79,220,255,0.6);
}

/* ================= SERVICES GLASSMORPHISM ================= */

.box {

    background: rgba(255,255,255,0.04);

    border: 1px solid rgba(79,220,255,0.15);

    border-radius: 28px;

    padding: 30px;

    text-align: center;

    backdrop-filter: blur(14px);

    transition: 0.35s ease;

    overflow: hidden;

    cursor: pointer;
}


/* HOVER */

.box:hover {

    transform: translateY(-5px);

    box-shadow:
        0 0 35px rgba(79,220,255,0.18);
}


/* IMAGE */

.box img {

    width: 190px;

    height: auto;

    margin-bottom: 18px;

    object-fit: contain;

    transition: 0.3s ease;
}


/* TITLE */

.box h3 {

    font-size: 20px;

    margin-bottom: 10px;

    line-height: 1.3;
}

/* SHORT DESCRIPTION */

.service-header p {

    color: #d0d0d0;

    font-size: 16px;

    line-height: 1.6;
}


/* EXPANDABLE CONTENT */

.service-content {

    max-height: 0;

    overflow: hidden;

    transition:
        max-height 0.45s ease,
        margin-top 0.3s ease;
}


/* ACTIVE STATE */

.box.active .service-content {

    max-height: 300px;

    margin-top: 20px;
}


/* DETAILED DESCRIPTION */

.service-content p {

    color: #bdbdbd;

    font-size: 16px;

    line-height: 1.9;
}

/* ================= WHY US ================= */

/* WHY US */

.why-us {

    padding: 100px 60px;

    text-align: center;
}


.why-us h2 {

    font-size: 30px;

    color: white;

    margin-bottom: 50px;
}


/* GRID */

.why-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 25px;
}


/* CARD */

.why-card {

    background: rgba(255,255,255,0.03);

    border: 1px solid rgba(79,220,255,0.15);

    border-radius: 24px;

    padding: 35px 25px;

    transition: 0.3s ease;
}


.why-card:hover {

    transform: translateY(-8px);

    box-shadow:
        0 0 30px rgba(79,220,255,0.3);
}


/* ICON */

.why-card img {

    width: 200px;

    margin-bottom: 20px;

    filter:
        drop-shadow(0 0 15px rgba(79,220,255,0.6));
}


.why-card h3 {

    color: white;

    margin-bottom: 12px;
    font-size: 15px;
}


.why-card p {

    color: #d0d0d0;

    line-height: 1.6;
}

/* WHY US MOBILE RESPONSIVE */

@media (max-width: 768px) {

    .why-grid {

        grid-template-columns: 1fr !important;

        gap: 20px;

        justify-items: center;
    }

    .why-grid .box {

        width: 100%;

        max-width: 320px;
    }
}