/* styles.css */

{ margin: 0; padding: 0; box-sizing: border-box; font-family: Arial, sans-serif; }


body { background-color: #f5f5f5; color: #333; line-height: 1.6; }

header.hero { background: url('realmedclickbg2.jpg') center/cover no-repeat; height: 100vh; display: flex; justify-content: center; align-items: center; text-align: center; color: black; }

.hero-nav{    position: absolute; top: 0; width: 100%; background: #cccfcc85;}
.logo{ text-align: left;}
.logoimg { float: left;  margin-left: 70px;   border-radius: 50%; }
/* Custom Row - Flexbox Container */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: 0px;
    margin-left: 0px;
}

/* Custom Column for Medium Screens (col-md) */
[class^="col-md-"] {
    padding-right: 15px;
    padding-left: 15px;
    flex-grow: 1;
    max-width: 100%;
}

/* Responsive Grid for Different Column Sizes */
.col-md-1  { flex: 0 0 8.33%; max-width: 8.33%; }
.col-md-2  { flex: 0 0 16.66%; max-width: 16.66%; }
.col-md-3  { flex: 0 0 25%; max-width: 25%; }
.col-md-4  { flex: 0 0 33.33%; max-width: 33.33%; }
.col-md-5  { flex: 0 0 41.66%; max-width: 41.66%; }
.col-md-6  { flex: 0 0 50%; max-width: 50%; }
.col-md-7  { flex: 0 0 58.33%; max-width: 58.33%; }
.col-md-8  { flex: 0 0 66.66%; max-width: 66.66%; }
.col-md-9  { flex: 0 0 75%; max-width: 75%; }
.col-md-10 { flex: 0 0 83.33%; max-width: 83.33%; }
.col-md-11 { flex: 0 0 91.66%; max-width: 91.66%; }
.col-md-12 { flex: 0 0 100%; max-width: 100%; }

/* Gutter Spacing Between Columns */
.row.gutter-sm  { margin-right: -10px; margin-left: -10px; }
.row.gutter-sm > [class^="col-md-"] { padding-right: 10px; padding-left: 10px; }

.row.gutter-lg  { margin-right: -20px; margin-left: -20px; }
.row.gutter-lg > [class^="col-md-"] { padding-right: 20px; padding-left: 20px; }

/* Responsive Adjustments */
@media (max-width: 768px) {
    [class^="col-md-"] {
        flex: 0 0 100%;
        max-width: 100%;
    }
}
a{
    color: black;
    cursor: pointer;
    text-decoration: none;
}
a :hover{
	color:#105e76;
	text-decoration: underline;
}
.rmcnavul {display: flex !important;list-style: none !important;font-size: 1.5em !important;}
.rmcnavli {padding-left: 20px !important;  padding-right: 20px !important; min-width: fit-content;}
.hero-content h1 { font-size: 3rem; margin-bottom: 20px; }

.hero-content p { font-size: 1.2rem; margin-bottom: 20px; }

.cta-btn { display: inline-block; background: #ff6600; color: white; padding: 12px 20px; text-decoration: none; border-radius: 5px; transition: background 0.3s; font-size: 1.2rem; }

.cta-btn:hover { background: #e65c00; }

.products { padding: 60px 20px; text-align: center; }

.products h2 { font-size: 2rem; margin-bottom: 20px; }

.product-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; }

.product-item { background: white; padding: 20px; border-radius: 10px; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); text-align: center; width: 300px; }

.product-item img { width: 150px; height: auto; border-radius: 5px; margin-bottom: 0px; }

.buy-btn { background: #008000; color: white; padding: 10px 15px; border: none; border-radius: 5px; cursor: pointer; transition: background 0.3s; font-size: 1rem; }

.buy-btn:hover { background: #006400; }

.insurance { background: #f9f9f9; padding: 60px 20px; text-align: center; background-image: url(images/rmcbg2.jpg);  background-size: cover;  background-position: bottom; }

.insurance form { max-width: 400px; margin: auto; background: #ffffffb3; padding: 30px; border-radius: 10px;     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5); }

form input, form button { width: 90%; padding: 10px; margin-top: 10px; border: 1px solid #ccc; border-radius: 5px; font-size: 1rem; }

.testimonial { padding: 60px 20px; background: #fff; text-align: center; }

.testimonial-container p { font-size: 1.2rem; font-style: italic; margin-bottom: 10px; }

.testimonial-container h4 { font-size: 1.1rem; color: #555; }

footer { background: #333; color: white; text-align: center; padding: 20px; margin-top: 20px; }

.footer-links { list-style: none; padding: 0; margin-top: 10px; }

.footer-links li { display: inline; margin: 0 10px; }

.footer-links a { color: white; text-decoration: none; transition: color 0.3s; }

.footer-links a:hover { color: #ff6600; }

@media (max-width: 768px) { .product-grid { flex-direction: column; align-items: center; } .hero-content h1 { font-size: 2.5rem; } .hero-content p { font-size: 1rem; } .cta-btn { font-size: 1rem; } }