*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}
:root {
    --primary-color: #e7722d;
    --secondary-color: #b95bd6;
    --text-color: #333333;
    --bg-color: #fdf8f4;
    --white: #ffffff;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}
body{
      font-family: "Poppins", sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}
header{
    background-color: var(--bg-color);
    color: var(--text-color);
    padding: 15px 30px;
    box-shadow: var(--shadow);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    z-index: 1000;
}
nav ul{
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}
nav ul li{
    position: relative;
    padding: 10px 0;
}
nav ul li a{
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    text-transform: capitalize;
    padding: 8px 12px;
    border-radius: 5px;
}
nav ul li a:hover{
    color: var(--primary-color);
    background-color: rgba(231, 114, 45, 0.1);
}
nav ul li::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}
nav ul li:hover::after{
    width: 80%;
}

header div img{
    width: 200px;
    height: auto;
    display: block;
}

/* Hamburger Menu Button */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    margin-right: 20px;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--text-color);
    border-radius: 2px;
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Home Section */
.home{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    min-height: 100vh;
    padding: 120px 50px 50px;
    background: linear-gradient(135deg, var(--bg-color) 0%, #fff5ee 100%);
    position: relative;
    overflow: hidden;
}
.home::before{
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(231, 114, 45, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}
.himg{
    z-index: 100;
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.himg img{
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.himg img:hover{
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.home-frm1{
    z-index: 100;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.home h1{
    font-size: 52px;
    color: var(--primary-color);
    background-color: transparent;
    padding: 10px 0;
    text-align: left;
    margin-bottom: 20px;
    font-family: "Limelight", cursive;
    line-height: 1.2;
}
.home p{
    font-size: 16px;
    color: var(--text-color);
    padding: 0;
    text-align: left;
    margin-top: 15px;
    line-height: 1.8;
    width: 100%;
}
.home-frm{
    display: none;
}
.hil{
    color: var(--primary-color);
    font-weight: 700;
}

/* About Section */
.about{
   width: 90%;
   margin: 0 auto;
   padding: 80px 20px;
   background-color: var(--white);
   border-radius: 20px;
   box-shadow: var(--shadow);
}
.about h1{
    font-size: 36px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 30px;
    font-family: "Limelight", cursive;
    position: relative;
}
.about h1::after{
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}
.about > p{
    font-size: 17px;
    color: var(--text-color);
    line-height: 1.8;
    text-align: justify;
    width: 80%;
    margin: 0 auto 40px;
}

.about-content{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
    margin-top: 30px;
}
.about-content > div{
    flex: 1;
}
.about-content > ul{
    flex: 1.5;
}
.about-content img{
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    margin-left: 15%;
}
.about ul{
    list-style: none;
    margin-left: 0;
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.8;
}
.about ul li{
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}
.about ul li::before{
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 18px;
}

.mod{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 50px 20px;
    width: 80%;
    margin-left: 10%;
}
.mod div{
    flex: 1;
}
.mod div img{
    width: 100%;
    height: 300px;
    border-radius: 20px 20px 0px 0;
    box-shadow: var(--shadow);
    transition: var(--transition);
    object-fit: cover;
}
.mod div{
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 25px;
}
.mod1{
    text-align: center;
    font-size: 24px;
    padding: 5px;
}
.mod2{
    text-align: center;
    padding: 10px;
    border-top:1px solid #cc8a7f;
    border-bottom:1px solid #cc8a7f;
    width: 80%;
    margin-left: 10%;
}
.mod3{
    text-align: justify;
    font-size: 18px;
    padding: 10px;
    width: 80%;
    margin-left: 10%;
    font-size: 16px;
}
.mod1 span{
    color: var(--primary-color);
    font-weight: 700;
    font-size: 12px;
}
.mod div:nth-child(odd){
    background-color: #fef4f2;
}
.mod div:nth-child(even){
    background-color: #eeefe9;
}
.mod a{
    text-align: center;
    width: 100%;
    margin-left: 35%;
    padding: 10px 20px;
    text-decoration: none;
    color: var(--white);
    border-radius: 15px;
}
#docor{
    font-size: 52px;
    color: var(--primary-color);
    background-color: transparent;
    padding: 10px 0;
    text-align: left;
    margin-bottom: 20px;
    font-family: "Limelight", cursive;
    line-height: 1.2;
    text-align: center;
    margin-top: 25px;
}
.point{
    text-align: center;
    background-color: #fae9df;
    padding: 10px;
}
.point p{
    font-size: 24px;
}
.serv{
    width: 80%;
    margin-left: 10%;
}
.serv1{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 50px 20px;

}      
.serv2{
    flex: 1;
    background-color: #d0f5f7;
    padding: 30px;
        border-radius:20px ;

} 
.serv2 div img{
    width: 100%;
    height: 300px;
    border-radius: 20px 20px 0px 0;
    box-shadow: var(--shadow);
    transition: var(--transition);
    object-fit: cover;
}
.serv2 h2{
    font-size: 24px;
    color: var(--primary-color);
    background-color: transparent;
    padding: 10px 0;
    text-align: center;
    margin-bottom: 20px;
    font-family: "Limelight", cursive;
}
.serv2 h3{
    font-size: 18px;
    color: var(--text-color);
    background-color: transparent;
    padding: 10px 0;
    text-align: center;
    margin-bottom: 20px;
    font-family: "Poppins", sans-serif;
}
.serv2 ul{
    list-style: none;
    padding-left: 0;
}
.serv2 ul li{
    padding-left: 30px;
    position: relative;
    margin-bottom: 10px;
}
.serv h1{
    font-size: 36px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 30px;
    font-family: "Limelight", cursive;
    position: relative;
}
.serv h1::after{
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}
.serv p{
    font-size: 17px;
    color: var(--text-color);
    line-height: 1.8;
    text-align: center;
    width: 80%;
    margin: 0 auto 40px;
}   
/* Contact Section */
.contact {
    width: 90%;
    margin: 0 auto 80px;
    padding: 60px 20px;
    background-color: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.contact h1 {
    font-size: 36px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    font-family: "Limelight", cursive;
    position: relative;
}

.contact h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.contact1 {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.contact1 > div:first-child {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact1 > div:first-child img {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.contact1 > div:last-child {
    flex: 1.5;
}

.contact1 form {
    display: flex;
    flex-direction: column;
    gap: 25px;
    background: linear-gradient(135deg, #fef4f2 0%, #fff5ee 100%);
    width: 100%;
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(231, 114, 45, 0.2);
}

.cont1 {
    display: flex;
    gap: 30px;
}

.cont1 > div {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cont2 {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact1 label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

.contact1 input,
.contact1 textarea {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    font-family: "Poppins", sans-serif;
    transition: var(--transition);
    background-color: var(--white);
    width: 100%;
}

.contact1 input:focus,
.contact1 textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(231, 114, 45, 0.1);
}

.contact1 input::placeholder,
.contact1 textarea::placeholder {
    color: #999;
}

.contact1 textarea {
    min-height: 120px;
    resize: vertical;
}

.contact1 input[type="number"] {
    -moz-appearance: textfield;
}

.contact1 input[type="number"]::-webkit-outer-spin-button,
.contact1 input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
footer {
    background-color: #333333;
    color: var(--text-color);
    text-align: justify;
    padding: 20px;
    font-size: 14px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    color: white;
}   
.f1{
    display: flex;
    flex-direction: row;
    gap: 30px;
    padding: 20px;
    line-height: 2;
}
.f1 div{
    display: flex;
    flex-direction: column;
    width:100%;
}
footer a{
    text-decoration: none;
    color: white;
    margin-top: 20px;
}
/* Mobile Styles */
@media (max-width: 992px) {
    .menu-toggle {
        display: flex;
    }
    
    header {
        padding: 15px 20px;
    }
    
    nav {
        display: none;
    }
    
    .mobile-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-color);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
    }
    
    .mobile-nav.active {
        display: block;
    }
    
    .mobile-nav ul {
        flex-direction: column;
        gap: 0;
        margin-left: 0;
        padding: 0;
    }
    
    .mobile-nav ul li {
        padding: 15px 20px;
        text-align: center;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .mobile-nav ul li::after {
        display: none;
    }
    
    .mobile-nav ul li:hover {
        border-bottom: none;
        background-color: rgba(231, 114, 45, 0.1);
    }
    
    .mobile-nav ul li a {
        display: block;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .home {
        flex-direction: column;
        padding: 100px 20px 40px;
        gap: 30px;
    }
    
    .himg, .home-frm1 {
        width: 100%;
    }
    
    .home h1 {
        font-size: 32px;
        text-align: center;
    }
    
    .home p {
        text-align: justify;
        font-size: 15px;
    }
    
    .himg img {
        max-width: 100%;
        border-radius: 20px;
    }
    
    .about {
        width: 95%;
        padding: 50px 15px;
    }
    
    .about h1 {
        font-size: 28px;
    }
    
    .about > p {
        font-size: 15px;
        text-align: justify;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-content img {
        max-width: 100%;
    }
    
    .about ul li {
        font-size: 14px;
    }
    
    header div img {
        width: 150px;
    }
    .about-content img{
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    margin-left: 0%;
}
    .mod{
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 30px;
        padding: 50px 20px;
        width: 95%;
        margin-left: 0%;
        flex-direction: column;
    }
    #docor{
    font-size: 24px;
    color: var(--primary-color);
    background-color: transparent;
    padding: 10px 0;
    text-align: left;
    margin-bottom: 20px;
    font-family: "Limelight", cursive;
    line-height: 1.2;
    text-align: center;
    margin-top: 25px;
    }
    .point{
        text-align: center;
        background-color: #fae9df;
        padding: 10px;
        width: 95%;
        margin-left: 2.5%;
    }
    .point p{
        font-size: 18px;
    }
    .f1{
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 20px;
    line-height: 2;
}
.serv1{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 50px 20px;
    flex-direction: column;

} 
}

@media (max-width: 480px) {
    .home h1 {
        font-size: 26px;
    }
    
    .home p {
        font-size: 14px;
    }
    
    .about h1 {
        font-size: 24px;
    }
    
    /* Contact Section Mobile */
    .contact {
        width: 95%;
        padding: 40px 15px;
        margin-bottom: 40px;
    }
    
    .contact h1 {
        font-size: 28px;
    }
    
    .contact1 {
        flex-direction: column;
        gap: 30px;
    }
    
    .contact1 > div:first-child {
        width: 100%;
    }
    
    .contact1 > div:first-child img {
        max-width: 100%;
    }
    
    .contact1 > div:last-child {
        width: 100%;
    }
    
    .contact1 form {
        padding: 25px;
    }
    
    .cont1 {
        flex-direction: column;
        gap: 20px;
    }
    
    .contact1 label {
        font-size: 13px;
    }
    
    .contact1 input,
    .contact1 textarea {
        padding: 10px 12px;
        font-size: 14px;
    }
}
