﻿html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}
.principal-section {
    background: #f4f7ff !important;
    padding: 60px 0 !important;
}

.site-title {
    font-size: 32px !important;
    font-weight: 700 !important;
    color: #0b1c4d !important;
}

.content-text {
    font-size: 16px !important;
    line-height: 1.9 !important;
    color: #444 !important;
}

.principal-img-box img {
    max-width: 400px !important;
    border-radius: 15px !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15) !important;
    transition: 0.3s !important;
}

    .principal-img-box img:hover {
        transform: scale(1.05) !important;
    }
/* MAIN CARD */
.enquiry-card {
    width: 100%;
    max-width: 900px;
    background: #ffffff;
    padding: 45px;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    margin: auto;
}

    /* HOVER EFFECT */
    .enquiry-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    }

    /* HEADING */
    .enquiry-card h3 {
        font-weight: 700;
        margin-bottom: 25px;
        text-align: center;
        color: darkblue;
    }

    /* LABEL */
    .enquiry-card label {
        font-weight: 600;
        margin-bottom: 6px;
        color: #333;
    }

    /* INPUT FIELDS */
    .enquiry-card .form-control {
        border-radius: 10px;
        padding: 12px 14px;
        border: 1px solid #ddd;
        transition: all 0.3s;
        font-size: 14px;
    }

        /* INPUT FOCUS */
        .enquiry-card .form-control:focus {
            border-color: #198754;
            box-shadow: 0 0 8px rgba(25,135,84,0.25);
            outline: none;
        }

    /* SELECT DROPDOWN */
    .enquiry-card select.form-control {
        cursor: pointer;
    }

    /* TEXTAREA */
    .enquiry-card textarea.form-control {
        resize: none;
    }

    /* BUTTON */
    .enquiry-card .btn {
        border-radius: 30px;
        font-weight: 600;
        padding: 12px;
        font-size: 15px;
        transition: 0.3s;
    }

    /* BUTTON PRIMARY */
    .enquiry-card .btn-success {
        background: linear-gradient(darkblue, darkblue, skyblue);
        border: none;
    }

        /* BUTTON HOVER */
        .enquiry-card .btn-success:hover {
            background: linear-gradient(135deg, darkblue, darkblue);
            transform: scale(1.03);
        }

    /* FORM SPACING */
    .enquiry-card .form-group {
        margin-bottom: 18px;
    }

    /* PLACEHOLDER */
    .enquiry-card ::placeholder {
        color: #aaa;
        font-size: 13px;
    }

/* RESPONSIVE */
@media (max-width: 768px) {
    .enquiry-card {
        padding: 25px;
    }
}
/* PAGE WRAPPER (IMPORTANT) */
.enquiry-wrapper {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 15px; /* 🔥 top-bottom space */
    background: linear-gradient(to right, #f8f9fa, #eef7f1);
}

/* FORM CARD */
.enquiry-card {
    width: 100%;
    max-width: 1050px; 
    background: #ffffff;
    padding: 30px; /* 🔥 compact spacing */
    border-radius: 15px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    transition: 0.3s;
}

    /* HOVER */
    .enquiry-card:hover {
        transform: translateY(-5px);
    }
.logo-img {
    height: 80px; 
    width: auto;
}

/* navbar height fix karo */
.navbar {
    height: 65px;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

/* vertical alignment fix */
.navbar-brand {
    display: flex;
    align-items: center;
}
