body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* Navigation Bar */
.navbar {
    background-color: #333;
    padding: 10px 20px 20px 10px;
    position:static;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Styling */
.navbar img {
    max-width: 60px;
    height: auto;
}

/* Navbar Links */
.navbar .nav-links {
    display: flex;
}

.navbar  {
    color: white;
    padding: 10px 0px 10px 0px;
    text-decoration: none;
    font-size: 16px;
}
.nav-links a {
    color: #fff;
    font-size: 16px;
    display: flex;
    justify-content: center; /* Center items horizontally */
    align-items: center; /* Center items vertically */
    background-color: #333; /* Background color */
    padding: 15px; /* Padding for spacing */
    text-decoration: none;

}
.navbar .nav-links a:hover {
    background-color: #ff9000;
    justify-content: center; /* Center items horizontally */
    align-items: center; /* Center items vertically */
    padding: 15px;
    border-radius: 8px;
    text-decoration: none;
}

/* Hamburger Menu Icon */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 4px 0;
}

/* Ensure content is not overlapped by the navbar */
.content {
    margin-top: 0px; /* Offset for the fixed navbar height */
}

/* Header Section */
.header {
    height: 100vh;
    background: url('../images/bgcny.jpg') fixed no-repeat; /* Placeholder for background image */
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    justify-content: space-between; /* Left content and right form */
    align-items: center;
    padding: 0 40px 80px 40px;
}

/* Overlay for Header */
.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6); /* Dark overlay */
}

/* Header Left Content */
.header-content {
    z-index: 2;
    text-align: left;
    color: white;
    max-width: 50%;
    /* padding-bottom: 300px; */
    top: 20%;              /* Adjust to push content toward the top */
    left: 40px;            /* Align from the left */
}
@media screen and (min-width: 1024px) and (max-width: 1360px) {
    .header-content {
        z-index: 2;
        text-align: left;
        color: white;
        max-width: 50%;
        padding-top: 300px;
    }
  }
.header-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.header-content p {
    font-size: 18px;
    margin-bottom: 40px;
}

.header-content .button {
    background-color: #ff9000;
    /* padding: 15px 30px; */
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
}

.header-content .wbutton {
    background-color: #40c351;
    display:contents;
    /* padding: 15px 30px; */
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
}

/* Header Right - Appointment Form */
.form-container {
    width: 100%;
    max-width: 100%; /* Ensures it takes the full width */
    height: 100%;
    max-height: 100%; /* Ensures it takes the full width */
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    max-width: 400px;
    z-index: 2;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 70px;
}

.form-container h2 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="time"],
select {
    width: 100%;
    padding: 10px;
    margin-bottom: 5px;
    border-radius: 4px;
    border: 1px solid #ddd;
    font-size: 16px;
}

.button-primary {
    width: 100%;
    padding: 12px;
    background-color: #4CAF50;
    color: white;
    border: none;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    margin-top: 10px;
}

.button-primary:hover {
    background-color: #45a049;
}

/* Sections for the rest of the content */
.section {
    padding: 60px 20px;
    text-align: center;
}

.section h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

.section p {
    font-size: 18px;
    margin-bottom: 20px;
}

.service-box {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.service-box h4 {
    font-size: 22px;
    margin-bottom: 10px;
}

/* Footer Section */
.footer {
    background-color: #333;
    color: white;
    padding: 20px;
    text-align: center;
}
/* Responsive Design */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        text-align: center;
        padding: 0 20px;
    }

    .header-content {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .form-container {
        width: 100%;
        max-width: 350px;
    }

    .row input[type="date"],
    .row input[type="time"] {
        width: 100%; /* Stack fields vertically on small screens */
    }

    .content {
        margin-top: 0px; /* Increase offset for smaller screens */
    }

    /* Navbar Responsive Design */
    .navbar .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 20px;
        background-color: #333;
        width: 100%;
    }

    .navbar .nav-links a {
        padding: 15px;
        text-align: center;
        border-bottom: 1px solid #444;
    }

    .hamburger {
        display: flex;
        padding: 10px 40px 60px 10px;
    }

    .navbar.active .nav-links {
        display: flex;
    }
}



.features_section{
background: #ebeaea;
padding: 30px 0px;
}
.feature_item{
padding: 0px;
}
.feature_icon{
height: 100%;
position: absolute;
display: block;
padding-bottom: 100px;
color: #000;
}
.feature_text_div{
padding-left: 85px;
}

.header_social_icons{
float: right;
text-align: right;
}

.feature_iem_title{
color: #000;
font-size: 26px;
line-height: 28px;
font-family: 'Open Sans', sans-serif;
font-weight: 600;
}
.feature_item_text{
color: #000;
font-size: 14px;
line-height: 22px;
font-family: 'Open Sans', sans-serif;
}


.info_section{
padding: 30px 0px;
}
.info_div{
text-align: center;
}
.info_title{
color: #000;
font-size: 32px;
line-height: 45px;
font-family: 'Open Sans', sans-serif;
text-align: center;
font-weight: 600;
}
.info_tagline{
color: #000; 
text-align: center;
font-size:20px;
line-height: 32px;
font-family: 'Open Sans', sans-serif;
max-width: 660px;
margin-right: auto;
margin-left: auto;
}

.info_boxes{
padding-top: 30px;

}
.info_box_inner{
margin: 10px;
background: #eee;
position: relative;
}
.info_img{
width: 100%;
height: 245px;
padding-bottom: 0px;
}
.price_div{
position: absolute;
top: 15px;
right: 15px;
background: #ff9000;
padding: 5px 15px;
border-radius: 3px;
color: #fff;
font-family: 'Open Sans', sans-serif;
font-weight: 700;
}
.price_div_text{
color: #fff;
font-size: 16px;
font-family: 'Open Sans', sans-serif;
}
.info_box_text_div{
padding: 0px 10px;

}
.info_box_title{
font-family: 'Josefin Slab', serif;
font-size: 28px;
line-height: 28px;
color: #000;
position: relative;
top: 0px;
}
.info_box_inner_text{
color: #808080;
padding-bottom: 10px;
}
.points_section{
background: #f0f0f0;
padding: 50px 0px;
}
.points_title{
font-size:32px;
color:#000;
line-height: 42px;
font-family: 'Open Sans', sans-serif;
font-weight: 600;
}
.points_div{
padding: 20px 0px;
position: relative;
}
.single_point_div{
padding: 20px 0px;
}
.point_circle{
border: 1px solid #74ff00;
border-radius: 100%;
width: 40px;
height: 40px;
text-align: center;
line-height: 40px;
position: absolute;
}
.point_ico{
margin-left: auto;
line-height: 40px;
margin-top: auto;
margin-bottom: auto;
margin-right: auto;
color: #74ff00;
}
.single_point_text{
margin-left: 60px;
font-size:18px;
color:#000;
line-height: 42px;
font-family: 'Open Sans', sans-serif;
}

.proto_div{
text-align: center;
}
#proto_img{
border: 1px solid #cdcdcd;
width: 90%;
height: auto;
}

.card-container {
    display: flex;
    /* flex-wrap: wrap; */
    gap: 20px; /* Spacing between cards */
    justify-content: center;
}

       /* Card box styling */
       .card {
        border: 1px solid #ddd;
        border-radius: 8px;
        padding: 20px;
        margin-bottom: 20px; /* Space between card boxes */
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        display: flex;
        flex-direction: column;
        height: 100%; /* Ensures the card takes up full available height */
    }


.card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.card img {
    max-width: 100%;
    border-radius: 8px;
}

.card h3 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.card p {
    font-size: 2rem;
    color: #555;
    margin-bottom: 20px;
}

.card-content {
    flex-grow: 1; /* Allows content to grow and take up available space */
}

.card-footer {
    margin-top: auto; /* Pushes the footer to the bottom */
    padding-top: 10px;
    border-top: 1px solid #ddd; /* Top border for separation */
    color: #666;
    text-align: right; /* Align text to the right */
}

.card button {
    display: block;
    width: 100%; /* Full width button */
    padding: 10px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px; /* Space above the button */
}

.card button:hover {
    background-color: #0056b3;
}
.flash-message {
    padding: 10px;
    margin: 10px 0;
    border-radius: 4px;
    font-weight: bold;
}

.flash-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.flash-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}







.info_section{
    padding: 30px 0px;
}
.info_div{
    text-align: center;
}
.info_title{
    color: #000;
    font-size: 32px;
    line-height: 45px;
    font-family: 'Open Sans', sans-serif;
    text-align: center;
    font-weight: 600;
}
.info_tagline{
    color: #000;
    text-align: center;
    font-size:20px;
    line-height: 32px;
    font-family: 'Open Sans', sans-serif;
    max-width: 660px;
    margin-right: auto;
    margin-left: auto;
}

.info_boxes{
    padding-top: 30px;
    
}
.info_box_inner{
    margin: 10px;
    background: #eee;
    position: relative;
}
.info_img{
    width: 100%;
    height: 245px;
    padding-bottom: 0px;
}
.price_div{
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff9000;
    padding: 5px 15px;
    border-radius: 3px;
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
}
.price_div_text{
    color: #fff;
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
}
.info_box_text_div{
    padding: 0px 10px;

}
.info_box_title{
    font-family: 'Josefin Slab', serif;
    font-size: 28px;
    line-height: 28px;
    color: #000;
    position: relative;
    top: 0px;
}
.info_box_inner_text{
    color: #808080;
    padding-bottom: 10px;
}


.connect_text{
    color: #a9a9a9;
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 100;
    line-height: 26px;
}
.right_title{
    color: #d3d3d3;
    font-size: 22px;
    line-height: 35px;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
}



.left_colored_bar{
    width: 70px;
    height: 5px;
    background: #ff9000;
    float: left;
}
.colored_bar{
    width: 95px;
    height: 5px;
    background: #ff9000;
    margin-right: auto;
    margin-left: auto;
}

.header_tagline{
    padding-left: 30px;	
}
.header_tagline2{
    padding-left: 5px;
}

.colored{
    color: #74ff00;
}
.header_tagline_gray{
    font-style:italic;
    color: #777;
    font-size: 13px;
}
.para_background{
    background: url(../images/bg.png) fixed no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}


.clients_container{
    padding: 40px 0px;
}
.clients_left{
    padding: 10px;
}
.clients_title{
    font-size:18px;
    color: #fff;
    line-height: 32px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
}
.clients_left_text{
    font-size:16px;
    color: #808080;
    line-height: 26px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
}
.note_star{
    color: #d3d3d3;
}
.clients_note{
    font-size:13px;
    color: #696969;
    line-height: 22px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-style:italic;
}
.client_div{
    text-align: center;
    min-height: 200px;
}
.client_img{
    padding-top: 60px;
}

/* .appointment_form
{
margin:20px 30px 20px 20px;
} */

.about {
    padding: 50px 0;
}
/* Video cover styling */
.video-cover {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: #000;
    overflow: hidden;
    cursor: pointer;
}
.video-cover .cover-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.video-cover .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 50px;
    color: white;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    padding: 10px 15px;
    z-index: 2;
}
.video-cover iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none; /* Hidden by default */
}

.clients_container{
    padding: 40px 0px;
}
.clients_left{
    padding: 10px;
}
.clients_title{
    font-size:18px;
    color: #fff;
    line-height: 32px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
}
.clients_left_text{
    font-size:16px;
    color: #808080;
    line-height: 26px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
}
.note_star{
    color: #d3d3d3;
}
.clients_note{
    font-size:13px;
    color: #696969;
    line-height: 22px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-style:italic;
}
.client_div{
    text-align: center;
    min-height: 200px;
}
.client_img{
    padding-top: 60px;
}

.appointment {
    padding: 50px 0;
    background-color: #f9f9f9;
    text-align: center;
}
.appointment h2 {
    font-size: 2em;
    margin-bottom: 20px;
}
.appointment p {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 30px;
}
form label {
    font-size: 1em;
    color: #333;
    margin-bottom: 5px;
    display: block;
    text-align: left;
}
form input[type="text"],
form input[type="email"],
form input[type="tel"],
form input[type="date"],
form input[type="time"],
form select,
form textarea {
    border: 1px solid #ccc;
    padding: 10px;
    font-size: 1em;
    border-radius: 5px;
    margin-bottom: 20px;
    box-sizing: border-box;
}
.u-full-width {
    width: 100%;
}
.btn {
    background: #4CAF50;
    color: white;
    padding: 12px 20px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 1.1em;
}
.btn:hover {
    background: #45a049;
}
@media only screen and (max-width: 768px) {
    .appointment h2 {
        font-size: 1.8em;
    }
    .appointment p {
        font-size: 1em;
        margin-bottom: 20px;
    }

    .form-container {
        width: 100%;
        max-width: 100%; /* Ensures it takes the full width */
        height: 100%; 
        max-height: 100%; /* Ensures it takes the full width */
        background-color: white;
        padding: 30px;
        border-radius: 8px;
        max-width: 400px;
        z-index: 2;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

}

      /* Portfolio section styling */
      .portfolio-section {
        margin: 40px 0;
        overflow-x: auto; /* Allows horizontal scrolling */
        white-space: nowrap; /* Ensures items stay in a single row */
    }

    .portfolio-gallery {
        display: inline-block;
        vertical-align: top;
    }

    .portfolio-item {
        display: inline-block;
        margin-right: 15px;
        width: 300px; /* Adjust width as needed */
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s;
    }

    .portfolio-item img {
        width: 100%;
        height: auto;
        border-radius: 8px;
    }

    .portfolio-item:hover {
        transform: scale(1.05); /* Zoom effect on hover */
    }

        .item-details h4 {
            margin: 0;
            font-size: 1.2em;
        }

        .item-details p {
            font-size: 0.9em;
        }

        ul.check-list {
            list-style: none; /* Remove default markers */
            padding-left: 0;
        }

        ul.check-list li {
            position: relative;
            padding-left: 25px; /* Space for the icon */
            margin-bottom: 10px;
            font-size: 16px;
            color: #fff; /* Text color */
        }

        ul.check-list li::before {
            content: '\2713'; /* Unicode for check mark */
            position: absolute;
            left: 0;
            top: 0;
            color: #28a745; /* Green color for check mark */
            font-size: 18px;
            font-weight: bold;
        }

           /* Language selector styling */
           .language-selector {
            margin-left: 20px;
            color: #fff;
            cursor: pointer;
        }
        hr {
            border: 0;
            height: 1px;
            background: #ddd;
            margin: 40px 0; /* Adjust space above and below the line */
        }

        .contact-section {
            padding: 40px 20px;
            text-align: center;
            background-color: #ffffff;
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            max-width: 600px;
            margin: 40px auto;
          }
          .contact-section h3 {
            font-size: 2rem;
            margin-bottom: 15px;
          }
          .contact-section p {
            font-size: 1rem;
            color: #666;
            margin-bottom: 20px;
          }
          .contact-section .btn-whatsapp {
            background-color: #25d366;
            color: white;
            border: none;
            padding: 15px 20px;
            font-size: 1rem;
            border-radius: 5px;
            text-transform: uppercase;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: background-color 0.3s;
          }
          .contact-section .btn-whatsapp:hover {
            background-color: #1da851;
          }
          .contact-info {
            margin-top: 20px;
            font-size: 0.9rem;
            color: #333;
          }

          .about-section {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 20px;
            background-color: #ffffff;
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            padding: 20px;
            max-width: 900px;
            margin: 20px auto;
          }
          .video-container {
            flex: 1 1 50%;
            max-width: 100%;
            text-align: center;
          }
          .video-container iframe {
            width: 100%;
            height: 300px;
            border-radius: 10px;
            border: none;
          }
          .description-container {
            flex: 1 1 50%;
            max-width: 100%;
          }
          .description-container h3 {
            font-size: 2rem;
            margin-bottom: 15px;
          }
          .description-container p {
            font-size: 1rem;
            color: #666;
            line-height: 1.6;
          }
          @media (max-width: 768px) {
            .about-section {
              flex-direction: column;
            }
            .video-container iframe {
              height: 200px;
            }
          }

          .whatsapp-btn {
            display: inline-flex;
            align-items: center;
            padding: 10px 20px;
            font-size: 2rem;
            font-weight: bold;
            color: white;
            background: #25D366;
            border: none;
            border-radius: 30px;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s ease;
          }
      
          .whatsapp-btn img {
            width: 20px;
            height: 20px;
            margin-right: 10px;
          }
      
          .whatsapp-btn:hover {
            background: #20b858;
            color:#fff;
            transform: scale(1.1);
          }
      
          @media (max-width: 768px) {
            .whatsapp-btn {
              padding: 8px 15px;
              font-size: 0.9rem;
            }
      
            .whatsapp-btn img {
              width: 18px;
              height: 18px;
            }
          }