/* Base Styles */
* {medi
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ********************************************************** */

.close-menu {
			display:none;
		}
form {
            display: flex;
            flex-direction: column;
        }
        label {
            margin-bottom: 8px;
            font-weight: bold;
        }
        input[type="text"], input[type="email"], input[type="tel"] {
            padding: 15px;
			width:95%;
            margin-bottom: 20px;
            border: 1px solid #ccc;
            border-radius: 4px;
            font-size: 16px;
        }
        button {
            padding: 12px;
            background-color: #0284c7;
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 18px;
        }
        button:hover {
            background-color: #005f91;
        }
        .error {
            color: red;
            margin-bottom: 20px;
        }
        .success {
            color: white;
            background: green;
            padding: 10px;
            margin-top: 40px;
            margin-bottom: 40px;
            font-size: 24px;
            font-weight: bold;
        }


        /* Global Styles */

.abril-fatface-regular {
  font-family: "Abril Fatface", serif;
  font-weight: 400;
  font-style: normal;
}
                


        .btn {
            text-transform: uppercase;
  background: #81d2c7;
  background-image: -webkit-linear-gradient(top, #81d2c7, #416788);
  background-image: -moz-linear-gradient(top, #81d2c7, #416788);
  background-image: -ms-linear-gradient(top, #81d2c7, #416788);
  background-image: -o-linear-gradient(top, #81d2c7, #416788);
  background-image: linear-gradient(to bottom, #81d2c7, #416788);
  -webkit-border-radius: 8;
  -moz-border-radius: 8;
  border-radius: 8px;
  color: #ffffff;
  font-size: 14px;
  padding: 10px 20px 10px 20px;
  text-decoration: none;
}

.btn:hover {
  background: #589da3;
  background-image: -webkit-linear-gradient(top, #589da3, #3498db);
  background-image: -moz-linear-gradient(top, #589da3, #3498db);
  background-image: -ms-linear-gradient(top, #589da3, #3498db);
  background-image: -o-linear-gradient(top, #589da3, #3498db);
  background-image: linear-gradient(to bottom, #589da3, #3498db);
  text-decoration: none;
}


        /* Style that first letter! */
        .subhead::first-letter {
            initial-letter: 4;
            padding-right: 5px;
			font-family: "Abril Fatface";
text-align:left !important;
        }

        .shadowblur {
            box-shadow: 0px 0px 10px #000;
            -moz-box-shadow: 0px 0px 10px #000;
            -webkit-box-shadow: 0px 0px 10px #000;
            max-width: 80%;
            margin-left: 10%;
            margin-bottom: 20px;
        }

        .photoshot {
            background: white;
            padding: 10px;
            max-width: 98%;
            margin: auto;
        }

        .menu-icon {
            display: none;
        }


        div-center {margin: auto;}


        /* Burger Menu Styles */
        

        /* General Styles */


        .btn, button { padding: 12px; color: white; background-color: #0284c7; border: none; border-radius: 4px; cursor: pointer; font-size: 18px; }
        .btn:hover, button:hover { background-color: #005f91; }

        
/* Modal Styles with Right-Side Position */
    .modal-overlay {
        display: none;
        position: fixed;
        top: 0;
        right: 0; /* Position on the right side */
        width: 100%; /* Covers the screen */
        height: 100%;
        background: rgba(0, 0, 0, 0.5); /* Add a semi-transparent background */
        z-index: 1000;
    }

    .modal-content {
        position: absolute;
        background: white;
        width: 90%;
        max-width: 600px;
        right: 0; /* Position on the right */
        margin-top: 30px; /* Offset from top */
        margin-right: 30px; /* Offset from right */
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        overflow-y: auto;
        max-height: 80vh;
        cursor: move; /* Show draggable cursor */
    }

    .close-btn {
        position: absolute;
        top: 10px;
        right: 15px;
        font-size: 1.5em;
        cursor: pointer;
        color: red;
    }
   
        /* Sample form styling */
        .modal-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .modal-form label {
            font-weight: bold;
        }

        .modal-form input,
        .modal-form textarea,
        .modal-form button {
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 4px;
            font-size: 16px;
        }

        .modal-form button {
            background-color: #007bff;
            color: white;
            cursor: pointer;
            font-weight: bold;
            border: none;
        }


        form input, form label { display: block; width: 100%; margin: 10px 0; }
        .success-message, .error-message { padding: 10px; border-radius: 8px; text-align: center; font-weight: bold; }
        .success-message { background-color: #28a745; color: white; }
        .error-message { background-color: red; color: white; }
        .cancel-button { background-color: gray; color: white; }

        .contact-form {

                width: 100%;
                max-width: 90%;
                margin: 0 auto;
                /*  top: auto; Override fixed top positioning */
                /*  right: auto;  Override fixed right positioning */
                position: relative; /* Center within overlay */
                padding: 20px;
            background-color: #fff;
            border: 1px solid #ccc;
            border-radius: 5px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }
        .contact-form h2 {
            text-align: center;
            color: #333;
        }
        .contact-form label {
            display: block;
            font-weight: bold;
            margin-top: 15px;
        }
        .contact-form input[type="text"],
        .contact-form input[type="email"],
        .contact-form textarea {
            width: 100%;
            padding: 10px;
            margin-top: 5px;
            border: 1px solid #ccc;
            border-radius: 4px;
            box-sizing: border-box;
        }
        .contact-form textarea {
            resize: vertical;
        }
        .contact-form button {
            display: block;
            width: 100%;
            padding: 10px;
            margin-top: 20px;
            background-color: #28a745;
            color: #fff;
            font-size: 16px;
            font-weight: bold;
            border: none;
            border-radius: 4px;
            cursor: pointer;
        }
        .contact-form button:hover {
            background-color: #589da3;
        }

  /* Responsive styles for smaller screens */
    @media (max-width: 768px) {
        /* Style that first letter! */
    .subhead::first-letter {
      color: inherit;
    font-size: 12;
	font-family: arial;
text-align:left !important;
    }

p {
text-align:left !important;
}
        .modal-content {
            width: 95%;
            right: 2.5%; /* Center on screen */
            top: 5%;
            margin: 30 auto;
        }

        .close-btn {
            font-size: 1.2em;
        }
    }

    @media (max-width: 480px) {
        .modal-content {
            width: 95%;
            top: 5%;
            padding: 15px;
        }

        .close-btn {
            font-size: 1em;
        }
    
            /* Responsive Contact Form */
            #contactus .contact-form {
                padding: 15px;
                max-width: 90%;
            }

            .contact-form h2 {
                font-size: 1.5rem;
                text-align: center;
            }

            .contact-form label {
                font-size: 1rem;
            }

            .contact-form input[type="text"],
            .contact-form input[type="email"],
            .contact-form textarea {
                padding: 8px;
                font-size: 0.9rem;
            }

            .contact-form button {
                padding: 10px;
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .modal-content h1 {
                font-size: 1.2rem;
                text-align: center;
            }

            .contact-form h2 {
                font-size: 1.2rem;
            }

            .close-btn {
                font-size: 4em;
            }

            .contact-form input[type="text"],
            .contact-form input[type="email"],
            .contact-form textarea {
                padding: 6px;
                font-size: 0.8rem;
            }

            .contact-form button {
                padding: 8px;
                font-size: 0.9rem;
            }
        }

/* ***************************************************** */


body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}

p {font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #000;
	text-align:left;
}

p.large-white {font-family: 'Poppins', sans-serif;
    line-height: 1.6;
	font-size: 24px;
	font-weight: bold;
    color: white;
	text-align:center;
}
p.footer {
color:yellow;
}

p.subhead {
color:black;
text-align:left !important;
}

img.roundme {
  border-radius: 5%;
	margin-top:10px;
	magin-bottom:10px;
}

h3 {
align:left;
}

h3.large {
font-size:48px;
color: #0b96a3;
}


 /* Sticky Header */
 /* Navbar */
        .navbar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 20px;
            color: #000;
            background-color: #fff;
            position: sticky;
            top: 0;
            z-index: 1000;
			font-size:16px; 
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.8);
            padding: 10px 0;
        }


        .navbar .logo img {
            height: 100px;
        }

        .navbar .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
        }

       .nav-links {
            display: flex;
            list-style: none;
            gap: 20px;
        }


        .nav-links li a {
            color: #000;
            text-decoration: none;
            font-weight: 900;
        }

        .nav-links li a:hover {
            color: #005f91;
            font-weight: 900;
		}

        .offer-btn {
            background-color: #f1580c;
            color: #fff;
            padding: 10px 15px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
        }



.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.better { 
    padding-top:800px;
}


.offer-btn {
    background-color: #f04e23;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-decoration: none;
}

/* Hero Section */ 
.hero {
    background: url('../images/hero-bg-2.jpg') no-repeat center center/cover;
    color: #fff;
    padding: 300px 0;
    text-align: center;  
}
.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.hero .btn {
    background-color: #f04e23;
    padding: 0.8rem 1.5rem;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
}

/* Section Styles */
section {
    background-color: white;
    padding: 3rem 0;
}
.about-section, .types-section, .treatment-section {
    background-color: white;
    padding: 3rem 0;
}
.about-cards, .types-list, .treatment-grid {
    display: flex;
    gap: 1.5rem;
}
.card, .service, .project, .about {
    background: #fff;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: left;
	width: 50%;
	color:#0b96a3;
}
.project img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

  /* Back to Top Button */
        #backToTopBtn {
            display: none;
            position: fixed;
            bottom: 30px;
            right: 30px;
            padding: 15px 20px;
            font-size: 1em;
            background-color: #f1580c;
            color: white;
			font-weight:bold;
			text-transform: uppercase;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            transition: background-color 0.3s ease;
            z-index: 1000;
        }

        #backToTopBtn:hover {
            background-color: #005f91;
        }

 /* Footer */
        footer {
            background-color: #333;
            color: #fff;
            padding: 20px 0;
            width: 100%;
        }

        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .footer-links {
            margin-top: 10px;
            font-size: 0.9em;
        }

        .footer-links a {
            color: #fff;
            margin: 0 10px;
            text-decoration: none;
        }

        .footer-links a:hover {
            text-decoration: underline;
        }



/* Grid Container */
.row {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 auto;
}

/* Column Classes */
.col-1 { width: 8.33%; }
.col-2 { width: 16.66%; }
.col-3 { width: 25%; }
.col-4 { width: 33.33%; }
.col-5 { width: 41.66%; }
.col-6 { width: 50%; }
.col-7 { width: 58.33%; }
.col-8 { width: 66.66%; }
.col-9 { width: 75%; }
.col-10 { width: 83.33%; }
.col-11 { width: 91.66%; }
.col-12 { width: 100%; }

/* Gutter (Spacing) */
[class*='col-'] {
    background: transparent;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px 6px rgba(0, 0, 0, 0.1);
    text-align: left;
}


 /* Content styling for example */
        .box {
            padding: 20px;
            text-align: center;
        }
        .box img {
            width: 100%;
            height: auto;
            margin-bottom: 15px;
        }

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .col-lg-1 { width: 8.33%; }
    .col-lg-2 { width: 16.66%; }
    .col-lg-3 { width: 25%; }
    .col-lg-4 { width: 33.33%; }
    .col-lg-5 { width: 41.66%; }
    .col-lg-6 { width: 50%; }
    .col-lg-7 { width: 58.33%; }
    .col-lg-8 { width: 66.66%; }
    .col-lg-9 { width: 75%; }
    .col-lg-10 { width: 83.33%; }
    .col-lg-11 { width: 91.66%; }
    .col-lg-12 { width: 100%; }
h3.large {
font-size:24px;
}
}

@media (max-width: 992px) {
    .col-md-1 { width: 8.33%; }
    .col-md-2 { width: 16.66%; }
    .col-md-3 { width: 25%; }
    .col-md-4 { width: 33.33%; }
    .col-md-5 { width: 41.66%; }
    .col-md-6 { width: 50%; }
    .col-md-7 { width: 58.33%; }
    .col-md-8 { width: 66.66%; }
    .col-md-9 { width: 75%; }
    .col-md-10 { width: 83.33%; }
    .col-md-11 { width: 91.66%; }
    .col-md-12 { width: 100%; }

            /* Remove sticky header on smaller screens */
            .navbar {
                position: relative;
            }

            .logo img {
                height: 50px;
            }

            /* Hide nav links and show burger menu */
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 60px;
                right: 20px;
				color: #0b96a3
                background-color: #fff !important;
                width: 200px;
                border-radius: 8px;
                box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
            }

            .nav-links.show {
                display: flex;
				color: pink !important;
				font-weight:bold;
				background: #45c0cc;
				text-align:center;
				padding-top:10px;
			padding-bottom:10px;
            }

       .nav-links li a {
            color: white;
            text-decoration: none;
            font-weight: 900;
        }

/* Close button in the menu */
.close-menu {
    align-self: flex-end;
    padding: 5px 10px;
    color: white;
    font-weight: bold;
    cursor: pointer;
	font-size:18px;
}


            /* Adjust burger menu position */
            .burger-menu {
                display: block;
                position: fixed;
                top: 10px;
                left: 10px;
				background: #ffffff;
				color:red !important;
				font-weight:bold;
				padding:3px;
            }

            .offer-btn {
				display:none;	
            }
}

@media (max-width: 768px) {
    .col-sm-1 { width: 8.33%; }
    .col-sm-2 { width: 16.66%; }
    .col-sm-3 { width: 25%; }
    .col-sm-4 { width: 33.33%; }
    .col-sm-5 { width: 41.66%; }
    .col-sm-6 { width: 50%; }
    .col-sm-7 { width: 58.33%; }
    .col-sm-8 { width: 66.66%; }
    .col-sm-9 { width: 75%; }
    .col-sm-10 { width: 83.33%; }
    .col-sm-11 { width: 91.66%; }
    .col-sm-12 { width: 100%; }
    [class*='col-'] { width: 100%; }
            .navbar .container, .footer-content {
                flex-direction: column;
                text-align: center;
            }
	.hero {
    background: #0c8c99 !important;
    color: #fff;
    padding: 300px 0;
    text-align: center;  
}
}

@media (max-width: 576px) {
    [class*='col-'] {
        width: 100%;
    }
}

  /* Responsive Design */
        @media (max-width: 768px) {
            .navbar .logo img {
                height: 100px;
            }

            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                position: absolute;
                top: 70px;
                background-color: #333;
            }

            .nav-links.show {
                display: flex;
            }

            .offer-btn {
                display: block;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.2rem;
            }

            .about-section, .types-section, .treatment-section, .footer-content {
                padding: 10px;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.8rem;
            }

            .navbar {
                flex-direction: column;
            }

            .navbar .logo img {
                height: 80px;
            }

            .offer-btn {
                display: block;
                margin: 10px 0;
            }

            .footer-links {
                flex-direction: column;
                gap: 5px;
            }
        }


        /* Grid System */
        .row {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
			padding-bottom:20px;
        }

        /* Define column sizes for each element */
        .col-1 { flex: 0 0 calc(8.33% - 20px); }
        .col-2 { flex: 0 0 calc(16.66% - 20px); }
        .col-3 { flex: 0 0 calc(25% - 20px); }
        .col-4 { flex: 0 0 calc(33.33% - 20px); }
        .col-5 { flex: 0 0 calc(41.66% - 20px); }
        .col-6 { flex: 0 0 calc(50% - 20px); }
        .col-7 { flex: 0 0 calc(58.33% - 20px); }
        .col-8 { flex: 0 0 calc(66.66% - 20px); }
        .col-9 { flex: 0 0 calc(75% - 20px); }
        .col-10 { flex: 0 0 calc(83.33% - 20px); }
        .col-11 { flex: 0 0 calc(91.66% - 20px); }
        .col-12 { flex: 0 0 calc(100% - 20px); }

        /* Column styling */
        .column {
            background-color: #f3f3f3;
            border: 1px solid #ddd;
            padding: 20px;
            text-align: center;
            font-size: 16px;
        }

        /* Responsive styles */
        @media (max-width: 992px) {
            .column {
                background-color: gold;
            }

            /* Stack all columns on smaller screens */
            .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12 {
                flex: 0 0 100%;
            }
        }