* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background: #f6f9fc;
    color: #222;
}

/* CONTAINER */
.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

/* HERO */
.hero {
    position: relative;
    background: radial-gradient(circle at top left, #1e5fa3, #0c2d4d);
    color: white;
    padding: 80px 0;
}

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08), transparent);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 2;
}

.badge {
    background: rgba(255,255,255,0.15);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    margin-bottom: 15px;
    display: inline-block;
}

.hero-left h1 {
    font-size: 42px;
    line-height: 1.2;
}

.hero-left h1 span {
    color: #6fd3ff;
}

.subtitle {
    margin: 20px 0;
}

/* FORM */
.hero-form {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(15px);
    padding: 25px;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hero-form input, .hero-form select {
    padding: 12px;
    border-radius: 8px;
    border: none;
}

.hero-form button {
    background: linear-gradient(135deg, #ff7a18, #ff4e00);
    color: white;
    padding: 12px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
}

.trust{
    text-align: center;
    margin-top: 25px;
}

.trust i{
    color: #ff7a18;
}

/* IMAGE */
.image-wrapper {
    position: relative;
}

.image-wrapper img {
    width: 100%;
    border-radius: 0px;
    z-index: 3;
    position: relative;
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}

.image-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    left: 20%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255,255,255,0.15),
        transparent
    );
    border-radius: 20px;
    z-index: 4;
    pointer-events: none;
}

.image-wrapper::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    border-radius: 50%;
    top: 20%;
    right: 10%;
    opacity: 0.15;
    z-index: 1;
}

.hero-right .info{
    position: relative;
    text-align: center;
    z-index: 5;
}

.hero-right .info p.title{
    font-size: 30px;
    font-weight: 600;
    color: #ff7a18;
    margin-bottom: 7px;
}

.hero-right .info p.subs{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 7px;
}

.hero-right .info p.para{
    font-size: 18px;
    font-weight: 600;
}

.glow {
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(0, 183, 255, 0.35), transparent 60%);
    top: -10%;
    left: -10%;
    filter: blur(60px);
    z-index: 1;
}

/* SECTIONS */
section {
    padding: 70px 0;
}

/* HEADINGS */
h2 {
    text-align: center;
    font-size: 30px;
    margin-bottom: 40px;
}

h2::after {
    content: "";
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #ff7a18, #ff4e00);
    display: block;
    margin: 10px auto;
    border-radius: 10px;
}

/* EXPERTISE GRID - 3 PER ROW */
.expertise .grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* TABLET */
@media (max-width: 992px) {
    .expertise .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* MOBILE */
@media (max-width: 600px) {
    .expertise .grid {
        grid-template-columns: 1fr;
    }
}

/* GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

/* CARD */
.card {
    background: white;
    padding: 22px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.expertise .card h3{
    margin-bottom: 15px;
    text-align: center;
}
.expertise .card {
    text-align: center;
}

/* CARD ICON */
.card-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 15px;
}

/* ALIGNMENT */
.card {
    text-align: left;
}

/* OPTIONAL: ICON BACKGROUND */
.card-icon {
    padding: 10px;
    background: linear-gradient(135deg, #eef6ff, #ffffff);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* FULL WIDTH CTA */
.cta-section-full {
    width: 100%;
    padding: 70px 20px;

    /* 🔥 premium gradient */
    background: linear-gradient(135deg, #0f4c81, #2a7fba);

    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* subtle glow */
.cta-section-full::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.12), transparent);
    top: -50%;
    left: -50%;
}

/* CONTENT */
.cta-content {
    max-width: 900px;
    margin: auto;
    position: relative;
    z-index: 2;
}

/* HEADING */
.cta-content h2 {
    font-size: 30px;
    margin-bottom: 10px;
}

/* TEXT */
.cta-content p {
    opacity: 0.9;
    margin-bottom: 25px;
}

/* BUTTONS */
.cta-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* PRIMARY */
.cta-primary {
    background: linear-gradient(135deg, #ff7a18, #ff4e00);
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

/* SECONDARY */
.cta-secondary {
    background: rgba(255,255,255,0.15);
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    backdrop-filter: blur(10px);
    transition: 0.3s;
}

/* HOVER */
.cta-primary:hover,
.cta-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

/* MOBILE */
@media (max-width: 600px) {
    .cta-content h2 {
        font-size: 24px;
    }
}

/* WHY SECTION GRID */
.why .grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* SQUARE CARDS */
.why .card {
    aspect-ratio: 1 / 1; /* 🔥 makes it perfect square */
    
    display: flex;
    flex-direction: column;
    justify-content: center;  /* vertical center */
    align-items: center;      /* horizontal center */
    text-align: center;

    padding: 20px;
}

/* TEXT SPACING */
.why .card h4 {
    margin-bottom: 10px;
}

.why-icon {
    width: 100px;
    margin-bottom: 12px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .why .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .why .grid {
        grid-template-columns: 1fr;
    }
}

/* SECTION BACKGROUND */
.symptoms {
    padding: 80px 0;
    background: linear-gradient(180deg, #f7fbff, #eef5fb);
}

/* GRID */
.symptoms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

/* CARD */
.symptom-card {
    background: white;
    padding: 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;

    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: 0.3s;
}

/* ICON */
.symptom-card span {
    font-size: 20px;
}

.symptom-card i{
    color: #ff7a18;
}

/* TEXT */
.symptom-card p {
    margin: 0;
    font-weight: 500;
}

/* HOVER */
.symptom-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* CTA BLOCK */
.symptoms-cta {
    margin-top: 40px;
    text-align: center;
}

/* WARNING */
.warning {
    color: #e74c3c;
    font-weight: 600;
    margin-bottom: 15px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .symptoms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .symptoms-grid {
        grid-template-columns: 1fr;
    }
}

.warning {
    color: #c0392b;
    font-weight: bold;
    margin: 20px 0;
}

/* BUTTON */
.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #ff7a18, #ff4e00);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
}

/* SECTION BACKGROUND */
.contact {
    padding: 80px 20px;
    background: linear-gradient(180deg, #f7fbff, #eef5fb);
}

/* WRAPPER */
.contact-wrapper {
    max-width: 1000px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* LEFT CONTENT */
.contact-info h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.subtext {
    margin-bottom: 20px;
    color: #555;
}

/* BULLETS */
.contact-points {
    list-style: none;
    padding: 0;
}

.contact-points li {
    margin-bottom: 10px;
    font-weight: 500;
}

/* FORM BOX */
.contact-form-box {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* FORM */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* INPUTS */
.contact-form input, .contact-form select {
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 14px;
}

/* BUTTON */
.contact-form button {
    background: linear-gradient(135deg, #ff7a18, #ff4e00);
    color: white;
    padding: 14px;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-left h1 {
        font-size: 30px;
    }
}

/* STICKY CTA BAR */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 10px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    z-index: 999;
}

/* BUTTONS */
.cta-btn {
    flex: 1;
    text-align: center;
    padding: 12px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin: 0 5px;
    transition: 0.3s;
}

/* PRIMARY */
.cta-btn.primary {
    background: linear-gradient(135deg, #ff7a18, #ff4e00);
    color: white;
}

/* SECONDARY */
.cta-btn.secondary {
    background: #0f4c81;
    color: white;
}

/* HOVER */
.cta-btn:hover {
    transform: translateY(-2px);
}

/* DESKTOP ADJUST */
@media (min-width: 900px) {
    .sticky-cta {
        width: auto;
        left: auto;
        right: 20px;
        bottom: 20px;
        border-radius: 50px;
        padding: 8px;
    }

    .cta-btn {
        padding: 10px 18px;
    }
}

/* WHATSAPP FLOAT */
.whatsapp-float {
    position: fixed;
    bottom: 110px;
    right: 20px;
    width: 55px;
    height: 55px;
    background: #25D366;
    color: white;
    font-size: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: 0.3s;
}

/* HOVER EFFECT */
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

/* PULSE ANIMATION */
.whatsapp-float::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.4);
    animation: pulse 1.5s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.8); opacity: 0; }
}

/* MAP SECTION */
.map-section {
    width: 100%;
    height: 400px;
    position: relative;
}

/* MAP */
.map-container iframe {
    width: 100%;
    height: 360px;
    border: 0;
    filter: grayscale(20%) contrast(1.1);
}

/* OVERLAY CARD */
.map-overlay {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);

    background: white;
    padding: 25px;
    border-radius: 16px;

    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    max-width: 260px;
}

/* MOBILE */
@media (max-width: 768px) {
    .map-overlay {
        position: static;
        transform: none;
        margin: 20px;
    }
    .map-section {
        height: auto;
    }
    .map-container iframe {
        height: 300px;
    }
}

/* TOPBAR */
.topbar {
    width: 100%;
    background: white;
    padding: 12px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LOGO */
.logo img {
    height: 100px;
}

/* CONTACT */
.contact-info a {
    margin-left: 20px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
}

.contact-info a:hover {
    color: #ff4e00;
}

/* MOBILE */
@media (max-width: 900px){
    .logo img {
        height: 70px;
    }
}
@media (max-width: 768px) {
    .contact-info {
        display: flex;
        flex-direction: column;
        gap: 5px;
        font-size: 12px;
    }
}

/* FOOTER */
.footer {
    background: #0c2d4d;
    color: #ccc;
    padding: 30px 0;
    text-align: center;
    margin-top: 40px;
}

.footer-logo img {
    height: 125px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer p {
    font-size: 14px;
    opacity: 0.8;
}

.footer p i{
    color: red;
}