/* FONT */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

/* BODY */
body{
    background: linear-gradient(135deg,#0f2027,#203a43,#2c5364);
    color:#fff;
    line-height:1.6;
}

/* HEADER */
header {
    position: absolute;   /* IMPORTANT CHANGE */
    width: 100%;
    top: 0;
    left: 0;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;

    background: transparent;   /* NO BLACK BOX */
    z-index: 1000;
}

/* When scrolling → completely hide background */
header.scrolled {
    background: transparent !important;
    box-shadow: none !important;
}

.logo img{
    height:170px;
}

/* NAV */
nav a{
    color:#fff;
    margin:0 10px;
    text-decoration:none;
    font-weight:500;
    transition:0.3s;
}

nav a:hover{
    color:#00ffd5;
}

/* BUTTON */
.btn{
    background: linear-gradient(45deg,#00ffd5,#00aaff);
    padding:10px 20px;
    border-radius:25px;
    color:#000;
    text-decoration:none;
    font-weight:bold;
}

/* HERO */
.hero{
    height:100vh;
    background:url('images/background.jpg') center/cover no-repeat;
}

.overlay{
    height:100%;
    background:rgba(0,0,0,0.65);
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.overlay h1{
    font-size:55px;
}

.overlay p{
    margin-top:10px;
    font-size:18px;
}

/* SOCIAL BUTTONS */
.social-buttons{
    margin-top:20px;
}

.whatsapp-btn{
    background:#25D366;
    padding:12px 25px;
    border-radius:25px;
    color:#fff;
    text-decoration:none;
    margin:10px;
}

.insta-btn{
    background:linear-gradient(45deg,#feda75,#d62976,#962fbf);
    padding:12px 25px;
    border-radius:25px;
    color:#fff;
    text-decoration:none;
    margin:10px;
}

/* SECTION */
.center-section{
    padding:80px 50px;
    text-align:center;
}

h2{
    font-size:38px;
    margin-bottom:30px;
}

/* ABOUT */
.about-container{
    display:flex;
    flex-direction: column;
    align-items:center;
    text-align: center;
    gap:30px;
    
}

.about-text{
    max-width:800px;
}

.about-image img{
    width:100%;
    max-width: 500px;
    border-radius:15px;
    margin-top: 20px;
}

/* CARDS (COMMON) */
.card{
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    border-radius:15px;
    padding:20px;
    transition:0.4s;
    box-shadow:0 8px 25px rgba(0,0,0,0.4);
}

.card:hover{
    transform:translateY(-10px) scale(1.05);
}

/* SERVICES GRID */
#services {
    padding: 80px 5%;
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    text-align: center;
}

#services h2 {
    font-size: 34px;
    margin-bottom: 40px;
    color: #ffffff;
}

/* GRID FIX */
.service-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width:1100px;
    margin: auto;
}


/* CARD DESIGN */
.card {
    background: #1b2b34;
    border-radius: 18px;
    padding: 20px;
    transition: 0.3s;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    text-align: center;
}

@media (max-width: 900px) {
    .service-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .service-cards {
        grid-template-columns: 1fr;
    }
}

/* IMAGE FIX */
.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
}

/* TEXT */
.card h3 {
    color: #ffffff;
    margin-bottom: 8px;
}

.card p {
    color: #ccc;
    font-size: 14px;
    margin-bottom: 15px;
}

/* BUTTON */
.card .btn {
    display: inline-block;
    padding: 8px 18px;
    background: #00c9a7;
    color: #000;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

/* HOVER EFFECT (IMPORTANT) */
.card:hover {
    transform: translateY(-10px) scale(1.03);
    background: #243b45;
    box-shadow: 0 15px 35px rgba(0,0,0,0.6);
}

.card:hover img {
    transform: scale(1.05);
}

.card:hover .btn {
    background: #00f5c4;
}

/* WHY SECTION */
.why-container{
    display:grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

/* OFFER */
.offer-cards{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
    justify-content:center;
}

/* VISION */
.cards{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
    justify-content:center;
}

/* PRICING */
.pricing-container{
    display:flex;
    gap:30px;
    justify-content:center;
    flex-wrap:wrap;
    margin-top:30px;
}

.pricing-box{
    background:rgba(255,255,255,0.08);
    padding:25px;
    border-radius:15px;
    width:300px;
}

/* CONTACT */
#contact p{
    margin:10px 0;
}

/* FOOTER */
footer{
    background:#000;
    padding:40px;
}

.footer{
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
}

.footer a{
    display:block;
    color:#00ffd5;
    margin:5px 0;
    text-decoration:none;
}

footer p{
    text-align:center;
    margin-top:20px;
}

/* RESPONSIVE */
@media(max-width:768px){

    header{
        flex-direction:column;
        gap:10px;
    }

    nav{
        text-align:center;
    }

    .overlay h1{
        font-size:30px;
    }

    .about-container{
        flex-direction:column;
    }

    .about-image img{
        width:100%;
    }

    .footer{
        flex-direction:column;
        text-align:center;
    }
}

/* PROPERTY BUYING PAGE ONLY */
body.property-page {
    background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)),
                url("images/property1.JPG");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* VASTU PAGE ONLY */
body.vastu-page {
    background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)),
                url("images/vastu1.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* ============================= */
/* ALL SERVICE PAGES (COMMON FIX) */
/* ============================= */

/* Common layout for ALL service pages */
.service-page {
    text-align: center;
    color: #ffffff;
    padding: 100px 20px;
}

/* MAIN TITLE */
.service-page h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;   /* 👈 gap below title */
}

/* PARAGRAPH */
.service-page p {
    max-width: 900px;
    margin: 0 auto 50px auto;  /* 👈 bottom gap FIX */
    line-height: 1.8;
    font-size: 18px;
    color: #e5e7eb;
}

/* SECTION HEADINGS (Types, Process etc.) */
.service-page h2 {
    font-size: 34px;
    margin-top: 70px;   /* 👈 BIG GAP ABOVE */
    margin-bottom: 25px;
}

/* LIST */
.service-page ul {
    list-style: none;
    padding: 0;
    margin-bottom: 50px;
}

.service-page ul li {
    margin: 12px 0;
    font-size: 18px;
}

/* CHECK ICON */
.service-page ul li::before {
    content: "✔ ";
    color: #00d4a4;
}

/* ============================= */
/* BACKGROUND FOR EACH PAGE */
/* ============================= */

/* PROPERTY */
body.property-page {
    background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)),
                url("images/property1.JPG");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* VASTU */
body.vastu-page {
    background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)),
                url("images/vastu1.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* INVESTMENT */
body.investment-page {
    background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)),
                url("images/Investment1.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* PLOT */
body.plot-page {
    background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)),
                url("images/plot2.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* SELLING */
body.selling-page {
    background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)),
                url("images/selling1.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* CONSULTANCY */
body.consultancy-page {
    background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)),
                url("images/consultancy2.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* ============================= */
/* FORCE SPACING FIX (ALL PAGES) */
/* ============================= */

/* Paragraph spacing */
.service-page p {
    margin-bottom: 60px !important;
    line-height: 1.8 !important;
}

/* Heading spacing */
.service-page h2 {
    margin-top: 80px !important;
    margin-bottom: 25px !important;
}

/* First heading */
.service-page h1 {
    margin-bottom: 35px !important;
}

/* ============================= */
/* GLOBAL RESET */
/* ============================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background: #0f2027;
    color: #fff;
}

/* ============================= */
/* HEADER */
/* ============================= */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.logo img {
    width: 140px;
}

/* NAV */
nav {
    display: flex;
    gap: 20px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s;
}

nav a:hover {
    color: #00d4a4;
}

/* BUTTON */
.btn {
    padding: 8px 18px;
    background: #00d4a4;
    color: #000;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
}

/* ============================= */
/* HERO */
/* ============================= */
.hero {
    height: 100vh;
    background: url("images/background.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero h1 {
    font-size: 50px;
}

.hero p {
    margin: 20px 0;
    font-size: 18px;
}

/* ============================= */
/* SECTIONS */
/* ============================= */
.center-section {
    padding: 100px 20px;
    text-align: center;
}

/* ============================= */
/* SERVICES GRID */
/* ============================= */
.service-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: auto;
}

.card {
    background: #1b2b34;
    border-radius: 15px;
    padding: 20px;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-8px);
}

.card img {
    width: 100%;
    border-radius: 10px;
}

/* ============================= */
/* SERVICE PAGES (ALL 6) */
/* ============================= */
.service-page {
    text-align: center;
    padding: 120px 20px;
}

.service-page h1 {
    font-size: 40px;
    margin-bottom: 30px;
}

.service-page p {
    max-width: 900px;
    margin: 0 auto 50px auto;
    line-height: 1.8;
}

.service-page h2 {
    margin-top: 70px;
    margin-bottom: 20px;
}

.service-page ul {
    list-style: none;
}

.service-page ul li {
    margin: 10px 0;
}

/* ============================= */
/* FOOTER */
/* ============================= */
footer {
    background: #000;
    padding: 40px;
    text-align: center;
}

.footer {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

/* TABLET */
@media (max-width: 900px) {

    .service-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    nav {
        gap: 10px;
    }
}

/* MOBILE */
@media (max-width: 600px) {

    header {
        flex-direction: column;
    }

    nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .service-cards {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 14px;
    }

    .service-page h1 {
        font-size: 28px;
    }
}

/* ============================= */
/* CLEAN REGISTRATION PAGE */
/* ============================= */

body.register-page {
    margin: 0;
    height: 100vh;

    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
                url("images/background.jpg") center/cover no-repeat;

    display: flex;
    flex-direction: column;
}

/* CENTER CONTENT */
.register-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* FORM (LIGHT GLASS STYLE - NOT HEAVY BOX) */
.register-form {
    background: rgba(255, 255, 255, 0.08);  /* 🔥 lighter */
    backdrop-filter: blur(8px);
    padding: 30px;
    width: 320px;
    border-radius: 12px;
    text-align: center;
}

/* TITLE */
.register-form h2 {
    margin-bottom: 15px;
}

/* INPUTS */
.register-form input {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border-radius: 6px;
    border: none;
}

/* BUTTON */
.register-form button {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border-radius: 20px;
    border: none;
    background: #00d4a4;
    font-weight: bold;
}

body.register-page header {
  background: transparent !important;
  box-shadow: none !important;
}

/* ============================= */
/* FINAL MOBILE RESPONSIVE FIX */
/* ============================= */

@media (max-width: 768px) {

    /* HEADER */
    header {
        flex-direction: column;
        padding: 10px;
        text-align: center;
    }

    nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .logo img {
        width: 120px;
    }

    /* HERO TEXT */
    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 14px;
    }

    /* SERVICES GRID → 1 COLUMN */
    .service-cards {
        grid-template-columns: 1fr;
    }

    /* SECTION PADDING */
    .center-section {
        padding: 60px 15px;
    }

    /* SERVICE PAGE TEXT */
    .service-page h1 {
        font-size: 28px;
    }

    .service-page h2 {
        font-size: 22px;
    }

    .service-page p {
        font-size: 16px;
    }

    /* REGISTRATION FORM */
    .register-form {
        width: 90%;
        padding: 20px;
    }
}

/* ============================= */
/* PREMIUM UI FINAL UPGRADE */
/* PASTE AT END ONLY */
/* ============================= */

/* GLOBAL SMOOTHNESS */
* {
    transition: all 0.3s ease;
}

/* BETTER TEXT + SPACING */
section {
    padding: 100px 8%;
}

h1 {
    font-size: 48px;
    font-weight: 700;
}

h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

p {
    font-size: 17px;
    color: #cbd5e1;
    line-height: 1.7;
}

/* PREMIUM CARDS */
.card {
    background: rgba(255,255,255,0.05) !important;
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 20px;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-10px) scale(1.02);
}

/* BUTTON UPGRADE */
.btn {
    background: linear-gradient(135deg, #00d4a4, #00b893) !important;
    border-radius: 30px;
    padding: 10px 22px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.btn:hover {
    transform: translateY(-2px);
}

/* HERO IMPROVEMENT */
.hero h1 {
    font-size: 60px;
    letter-spacing: 1px;
}

.hero p {
    font-size: 20px;
}

/* IMAGE RESPONSIVE */
img {
    max-width: 100%;
    height: auto;
}

/* CLEAN HEADER (LESS HEAVY) */
header {
    background: rgba(0,0,0,0.5) !important;
    backdrop-filter: blur(10px);
}

/* MOBILE FINAL FIX */
@media (max-width: 768px) {

    header {
        flex-direction: column;
        text-align: center;
    }

    nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .service-cards {
        grid-template-columns: 1fr !important;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 14px;
    }

    .register-form {
        width: 90%;
    }
}

/* SMOOTH FADE ANIMATION */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

section {
    animation: fadeUp 1s ease;
}

/* ============================= */
/* FINAL PROFESSIONAL FIX */
/* ============================= */


/* REMOVE HEAVY HEADER ON MOBILE */
@media (max-width: 768px) {

    header {
        position: relative !important;   /* stop overlapping */
        background: #0f2027 !important;  /* solid clean color */
        backdrop-filter: none !important;
        box-shadow: none !important;
        padding: 10px;
    }

    nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }

    .logo img {
        width: 110px;
    }
}


/* FIX HERO TEXT VISIBILITY */
@media (max-width: 768px) {

    .hero {
        padding-top: 120px;  /* pushes text below header */
    }

    .hero h1 {
        font-size: 26px !important;
        line-height: 1.3;
    }

    .hero p {
        font-size: 14px;
    }
}


/* SERVICES → 2 PER ROW (LIKE AMAZON) */
@media (max-width: 768px) {

    .service-cards {
        display: grid;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px;
    }

    .card {
        padding: 12px !important;
    }

    .card h3 {
        font-size: 14px;
    }

    .card p {
        font-size: 12px;
    }

    .card img {
        height: 120px;
        object-fit: cover;
    }
}


/* SMALL MOBILE (VERY SMALL PHONES) */
@media (max-width: 480px) {

    .service-cards {
        grid-template-columns: 1fr !important;
    }
}


/* CLEAN HEADER FOR DESKTOP */
header {
    background: rgba(0,0,0,0.4) !important;
    backdrop-filter: blur(8px);
}


/* PREVENT TEXT HIDING UNDER HEADER */
.hero {
    padding-top: 80px;
}


/* IMPROVE BUTTON SIZE ON MOBILE */
@media (max-width: 768px) {

    .btn {
        font-size: 12px;
        padding: 8px 14px;
    }
}

/* ============================= */
/* REMOVE HEADER BLUR COMPLETELY */
/* ============================= */

/* Desktop */
header {
    background: transparent !important;   /* no black rectangle */
    backdrop-filter: none !important;     /* remove blur */
    box-shadow: none !important;
}

/* Mobile */
@media (max-width: 768px) {
    header {
        background: transparent !important;
        backdrop-filter: none !important;
        box-shadow: none !important;
    }
}
/* ============================= */
/* HIDE HEADER ON SCROLL */
/* ============================= */

header {
    transition: transform 0.3s ease;
}

/* hidden state */
.header-hide {
    transform: translateY(-100%);
}

/* ============================= */
/* REMOVE ALL HERO DARK EFFECT */
/* ============================= */

.hero {
    background: url("images/background.jpg") center/cover no-repeat !important;
}

/* remove overlay if exists */
.hero .overlay {
    background: transparent !important;
}

/* ============================= */
/* AMAZON STYLE SERVICES GRID */
/* ============================= */

/* Desktop (Laptop) */
.service-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Tablet */
@media (max-width: 900px) {
    .service-cards {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Mobile (Main Fix) */
@media (max-width: 768px) {
    .service-cards {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px;
    }

    .card {
        padding: 10px;
    }

    .card img {
        height: 110px;
        object-fit: cover;
    }

    .card h3 {
        font-size: 14px;
    }

    .card p {
        font-size: 12px;
    }
}

/* Very Small Phones */
@media (max-width: 480px) {
    .service-cards {
        grid-template-columns: 1fr !important;
    }
}

/* ============================= */
/* AMAZON-LIKE MOBILE GRID FIX */
/* ============================= */

@media (max-width: 768px) {

    .service-cards {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important; /* 2 boxes per row */
        gap: 12px !important;
        padding: 10px;
    }

    .card {
        width: 100% !important;
        padding: 10px !important;
        border-radius: 12px !important;
    }

    .card img {
        width: 100%;
        height: 110px !important;
        object-fit: cover;
        border-radius: 10px;
    }

    .card h3 {
        font-size: 14px !important;
        margin-top: 8px;
    }

    .card p {
        font-size: 12px !important;
        margin: 5px 0;
    }

    .card .btn {
        font-size: 12px !important;
        padding: 6px 10px !important;
        margin-top: 5px;
    }
}


/* EXTRA SMALL PHONES (still 2 but tighter) */
@media (max-width: 480px) {

    .service-cards {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px !important;
    }

    .card img {
        height: 95px !important;
    }
}


/* REMOVE BLACK OVERLAY ON HERO */
.hero::before {
    display: none !important;
    background: none !important;
}


/* REMOVE HEADER BLUR COMPLETELY */
header {
    backdrop-filter: none !important;
    background: #0f2027 !important;
    box-shadow: none !important;
}


/* HIDE HEADER WHEN SCROLLING DOWN */
header {
    position: absolute;
}

body:not(:hover) header {
    transform: translateY(-100%);
    transition: 0.4s;
}


/* FIX HERO TEXT VISIBILITY */
.hero {
    padding-top: 100px !important;
}

.hero h1 {
    font-size: 24px !important;
}


/* MAKE UI LOOK CLEAN & PREMIUM */
.card {
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

/* ============================= */
/* FINAL HEADER FIX (MOBILE ISSUE) */
/* ============================= */

/* Default header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    background: #0f2027; /* solid clean */
}

/* MOBILE FIX */
@media (max-width: 768px) {

    header {
        position: fixed !important;
        top: 0;
        width: 100%;
        z-index: 9999;
        background: #0f2027 !important;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    body {
        padding-top: 70px; /* VERY IMPORTANT */
    }
}

/* ============================= */
/* REGISTRATION PAGE FINAL FIX */
/* ============================= */

/* Full page background (same as home) */
body.registration-page {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;

    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                url("images/home.jpg"); /* use your home bg image */

    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Center container */
.register-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

/* Form box */
.register-form {
    width: 100%;
    max-width: 400px;

    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(10px);

    padding: 30px;
    border-radius: 12px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    color: #fff;
}

/* Heading */
.register-form h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 26px;
}

/* Inputs */
.register-form input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;

    border: none;
    border-radius: 6px;
    outline: none;
}

/* Button */
.register-form .btn {
    width: 100%;
    padding: 12px;

    background: #ff9800;
    border: none;
    border-radius: 6px;

    color: white;
    font-size: 16px;
    cursor: pointer;

    transition: 0.3s;
}

.register-form .btn:hover {
    background: #e68900;
}

.register-container {
    position: relative;
    z-index: 2;
}

/* ============================= */
/* PERFECT BUTTON ALIGNMENT FIX */
/* ============================= */

.card {
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* spreads content */
    height: 100%; /* equal height cards */
}

/* IMAGE FIX */
.card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 10px;
}

/* TITLE FIX */
.card h3 {
    min-height: 40px; /* keeps all titles equal */
    font-size: 16px;
    margin: 10px 0;
    text-align: center;
}

/* PARAGRAPH (if any) */
.card p {
    flex-grow: 1; /* pushes button down */
    font-size: 13px;
    text-align: center;
}

/* BUTTON FIX */
.card .btn {
    margin-top: auto; /* pushes button to bottom */
    align-self: center;
}

/* GRID FIX (IMPORTANT) */
.service-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* MOBILE: 2 CARDS PER ROW */
@media (max-width: 768px) {
    .service-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* VERY SMALL MOBILE */
@media (max-width: 480px) {
    .service-cards {
        grid-template-columns: 1fr;
    }
}

/* ============================= */
/* HEADER MOBILE FIX (IMPORTANT) */
/* ============================= */

@media (max-width: 768px) {

    header {
        display: flex;
        flex-direction: row;   /* keep logo + button in one line */
        justify-content: space-between;
        align-items: center;
        padding: 10px 15px;
        background: #0f2027;   /* clean solid color */
        position: relative;
        z-index: 999;
    }

    /* LOGO FIX */
    .logo img {
        width: 110px;
        height: auto;
        display: block;
    }

    /* NAV FIX */
    nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
        margin-top: 8px;
        width: 100%;
    }

    nav a {
        font-size: 12px;
    }

    /* REGISTRATION BUTTON FIX */
    .btn, 
    .register-btn {
        font-size: 12px;
        padding: 6px 10px;
        white-space: nowrap;   /* prevents breaking */
    }
}

/* ============================= */
/* FINAL HEADER + LOGO + REGISTER */
/* ============================= */

.main-header {
    position: absolute; /* only visible on home top */
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: transparent; /* NO BLACK BOX */
    z-index: 1000;
}

/* LOGO */
.logo img {
    width: 140px;
}

/* NAVIGATION */
.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #00c6ff;
}

/* REGISTER BUTTON */
.register-btn {
    background: linear-gradient(45deg, #00c6ff, #0072ff);
    padding: 8px 18px;
    border-radius: 20px;
    color: white !important;
    font-size: 14px;
    transition: 0.3s;
}

.register-btn:hover {
    transform: scale(1.05);
}

/* REMOVE HEADER ON SCROLL */
.scrolled .main-header {
    display: none;
}

/* MOBILE FIX */
@media (max-width: 768px) {

    .main-header {
        flex-direction: column;
        padding: 10px;
    }

    .logo img {
        width: 110px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .register-btn {
        padding: 6px 14px;
        font-size: 12px;
    }
}

/* ============================= */
/* PERFECT MOBILE HEADER FIX */
/* ============================= */

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: transparent !important;
    box-shadow: none !important;
}

/* LOGO FIX */
.logo img {
    width: 110px;
    height: auto;
    object-fit: contain;
    background: transparent !important;
}

/* REMOVE WHITE BOX AROUND LOGO */
.logo {
    background: transparent !important;
    padding: 0;
    margin: 0;
}

/* REGISTRATION BUTTON FIX */
.nav-right {
    display: flex;
    align-items: center;
}

.nav-right .btn {
    padding: 8px 14px;
    font-size: 12px;
    border-radius: 20px;
}

/* MOBILE FIX */
@media (max-width: 768px) {

    header {
        position: fixed;
    
        top: 0;
        width: 100%;
        z-index: 1000;
    }

    .logo img {
        width: 90px;
    }

    .nav-right .btn {
        font-size: 11px;
        padding: 6px 12px;
    }
}

/* ============================= */
/* FINAL HEADER CLEAN FIX */
/* ============================= */

/* REMOVE ALL OLD HEADER EFFECTS */
header {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent !important;   /* remove black rectangle */
    backdrop-filter: none !important;
    box-shadow: none !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    z-index: 1000;
}

/* LOGO */
.logo img {
    width: 140px;
}

/* NAV (registration etc) */
nav {
    display: flex;
    gap: 20px;
    align-items: center;
}

/* NAV LINKS */
nav a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s;
}

/* HOVER EFFECT */
nav a:hover {
    color: #00c6ff;
}

/* REGISTRATION BUTTON */
.btn {
    background: linear-gradient(45deg, #00c6ff, #0072ff);
    border: none;
    border-radius: 25px;
    padding: 8px 18px;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
}

.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,198,255,0.4);
}

/* ============================= */
/* HIDE HEADER AFTER SCROLL */
/* ============================= */

header.hide {
    transform: translateY(-100%);
    transition: 0.4s;
}

header {
    transition: 0.4s;
}

/* ============================= */
/* MOBILE FIX */
/* ============================= */

@media (max-width: 768px) {

    header {
        flex-direction: row;
        padding: 10px 15px;
    }

    .logo img {
        width: 100px;
    }

    nav {
        gap: 10px;
    }

    nav a {
        font-size: 12px;
    }

    .btn {
        padding: 6px 12px;
        font-size: 12px;
    }
}

/* ============================= */
/* FIX HEADER BUTTON VISIBILITY */
/* ============================= */

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* MAKE SURE BUTTONS ARE VISIBLE */
nav .btn {
    display: inline-block !important;
    background: #ff7a18;
    color: #fff !important;
    padding: 8px 16px;
    margin: 5px;
    border-radius: 6px;
    font-size: 14px;
    text-decoration: none;
}

/* FIX MOBILE NAV */
@media (max-width: 768px) {

    nav {
        justify-content: center;
        gap: 8px;
    }

    nav .btn {
        font-size: 12px;
        padding: 6px 10px;
    }
}

/* ============================= */
/* MOBILE HEADER FIX (FINAL) */
/* ============================= */

@media (max-width: 768px) {

    header {
        position: relative !important;
        background: #0f2027 !important; /* solid clean */
        backdrop-filter: none !important;
        box-shadow: none !important;

        display: flex;
        flex-direction: row;   /* keep in one line */
        justify-content: space-between;
        align-items: center;

        padding: 10px 12px;
    }

    /* LOGO FIX */
    .logo img {
        width: 100px !important;
        height: auto;
        display: block;
    }

    /* NAV FIX */
    nav {
        display: flex;
        gap: 8px;
        align-items: center;
    }

    /* BUTTON FIX */
    .btn {
        font-size: 12px;
        padding: 6px 10px;
        white-space: nowrap; /* prevent breaking */
    }

}


.btn {
    padding: 12px 22px !important;
    font-size: 16px !important;
    border-radius: 30px;
}

/* ============================= */
/* DESKTOP (LAPTOP) HEADER FIX */
/* ============================= */

@media (min-width: 769px) {

    header {
        position: relative;   /* NORMAL for laptop */
        height: auto;
        padding: 15px 5%;
        background: rgba(0,0,0,0.4);
    }

    body {
        padding-top: 0;   /* REMOVE extra space */
    }

    .logo img {
        width: 120px;
    }
}

/* ============================= */
/* FINAL CLEAN HEADER FIX */
/* ============================= */

/* DEFAULT (Laptop/Desktop) */
header {
    position: relative;
    width: 100%;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #0f2027;
    z-index: 1000;
}

/* MOBILE FIX */
@media (max-width: 768px) {

    header {
        position: sticky;   /* 🔥 KEY CHANGE */
        top: 0;
        padding: 10px 15px;
    }

    /* REMOVE ANY BODY PUSH */
    body {
        padding-top: 0 !important;
    }

    /* FIX LOGO */
    .logo img {
        width: 80px;
        display: block;
    }

    /* FIX BUTTON */
    .btn {
        padding: 10px 16px;
        font-size: 14px;
    }

    /* HIDE NAV */
    nav {
        display: none;
    }

    /* REMOVE ALL EXTRA SPACE */
    .hero {
        margin-top: 0 !important;
        padding-top: 40px;
    }
}

/* HERO TEXT */

.hero h1 {
    font-weight: 800;
    text-shadow: 3px 3px 15px rgba(0,0,0,0.8);
}

.hero p {
    font-size: 24px;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
}

/* SERVICES CARDS */

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    transition: 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
}

/* CONTACT GAP */

#contact {
    margin-top: 100px;
}

/* MOBILE */

@media(max-width:768px){

    .cards{
        grid-template-columns: repeat(2,1fr);
    }

    .hero p{
        font-size:18px;
    }
}

/* SMOOTH SECTION ANIMATION */

section {
    animation: fadeInUp 1s ease;
}

/* CARD HOVER EFFECT */

.service-card,
.offer-card,
.why-card,
.pricing-box,
.vision-card,
.commitment-card {
    transition: all 0.4s ease;
}

.service-card:hover,
.offer-card:hover,
.why-card:hover,
.pricing-box:hover,
.vision-card:hover,
.commitment-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

/* BUTTON ANIMATION */

.btn {
    transition: 0.4s ease;
}

.btn:hover {
    transform: translateY(-5px);
}

/* HERO TEXT ANIMATION */

.hero-content {
    animation: fadeInUp 1.5s ease;
}

/* KEYFRAMES */

@keyframes fadeInUp {

    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* FIX HUGE GAP BEFORE CONTACT */
#pricing {
    padding-bottom: 40px;
    margin-bottom: 0;
}

#contact {
    margin-top: 0;
    padding-top: 60px;
}

/* REMOVE EXTRA SPACE FROM SECTIONS */
section {
    min-height: auto !important;
}

/* CONTACT SECTION */
.contact-section {
    background: #111827;
    color: white;
    padding: 60px 20px;
    text-align: center;
}

/* PRICING BOX CENTER */
.pricing-box {
    max-width: 500px;
    margin: 30px auto;
}

/* HOMEPAGE HEADING BOLD */
.hero-content h1 {
    font-size: 55px;
    font-weight: 800;
    color: white;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.7);
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {

    .hero-content h1 {
        font-size: 34px;
    }

    .cards,
    .service-cards,
    .offer-cards,
    .vision-cards {
        grid-template-columns: 1fr !important;
    }

    .pricing-box {
        width: 90%;
    }

    .contact-section {
        padding: 40px 15px;
    }
}
/* FINAL PRICING FIX */
.pricing-container,
.pricing-cards,
.pricing-wrapper {
    display: flex !important;
    justify-content: center !important;
    align-items: stretch !important;
    gap: 30px !important;
    flex-wrap: wrap !important;
}

.pricing-box,
.price-box,
.commission-box {
    width: 320px !important;
    margin: 0 !important;
}


[10:24 PM, 5/27/2026] Neha Shinde: /* ====================================
   PREMIUM MODERN ANIMATIONS
==================================== */

/* SMOOTH WEBSITE SCROLL */

html{
    scroll-behavior:smooth;
}

/* HERO SECTION */

.hero{
    position:relative;
    overflow:hidden;
}

.hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.55);
}

.hero-content{
    position:relative;
    z-index:2;
    animation:heroFade 1.5s ease;
}

.hero-content h1{
    font-size:60px;
    font-weight:800;
    color:white;
    text-shadow:3px 3px 15px rgba(0,0,0,0.7);
    letter-spacing:1px;
}

.hero-content p{
    font-size:24px;
    font-weight:600;
    color:white;
    text-shadow:2px 2px 10px rgba(0,0,0,0.7);
}

/* PREMIUM CARDS */

.service-card,
.offer-card,
.why-card,
.pricing-box,
.vision-card,
.commitment-card{

    transition:all 0.4s ease;
    border-radius:18px;
    overflow:hidden;
    backdrop-filter:blur(10px);
    background:rgba(255,255,255,0.05);
    box-shadow:0 10px 30px rgba(0,0,0,0.18);
}

/* CARD HOVER */

.service-card:hover,
.offer-card:hover,
.why-card:hover,
.pricing-box:hover,
.vision-card:hover,
.commitment-card:hover{

    transform:translateY(-10px) scale(1.02);
    box-shadow:0 18px 40px rgba(0,0,0,0.3);
}

/* IMAGE EFFECT */

.service-card img,
.offer-card img{

    transition:0.5s ease;
}

.service-card:hover img,
.offer-card:hover img{

    transform:scale(1.05);
}

/* BUTTONS */

.btn{

    transition:0.4s ease;
}

.btn:hover{

    transform:translateY(-5px);
}

/* NAVBAR */

header{

    backdrop-filter:blur(12px);
    background:rgba(0,0,0,0.45);
}

/* CONTACT SECTION */

#contact{

    margin-top:50px;
}

/* MOBILE RESPONSIVE */

@media(max-width:768px){

    .hero-content h1{
        font-size:36px;
    }

    .hero-content p{
        font-size:18px;
    }
}

/* HERO ANIMATION */

@keyframes heroFade{

    from{
        opacity:0;
        transform:translateY(40px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}
 /* SIMPLE SAFE ANIMATIONS */

.card,
.why-card,
.offer-card,
.vision-card,
.commitment-card,
.pricing-box{
    transition:0.4s ease;
}

.card:hover,
.why-card:hover,
.offer-card:hover,
.vision-card:hover,
.commitment-card:hover,
.pricing-box:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 35px rgba(0,0,0,0.25);
}

.hero-content{
    animation:fadeUp 1.2s ease;
}

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(40px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* =========================
FINAL MOBILE HEADER FIX
========================= */

.menu-toggle{
display:none;
}

@media (max-width:768px){

/* REMOVE DESKTOP HEADER EFFECT */
header{
position:fixed !important;
top:0 !important;
left:0 !important;
transform:none !important;
opacity:1 !important;
visibility:visible !important;
display:flex !important;
justify-content:space-between;
align-items:center;
width:100%;
padding:12px 15px;
background:#031b2c !important;
z-index:9999;
transition:none !important;
animation:none !important;
}

/* LOGO ALWAYS VISIBLE */
.logo{
display:block !important;
visibility:visible !important;
opacity:1 !important;
}

.logo img{
width:70px;
display:block;
}

/* RIGHT SIDE */
.nav-right{
display:flex;
flex-direction:column;
align-items:center;
}

/* REGISTRATION BUTTON */
.nav-right .btn{
padding:10px 15px;
font-size:14px;
margin-bottom:5px;
}

/* HAMBURGER */
.menu-toggle{
display:block !important;
font-size:34px;
color:white;
cursor:pointer;
line-height:1;
}
/* =========================
FINAL MOBILE FIX
========================= */

.menu-toggle{
display:none;
}

@media (max-width:768px){

header{
position:fixed;
top:0;
left:0;
width:100%;
background:#031b2c;
padding:12px 15px;
z-index:9999;
display:flex;
justify-content:space-between;
align-items:center;
transition:0.4s;
}

/* LOGO */
.logo img{
width:70px;
display:block;
}

/* RIGHT SIDE */
.nav-right{
display:flex;
flex-direction:column;
align-items:center;
}

/* BUTTON */
.nav-right .btn{
padding:10px 15px;
font-size:14px;
margin-bottom:5px;
}

/* HAMBURGER */
.menu-toggle{
display:block;
font-size:34px;
color:white;
cursor:pointer;
line-height:1;
}

/* MENU */
.desktop-menu{
display:flex;
position:fixed;
top:0;
right:-280px;
width:260px;
height:100vh;
background:#031b2c;
padding-top:120px;
flex-direction:column;
align-items:center;
gap:25px;
transition:0.4s ease;
z-index:999;
box-shadow:-5px 0 20px rgba(0,0,0,0.4);
}

.desktop-menu a{
color:white;
text-decoration:none;
font-size:18px;
font-weight:600;
}

/* HERO */
.hero{
padding-top:130px;
}

/* SERVICES AMAZON STYLE */
.service-cards{
display:grid !important;
grid-template-columns:1fr 1fr !important;
gap:12px !important;
padding:10px;
}

.card{
width:100% !important;
margin:0 !important;
padding:10px !important;
box-sizing:border-box;
border-radius:16px;
overflow:hidden;
}

.card img{
width:100%;
height:100px;
object-fit:cover;
border-radius:12px;
}

.card h3{
font-size:14px;
margin-top:10px;
}

.card .btn{
padding:8px 10px;
font-size:12px;
}

}
/* ================= FINAL MOBILE OVERRIDE ================= */

@media (max-width:768px){

header{
position:fixed !important;
top:0;
left:0;
width:100%;
background:#031b2c !important;
padding:12px 15px !important;
z-index:9999;
display:flex !important;
justify-content:space-between;
align-items:center;
transition:0.4s ease;
}

header.hide-header{
transform:translateY(-100%);
}

.logo img{
width:75px !important;
}

.nav-right{
display:flex !important;
align-items:center;
gap:10px;
}

.menu-toggle{
display:block !important;
font-size:34px;
color:white;
cursor:pointer;
z-index:10001;
}

/* RIGHT SIDE MENU */
.desktop-menu{
position:fixed !important;
top:0;
right:-100% !important;
width:260px;
height:100vh;
background:#031b2c !important;
display:flex !important;
flex-direction:column;
align-items:center;
padding-top:120px;
gap:25px;
transition:0.4s ease;
z-index:10000;
}

.desktop-menu.active{
right:0 !important;
}

.desktop-menu a{
color:white !important;
text-decoration:none;
font-size:22px;
font-weight:600;
}

/* SERVICES */
.service-cards{
display:grid !important;
grid-template-columns:1fr 1fr !important;
gap:12px !important;
padding:10px;
}

.card{
width:100% !important;
margin:0 !important;
padding:10px !important;
border-radius:16px;
}

.card img{
height:100px;
object-fit:cover;
}

.hero{
padding-top:120px !important;
}

}
/* FINAL HEADER SCROLL FIX */

@media (max-width:768px){

header{
position:fixed !important;
top:0 !important;
left:0 !important;
width:100% !important;
z-index:99999 !important;
transition:transform 0.4s ease !important;
}

.hide-navbar{
transform:translateY(-120px) !important;
}

.show-navbar{
transform:translateY(0) !important;
}

}

.pricing-note{
    display:block;
    margin-bottom:30px;
}
