
        body {
            margin: 0;
            font-family: 'Segoe UI', Arial, sans-serif;
            background: linear-gradient(135deg, #e0e7ff 0%, #f8f8f8 100%);
        }
        /* NAVBAR STYLES */
.navbar {
  background: #0f2027;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 12px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between; /* key line */
  align-items: center;
  padding: 0 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: bold;
}

.nav-logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

/* Navigation links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #00d9ff;
}

/* Hamburger for mobile */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  margin-left: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 60px;
    right: 0;
    background: #203a43;
    flex-direction: column;
    width: 200px;
    display: none;
    padding: 20px;
    border-radius: 0 0 8px 8px;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}



        .hero {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 60px 40px;
            background: linear-gradient(90deg, #0070f3 60%, #00c6fb 100%);
            color: #fff;
            border-radius: 0 0 32px 32px;
            box-shadow: 0 8px 32px rgba(0,112,243,0.08);
        }
        .hero-content {
            max-width: 600px;
        }
        .hero-content h1 {
            font-size: 2.8rem;
            margin-bottom: 16px;
            letter-spacing: 1px;
        }
        .hero-content p {
            font-size: 1.25rem;
            margin-bottom: 24px;
            opacity: 0.95;
        }
        .hero-btn {
            display: inline-block;
            padding: 14px 32px;
            background: linear-gradient(90deg, #fff 60%, #ffe066 100%);
            color: #0070f3;
            text-decoration: none;
            border-radius: 6px;
            font-weight: 600;
            font-size: 1.1rem;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            transition: background 0.3s, color 0.3s, transform 0.2s;
        }
        .hero-btn:hover {
            background: #ffe066;
            color: #0070f3;
            transform: scale(1.05);
        }
        .hero-image {
            max-width: 400px;
            width: 100%;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 24px rgba(0,112,243,0.12);
        }
        .hero-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        @media (max-width: 700px) {
            .hero {
                flex-direction: column;
                text-align: center;
                padding: 32px 10px;
            }
            .hero-content {
                max-width: 100%;
            }
            .hero-image {
                margin-top: 32px;
            }
        }
        .card-form-section {
            margin: 48px auto 0 auto;
            max-width: 500px;
            background: #0070f3;
            border-radius: 16px;
            box-shadow: 0 2px 16px rgba(0,112,113);
            padding: 32px;
        }
        .card-form-section h2 {
            text-align: center;
            margin-bottom: 24px;
            color: #0070f3;
            font-size: 2rem;
        }
        .card-form {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }
        .card-form input, .card-form textarea {
            padding: 12px;
            border-radius: 6px;
            border: 1px solid #e0e7ff;
            font-size: 1rem;
            outline: none;
            transition: border 0.2s;
        }
        .card-form input:focus, .card-form textarea:focus {
            border: 1.5px solid #0070f3;
        }
        .card-form button {
            padding: 12px 0;
            background: linear-gradient(90deg, #0070f3 60%, #00c6fb 100%);
            color: #fff;
            border: none;
            border-radius: 6px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
        }
        .card-form button:hover {
            background: #00c6fb;
            transform: scale(1.04);
        }
 

     /* ...existing code... */
.cards-list {
    margin: 40px auto;
    max-width: 1000px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 36px;
}
.card {
    position: relative;
    background: linear-gradient(135deg, rgba(0,112,243,0.10) 0%, #fff 100%);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0,112,243,0.18), 0 1.5px 8px rgba(0,0,0,0.06);
    padding: 38px 28px 28px 28px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    overflow: hidden;
    transition: box-shadow 0.4s, transform 0.25s, border 0.3s;
    border: 2px solid transparent;
    backdrop-filter: blur(8px);
}
.card::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, #0070f3 0%, #00c6fb 80%, transparent 100%);
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}
.card:hover {
    box-shadow: 0 16px 48px rgba(0,112,243,0.28), 0 2px 12px rgba(0,0,0,0.12);
    transform: translateY(-8px) scale(1.04);
    border: 2px solid #00c6fb;
    animation: cardGlow 1.2s infinite alternate;
}
@keyframes cardGlow {
    from { box-shadow: 0 16px 48px rgba(0,112,243,0.28), 0 2px 12px rgba(0,0,0,0.12);}
    to { box-shadow: 0 0px 64px 8px #00c6fb44, 0 2px 12px rgba(0,0,0,0.12);}
}
.card .card-name {
    font-size: 1.45rem;
    font-weight: bold;
    color: #0070f3;
    margin-bottom: 10px;
    letter-spacing: 1px;
    z-index: 1;
    text-shadow: 0 2px 8px #e0e7ff;
}
.card .card-title {
    font-size: 1.15rem;
    color: #222;
    margin-bottom: 10px;
    font-weight: 500;
    z-index: 1;
}
.card .card-desc {
    font-size: 1.05rem;
    color: #444;
    margin-bottom: 16px;
    opacity: 0.92;
    z-index: 1;
}
.card .card-contact {
    font-size: 1rem;
    color: #fff;
    background: linear-gradient(90deg, #0070f3 60%, #00c6fb 100%);
    padding: 8px 18px;
    border-radius: 14px;
    font-weight: 500;
    z-index: 1;
    box-shadow: 0 1px 8px rgba(0,112,243,0.10);
    letter-spacing: 1px;
    border: none;
}
.card .card-contact:hover {
    background: linear-gradient(90deg, #00c6fb 60%, #ffe066 100%);
    color: #222;
    transition: background 0.3s, color 0.3s;
}
@media (max-width: 700px) {
    .cards-list {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .card {
        padding: 24px 12px 18px 12px;
    }
}
/* ...existing code... */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(90deg, #0070f3 0%, #00c6fb 100%);
    padding: 18px 40px;
    box-shadow: 0 2px 12px rgba(0,112,243,0.10);
    position: sticky;
    top: 0;
    z-index: 10;
    animation: navbarFadeIn 1s;
}
@keyframes navbarFadeIn {
    from { opacity: 0; transform: translateY(-20px);}
    to { opacity: 1; transform: translateY(0);}
}
.logo {
    display: flex;
    align-items: center;
    font-size: 1.7rem;
    font-weight: bold;
    color: #fff;
    letter-spacing: 2px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.navbar ul {
    list-style: none;
    display: flex;
    gap: 28px;
    margin: 0;
    padding: 0;
}
.navbar ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.2s;
}
.navbar ul li a::after {
    content: '';
    display: block;
    width: 0;
    height: 3px;
    background: #ffe066;
    border-radius: 2px;
    transition: width 0.4s cubic-bezier(.68,-0.55,.27,1.55);
    position: absolute;
    left: 0;
    bottom: 0;
}
.navbar ul li a:hover {
    color: #ffe066;
}
.navbar ul li a:hover::after {
    width: 100%;
}
@media (max-width: 700px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px 20px;
    }
    .navbar ul {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
}
/* ...existing code... */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(90deg, #0070f3 0%, #00c6fb 100%);
    padding: 18px 40px;
    box-shadow: 0 2px 12px rgba(0,112,243,0.10);
    position: sticky;
    top: 0;
    z-index: 10;
    animation: navbarFadeIn 1s;
}
@keyframes navbarFadeIn {
    from { opacity: 0; transform: translateY(-20px);}
    to { opacity: 1; transform: translateY(0);}
}
.logo {
    display: flex;
    align-items: center;
    font-size: 1.7rem;
    font-weight: bold;
    color: #fff;
    letter-spacing: 2px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.08);
    gap: 12px;
}
.logo-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fff 0%, #0070f3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,112,243,0.15);
    transition: transform 0.3s;
    cursor: pointer;
}
.logo-circle img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.3s;
}
.logo-circle:hover {
    transform: scale(1.12) rotate(-8deg);
    box-shadow: 0 4px 16px rgba(0,112,243,0.25);
}
.navbar ul {
    list-style: none;
    display: flex;
    gap: 28px;
    margin: 0;
    padding: 0;
}
.navbar ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.2s;
}
.navbar ul li a::after {
    content: '';
    display: block;
    width: 0;
    height: 3px;
    background: #ffe066;
    border-radius: 2px;
    transition: width 0.4s cubic-bezier(.68,-0.55,.27,1.55);
    position: absolute;
    left: 0;
    bottom: 0;
}
.navbar ul li a:hover {
    color: #ffe066;
}
.navbar ul li a:hover::after {
    width: 100%;
}
@media (max-width: 700px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px 20px;
    }
    .navbar ul {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
}
/* ...existing code... */
  /* ...existing code... */
/* HERO SECTION */
.hero {
  background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
  padding: 80px 20px;
  color: #ffffff;
}

.hero-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-text {
  flex: 1;
  min-width: 280px;
}

.hero-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.hero-title .highlight {
  color: #00d9ff;
  background: linear-gradient(to right, #00d9ff, #00ffa6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.hero-btn {
  display: inline-block;
  padding: 14px 28px;
  background-color: #00d9ff;
  color: #000;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.hero-btn:hover {
  background-color: #00ffa6;
  transform: translateY(-3px);
}

.hero-img-wrapper {
  flex: 1;
  min-width: 280px;
  text-align: center;
}

.hero-img-wrapper img {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* ...existing code... */
/* ...existing code... */
.hero {
    margin-top: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 420px;
    background: linear-gradient(120deg, #f3f7fa 0%, #e0e7ff 100%);
    position: relative;
}
.hero-glass {
    display: flex;
    flex-direction: row;
    gap: 48px;
    background: rgba(255,255,255,0.85);
    border-radius: 32px;
    box-shadow: 0 8px 32px rgba(0,112,243,0.12);
    backdrop-filter: blur(10px);
    padding: 48px 56px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-content {
    max-width: 480px;
    text-align: center;
}
.hero-content h1 {
    font-size: 2.7rem;
    margin-bottom: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #0070f3;
}
.highlight {
    background: linear-gradient(90deg, #0070f3 60%, #00c6fb 100%);
    color: #fff;
    padding: 4px 16px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,112,243,0.10);
}
.hero-desc {
    font-size: 1.22rem;
    margin-bottom: 28px;
    color: #222;
    opacity: 0.95;
    line-height: 1.6;
}
.hero-btn {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(90deg, #0070f3 60%, #00c6fb 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: background 0.3s, color 0.3s, transform 0.2s;
    border: none;
    margin-top: 10px;
}
.hero-btn:hover {
    background: linear-gradient(90deg, #00c6fb 60%, #ffe066 100%);
    color: #222;
    transform: scale(1.05);
}
.hero-image {
    max-width: 340px;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,112,243,0.12);
    position: relative;
    z-index: 1;
}
.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
}
@media (max-width: 900px) {
    .hero-glass {
        flex-direction: column;
        text-align: center;
        padding: 32px 10px;
        gap: 24px;
    }
    .hero-content {
        max-width: 100%;
        margin-bottom: 18px;
    }
    .hero-image {
        margin-top: 0;
        max-width: 100%;
    }
}
/* ...existing code... */
/* ...existing code... */
.hero {
    margin-top: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 480px;
    position: relative;
    z-index: 1;
    /* Vibrant gradient background for hero only */
    background: linear-gradient(120deg, #ffecd2 0%, #fcb69f 100%);
    box-shadow: 0 8px 32px rgba(252,182,159,0.18);
    border-radius: 32px;
    overflow: hidden;
    animation: heroFadeIn 1.2s cubic-bezier(.68,-0.55,.27,1.55);
}
@keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(40px);}
    to { opacity: 1; transform: translateY(0);}
}
.hero-glass {
    display: flex;
    flex-direction: row;
    gap: 48px;
    background: rgba(255,255,255,0.18);
    border-radius: 32px;
    box-shadow: 0 8px 32px rgba(0,112,243,0.18);
    backdrop-filter: blur(18px);
    padding: 56px 64px;
    align-items: center;
    position: relative;
    z-index: 1;
    border: 1.5px solid rgba(255,255,255,0.35);
    animation: glassPop 1.2s cubic-bezier(.68,-0.55,.27,1.55);
}
@keyframes glassPop {
    from { transform: scale(0.95);}
    to { transform: scale(1);}
}
.hero-content {
    max-width: 480px;
    text-align: center;
    animation: fadeInLeft 1.2s;
}
@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-40px);}
    to { opacity: 1; transform: translateX(0);}
}
.hero-content h1 {
    font-size: 2.7rem;
    margin-bottom: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #0070f3;
    animation: textPop 1.2s;
}
@keyframes textPop {
    from { opacity: 0; transform: scale(0.8);}
    to { opacity: 1; transform: scale(1);}
}
.highlight {
    background: linear-gradient(90deg, #0070f3 60%, #00c6fb 100%);
    color: #fff;
    padding: 4px 16px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(255,126,95,0.10);
    animation: highlightPulse 2s infinite alternate;
}
@keyframes highlightPulse {
    from { box-shadow: 0 2px 8px rgba(255,126,95,0.10);}
    to { box-shadow: 0 4px 24px skyblue;}
}
.hero-desc {
    font-size: 1.22rem;
    margin-bottom: 28px;
    color: #222;
    opacity: 0.95;
    line-height: 1.6;
}
.hero-btn {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(90deg, #0070f3 60%, #00c6fb 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: background 0.3s, color 0.3s, transform 0.2s;
    border: none;
    margin-top: 10px;
    animation: btnBounce 2s infinite alternate;
}
@keyframes btnBounce {
    from { transform: scale(1);}
    to { transform: scale(1.07);}
}
.hero-btn:hover {
    background: linear-gradient(90deg, #00c6fb 60%, #ffecd2 100%);
    color: #222;
    transform: scale(1.09);
}
.hero-image {
    max-width: 340px;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(255,126,95,0.18);
    position: relative;
    z-index: 1;
    animation: fadeInRight 1.2s;
}
@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px);}
    to { opacity: 1; transform: translateX(0);}
}
.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
}
@media (max-width: 900px) {
    .hero-glass {
        flex-direction: column;
        text-align: center;
        padding: 32px 10px;
        gap: 24px;
    }
    .hero-content {
        max-width: 100%;
        margin-bottom: 18px;
    }
    .hero-image {
        margin-top: 0;
        max-width: 100%;
    }
}
/* ...existing code... */
/* ...existing code... */
.hero {
    margin-top: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 480px;
    position: relative;
    z-index: 1;
    /* Blue gradient theme background */
    background: linear-gradient(120deg, skyblue 0%, #00c6fb 100%);
    box-shadow: 0 8px 32px rgba(0,112,243,0.18);
    border-radius: 32px;
    overflow: hidden;
    animation: heroFadeIn 1.2s cubic-bezier(.68,-0.55,.27,1.55);
}
/* ...existing code... */

.features-section {
  padding: 60px 20px;
  background: linear-gradient(to bottom right, #1f1f1f, #2c2c2c);
  color: #fff;
  text-align: center;
}

.features-title {
  font-size: 2.5em;
  margin-bottom: 40px;
  color: #00ffc8;
  font-weight: 700;
}

.features-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 30px 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.feature-card h3 {
  color: #00ffc8;
  font-size: 1.5em;
  margin-bottom: 15px;
}

.feature-card p {
  font-size: 0.95em;
  line-height: 1.6;
  color: #ddd;
}
html {
  scroll-behavior: smooth;
}
.features-section {
  padding: 60px 20px;
  background: linear-gradient(to bottom right, #1f1f1f, #2c2c2c);
  color: #fff;
  text-align: center;
}

.features-title {
  font-size: 2.5em;
  margin-bottom: 40px;
  color: #00ffc8;
  font-weight: 700;
}

.features-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 30px 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.feature-card h3 {
  color: #00ffc8;
  font-size: 1.5em;
  margin-bottom: 15px;
}

.feature-card p {
  font-size: 0.95em;
  line-height: 1.6;
  color: #ddd;
}
/* PRICING SECTION */
.pricing-section {
  background-color: #f5f5f5;
  padding: 60px 20px;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #333;
}

.pricing-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.pricing-card {
  background: white;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 30px 20px;
  width: 300px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-10px);
}

.pricing-card h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 10px;
}

.price {
  font-size: 2rem;
  color: #007bff;
  margin: 20px 0;
}

.price span {
  font-size: 1rem;
  color: #555;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  color: #555;
}

.pricing-card ul li {
  margin: 10px 0;
}

.pricing-btn {
  display: inline-block;
  background-color: #007bff;
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  margin-top: 15px;
  transition: background-color 0.3s ease;
}

.pricing-btn:hover {
  background-color: #0056b3;
}

.featured {
  border: 2px solid #007bff;
  background-color: #e9f5ff;
}
/* CONTACT SECTION */
.contact-section {
  background-color: #222;
  padding: 60px 20px;
  color: #fff;
  text-align: center;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  width: 100%;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #999;
}

.contact-btn {
  background-color: #007bff;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-btn:hover {
  background-color: #0056b3;
}

.feedback-msg {
  margin-top: 10px;
  color: #00ff99;
  font-weight: bold;
}
/* HERO SECTION (Canva-inspired) */
.hero {
  background: #f9f9f9;
  padding: 80px 20px;
  color: #333;
}

.hero-wrapper {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-left {
  flex: 1;
  min-width: 300px;
}

.hero-title {
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 20px;
  color: #111;
}

.highlight {
  color: #0077cc;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #555;
}

.hero-btn {
  display: inline-block;
  background-color: #0077cc;
  color: white;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.hero-btn:hover {
  background-color: #005fa3;
}

.hero-right {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.hero-right img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}
/* HERO SECTION */
.hero {
  background: #f9f9f9;
  padding: 80px 20px;
  color: #333;
}

.hero-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.hero-left {
  flex: 1 1 400px;
  min-width: 320px;
}

.hero-title {
  font-size: 3.2rem;
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 24px;
  color: #111;
}

.highlight {
  color: #0077cc;
}

.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.5;
  margin-bottom: 36px;
  color: #555;
  max-width: 480px;
}

.hero-btn {
  display: inline-block;
  background-color: #0077cc;
  color: white;
  padding: 16px 36px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  box-shadow: 0 6px 15px rgba(0, 119, 204, 0.3);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.hero-btn:hover {
  background-color: #005fa3;
  box-shadow: 0 8px 20px rgba(0, 95, 163, 0.5);
}

.hero-right {
  flex: 1 1 400px;
  min-width: 320px;
  text-align: center;
}

.hero-right img {
  width: 100%;
  max-width: 480px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  object-fit: cover;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-wrapper {
    flex-direction: column-reverse;
    gap: 40px;
    text-align: center;
  }
  
  .hero-left, .hero-right {
    min-width: 100%;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    max-width: 100%;
  }
  
  .hero-btn {
    padding: 14px 28px;
    font-size: 1rem;
  }
}


