body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    overflow-x: hidden;
}

/* Styles for the navbar */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    height: 10vh;
    padding: 0 20px;
    background-color: #d8c6c2;
    transition: all 0.3s ease;
}

.logo {
    height: 60px;
    width: auto;
    transition: all 0.3s ease;
}

.nav-links {
    position: absolute;
    bottom: 14px;
    right: 30px;
    display: flex end;
    gap: 15px;
}

.nav-links a {
    color: rgb(36, 35, 35);
    text-decoration: none;
    padding: 14px 20px;
    transition: color 0.3s, transform 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: red;
    transform: scale(1.1);
}

.nav-links a::before {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: 8px;
    left: 0;
    background-color: red;
    transition: width 0.3s;
}

.nav-links a:hover::before {
    width: 100%;
}

.nav-links a.active::before {
    width: 100%;
}

.nav-links a.active {
    color: red;
    transform: scale(1.1);
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: calc(100% + 12px); /* Adjust to position below the dropdown toggle */
    left: 0;
    background-color: #d8c6c2;
    min-width: 230px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    flex-direction: column;
    font-size: small;
    font-family: Arial, Helvetica, sans-serif;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
    display: flex;
}

.social-icons {
    position: absolute;
    top: 15px;
    right: 50px;
    display: flex;
    gap: 10px;
}

.social-icons i {
    color: rgb(15, 14, 14);
    font-size: 18px;
    cursor: pointer;
    transition: color 0.3s;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger i {
    font-size: 24px;
}

/* Media Queries */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 10vh;
        left: 0;
        width: 100%;
        height: 50vh;
        background-color: #d8c6c2;
        flex-direction: column;
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
        z-index: 999;
    }

    .nav-links.show {
        transform: translateX(0);
    }

    .nav-links a {
        padding: 8px;
        font-size: 15px;
    }

    .dropdown-content {
        position: relative;

    }

    .dropdown-content {
        position: absolute;
        top: 130%;
        min-width: 250px;
        min-height: 700%;
        font-size: xx-small;
        
        

    }

    .social-icons {
        position: absolute;
        top: 29px;
        right: 50%;
        transform: translateX(50%);
    }

    .hamburger {
        display: block;
    }
}





/* General Styles */
img {
    max-width: 100%;
    height: auto;
}

h1, h2, h3, h4, h5, h6 {
    font-size: 2em;
    font-weight: bold;
    margin: 10px 0;
}

p {
    font-size: 1em;
    line-height: 1.5;
    margin: 10px 0;
}

table {
    width: 100%;
    border-collapse: collapse;
}

table, th, td {
    border: 1px solid black;
    padding: 8px;
    text-align: left;
}

th {
    background-color: #f2f2f2;
}

.image11 img {
    width: 100%;
}

.myForm {
    margin-left: 10%;
    margin-bottom: 10%;
    margin-top: 6%;
    width: 300px;
    max-width: 100%;
    padding: 33px;
    border: 2px solid #5a5959;
    border-radius: 35px;
}

.heading h1 {
    position: absolute;
    top: 33%;
    margin-left: 11%;
}

.myForm h1 {
    margin-top: -1rem;
    margin-left: 0rem;
    font-size: 1.5em;
    color: #0e0e0e;
}

.box {
    padding: 7px;
}

.box p {
    padding-bottom: 10px;
}

.box p:first-of-type {
    margin-top: 0;
}

.box p:last-of-type {
    margin-bottom: 0;
}

input[type="checkbox"] {
    display: none;
}

label {
    cursor: pointer;
    display: flex;
    align-items: center;
}

input[type="checkbox"] + label span {
    display: inline-block;
    width: 19px;
    height: 19px;
    margin-right: 10px;
    background: #fff;
    border: 1px solid #0d0d0d;
    border-radius: 5px;
    cursor: pointer;
    position: relative;
    box-sizing: border-box;
}

input[type="checkbox"]:checked + label span {
    background: red;
    border: 1px solid black;
}

input[type="checkbox"]:checked + label span::after {
    content: '\2713'; /* Unicode for check mark */
    color: white;
    font-size: 16px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.imagep img {
    position: absolute;
    top: 44%;
    left: 45%;
    border-radius: 35px;
}

.imagep h1 {
    position: absolute;
    top: 89%;
    left: 46%;
}

.imagep p {
    position: absolute;
    top: 96%;
    left: 46%;
}

.specification {
    margin-left: 46%;
    margin-bottom: 10%;
}

.specification h2 {
    margin-left: 0%;
}

table {
    height: 70%;
    border: 2px solid #000; /* Increased border width and set color to black */
    border-radius: 35px;
    overflow: hidden; /* Ensure corners are rounded */
}

th, td {
    border: 2px solid #000; /* Increased border width and set color to black */
    padding-top: 10px;
    padding-bottom: 20px;
    padding-left: 30px;
    padding-right: 40px;
}

/* Specific border-radius for table cells to create a smoother look */
table tr:first-child td:first-child {
    border-top-left-radius: 35px;
}
table tr:first-child td:last-child {
    border-top-right-radius: 35px;
}
table tr:last-child td:first-child {
    border-bottom-left-radius: 35px;
}
table tr:last-child td:last-child {
    border-bottom-right-radius: 35px;
}

/* Media Queries for Responsive Design */
@media (max-width: 768px) {
    .heading h1 {
        position: static;
        text-align: center;
        margin-top: 20px;
        margin-left: 0;
    }

    .myForm {
        margin-left: 0;
        width: 100%;
    }

    .imagep img {
        position: static;
        width: 60%;
        margin: 20px auto;
    }

    .imagep h1, .imagep p {
        position: static;
        margin: 10px 0;
        text-align: center;
    }

    .specification {
        position: static;
        width: 100%;
        margin: 10px auto;
    }

    .specification h2 {
        text-align: center;
    }

    table {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .heading h1 {
        position: static;
        text-align: center;
        margin-top: 20px;
        margin-left: 0;
    }

    .myForm {
        margin-left: 0;
        width: 100%;
        padding: 20px;
    }

    .imagep img {
        position: static;
        width: 60%;
        margin: 20px auto;
    }

    .imagep h1, .imagep p {
        position: static;
        margin: 10px 0;
        text-align: center;
    }

    .specification {
        position: static;
        width: 100%;
        margin: 50px auto;
    }

    .specification h2 {
        text-align: center;
    }

    table {
        width: 100%;
    }
}


/* General Footer Styling */
.footer {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background-color: #333;
    color: white;
}

.footer-column {
    flex: 1;
    margin: 0 40px;
}

.footer-column img {
    width: 160px;
    margin: 10px;
}

.footer-column a {
    display: block;
    color: white;
    text-decoration: none;
    margin: 8px 0;
    margin-top: 20px;
    margin-left: 40px;
    transition: color 0.3s; /* Add transition effect */
}

.footer-column a:hover {
    color: red; /* Change color on hover */
}

.footer-column input {
    padding: 8px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.footer-column button {
    padding: 10px;
    background-color: red;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 45px;
    transition: background-color 0.3s; /* Add transition effect */
}

.footer-column button:hover {
    background-color: darkred; /* Change color on hover */
}

.social-icons1 {
    display: flex;
    justify-content: flex-end; /* Align icons to the right */
    position: relative; /* Ensure proper positioning */
    right: 6%;
}

.social-icons1 i {
    font-size: 20px;
    cursor: pointer;
    margin: 0 2px; /* Adjusted margin between icons */
}

/* Media Queries for Responsive Design */
@media screen and (max-width: 768px) {
    .footer {
        flex-direction: column; /* Stack columns vertically */
        align-items: center; /* Center align items */
        text-align: center; /* Center align text */
    }

    .footer-column {
        flex: 1 0 auto;
        margin: 10px 0;
        text-align: center;
    }

    .footer-column img {
        max-width: 120px; /* Adjust logo size for smaller screens */
    }

    .social-icons1 {
        justify-content: center; /* Center align social icons */
        margin-top: 20px;
    }

    .footer-column a {
        display: inline-block; /* Display links inline */
        margin: 5px 10px; /* Adjust margin for links */
        font-size: 12px; /* Adjust font size for smaller screens */
    }

    .footer-column p,
    .footer-column button {
        width: 100%; /* Make paragraphs and buttons full width */
        font-size: 14px; /* Adjust font size for smaller screens */
    }

    .footer-column input[type="email"] {
        width: 100%; /* Make input full width */
        margin-bottom: 10px; /* Adjust margin for input */
    }

    .footer-column button {
        height: 30px; /* Adjusted height for button on smaller screens */
        width: auto; /* Allow button width to adjust naturally */
    }
}