*{
    margin: 0;
    padding: 0;
}
.header{
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(images/priyanka.jpeg);
    background-position:center;
    background-size:cover;
    position: relative;
}
nav{
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
}
nav img{
    width: 150px;
}
.nav-links{
    flex: 1;
    text-align: right;
}
.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: relative;
}
.nav-links ul li a{
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    margin-right: 5px;
}
.nav-links ul li:hover {
        border:1px solid white;
}
.nav-links ul li{
    border: 2px solid transparent;
}
.text-box {
    width: 90%;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* Add effects below */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Subtle text shadow */
   
}

.text-box h1 {
    font-size: 50px;
    /* Add effects below */
    letter-spacing: 2px; /* Slightly increase letter spacing */
    transition: transform 0.3s ease-in-out; /* Smooth transform transition */
}

.text-box h1:hover {
    transform: scale(1.05); /* Slight zoom on hover */
}

.text-box h4 {
    font-size: 20px;
    margin: 20px;
    /* Add effects below */
    opacity: 0.8; /* Slightly transparent */
    transition: opacity 0.3s ease-in-out; /* Smooth opacity transition */
}

.text-box h4:hover {
    opacity: 1; /* Fully opaque on hover */
}

/* Keyframes for fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.95); /* Start slightly smaller */
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1); /* Return to normal size */
    }
}
.hero-btn{
    display: inline-block;
    text-decoration: none;
    color: white;
    border: 1px solid white;
    padding: 12px 34px;
    font-size: 18px;
    background: transparent;
    position:relative;
    cursor: pointer;
}
.hero-btn:hover {
    border: 1px solid rgb(192, 49, 73);
    background-color:rgb(192, 49, 73);
    transition:1s;
}

.icons-nav{
    display: none;
}

@media(max-width: 900px){
    .text-box h1{
        font-size: 22px;
    }
    .nav-links ul li{
        display: block;
    }
    .nav-links{
        position:fixed;
        background: rgb(211, 107, 124);;
        height: 100vh;
        width: 200px;
        top:0;
        right: -200px;;
        text-align: left;
        z-index: 2;
        transition: 1s;
    }
    .icons-nav{
        display: block;
        color:white;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }
    .nav-links ul li{
        padding: 25px;
    }
}

/*----About----*/

.row {
    display: flex;
    margin-top: 5%;
    align-items: flex-start;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 20px;
    background-color: #fce4ec; /* Light pink pastel background */
    overflow: hidden; /* Ensure sliding content doesn't overflow */
}

.doc-col {
    flex-basis: 35%;
    border-radius: 10px;
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
}

.doc-col:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.doc-col img {
    width: 100%;
    display: block;
    border-radius: 10px;
}

.doc-colum {
    flex-basis: 65%;
    padding: 20px;
    text-align: left;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    animation: slideInFromRight 1s ease-out; /* Apply sliding effect */
}

.doc-colum h1 {
    font-size: 28px;
    margin-bottom: 5px;
    color: black; /* Black heading color */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.doc-colum h2 {
    font-size: 18px;
    margin-bottom: 5px;
    color: black; /* Black heading color */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.doc-colum p {
    margin-top: 25px;
    color: black; /* Black paragraph text color */
}

@media (max-width: 900px) {
    .row {
        flex-direction: column;
        padding: 10px;
    }

    .doc-col, .doc-colum {
        flex-basis: 100%;
        padding: 20px;
        
    }

    .doc-col img {
        margin-bottom: 20px;
    }
    .contact-col img{
        display: none;

    }
}

/* Slide-in animation */
@keyframes slideInFromRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/*----services---*/
.services {
    width: 100%; /* Increased width to 95% */
    margin-top: 5%;
    text-align: center;
    padding-top: 80px;
    background-color: #f0e6f5; /* Light purple background */
}

h1 {
    font-size: 50px;
    font-weight: 600;
}

.row1, .row2 {
   margin-top: 5%;
    margin-left: 15px;
    margin-right: 15px;
    display: flex;
    justify-content: space-between;
}

.row2 {
    margin-top: 25px;
}

.column {
    flex-basis: 31%;
    background: white; /* White column background */
    border-radius: 10px;
    margin-bottom: 2%;
    padding: 50px 25px; /* Increased padding for height and width */
    box-sizing: border-box;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out; /* Smooth transitions */
    animation: fadeInUp 1s ease-out; /* Fade-in and slide-up animation */
    min-height: 300px; /* Increased minimum height */
}

h3 {
    text-align: center;
    font-weight: 600;
    margin: 15px 0; /* Increased margin for spacing */
    font-size: 1.5em; /* Increased font size */
}

p {
    font-size: 1.1em; /* Increased paragraph font size */
    line-height: 1.6; /* Improved line spacing */
}

.column:hover {
    transform: translateY(-5px); /* Slight lift on hover */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15); /* Enhanced shadow on hover */
}

.pic-mam {
    flex-basis: 32%;
    border-radius: 10px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    margin-left: 30px;
}

.home {
    margin-left: 80px;
    margin-top: 30px;
    font-size: 80px;
}

.icon-add {
    font-size: 25px;
    margin-right: 30px;
}

@media (max-width: 900px) {
    .row1, .row2 {
        flex-direction: column;
    }
}

/* Fade-in and slide-up animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*----testimonials----*/
.testimonials {
    width: 100%;
    margin: auto;
    padding-top: 100px;
    text-align: center;
  
}

.test-col {
    flex-basis: 30%;
    border-radius: 10px;
    margin-bottom: 2%;
    margin-right: 2%;
    text-align: left;
    background: #e0f8e0; /* Light green background */
    padding: 20px; /* Increased padding */
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Added subtle shadow */
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out; /* Smooth transitions */
    
}

.test-col:hover {
    transform: translateY(-5px); /* Slight lift on hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); /* Enhanced shadow on hover */
}

.test-col img {
    height: 60px; /* Increased image size */
    margin-left: 10px; /* Adjusted margin */
    margin-right: 20px; /* Adjusted margin */
    border-radius: 50%;
}

.test-col p {
    padding: 10px 0; /* Added padding to paragraph */
    font-size: 1.1em; /* Increased paragraph font size */
    line-height: 1.6; /* Improved line spacing */
}

.test-col h3 {
    margin-top: 15px;
    text-align: left;
    font-size: 1.2em; /* Increased heading font size */
    font-weight: 600; /* Bold heading */
}

.test-star {
    color: gold; /* Golden star color */
    margin-top: 20px;
    font-size: 1.5em; /* Increased star size */
}

@media (max-width: 900px) {
    .test-col img {
        margin-left: 0;
        margin-right: 15px;
    }
}
/*----call to action -----*/
.cta{
   
    margin: 100px auto;
    width: 100%;
    background-image:linear-gradient(rgba(2,6,30,0.5),rgba(2,6,30,0.5)),url(images/Priyanka9.jpeg);
    background-position: center;
    
    border-radius: 10px;
    text-align: center;
    padding: 100px 0;
}

.cta h1{
    color: #fff;
    margin-bottom: 40px;
    padding: 0;
}
@media(max-width: 900px){
    .cta h1{
        font-size: 24px;
    }

}
/*---footer---*/
.footer{
    width: 100%;
    text-align: center;
    padding: 30px 0;
}
.footer h2{
    margin-bottom: 25px;
    margin-top: 20px;
    font-weight: 600;
}
.icons .fa{
    margin: 0 13px;
    cursor: pointer;
    padding: 18px 0;
}

/*--about us page----*/
.sub-header{
    height: 80vh;
    width: 100%;
    background-image:linear-gradient(rgba(2,6,30,0.5),rgba(2,6,30,0.5)), url(images/Priyanka4.jpeg);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #fff;
}
.sub-header h1{
        margin-top: 50px; 
        font-size: 200px;
        
}
@media(max-width: 900px){
    .sub-header h1{
        content-visibility: hidden;
}
}
/*--contact us ---*/
.sub-headerc{
    height: 80vh;
    width: 100%;
    background-image:linear-gradient(rgba(2,6,30,0.6),rgba(2,6,30,0.6)), url(images/Priyanka9.jpeg);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #fff;
}
.sub-headerc h1{
    margin-top: 50px; 
    font-size: 180px;
    
}

.location{
    width: 80%;
    margin: auto;
    padding: 80px 0;
}
.location iframe{
    width: 100%;
}
.contact-us{
    width: 80%;
    margin: auto;
    
}
.contact-col{
    flex-basis: 48%;
    margin-bottom: 30px;
}
.contact-col div{
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}
.contact-col div.fa{
font-size: 28px;
color: #c77171;
margin: 10px;
margin-right: 30px;
}
.contact-col div h5{
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 5px;
    color: #555;
}
.contact-col input{
    width: 100%;
    padding: 15px;
    margin-bottom: 17px;
    outline: none;
    border: 1px solid #c77171;
    box-sizing: border-box;
}
.red-btn{
    border: 1px solid #c7544b;
    background: transparent;
    color: #c7544b;
}
.red-btn:hover {
    color: #fff;
}
@media(max-width: 900px){
    .sub-headerc h1{
        content-visibility: hidden;
}
}
/*----services----*/
.sub-headers{
    height: 80vh;
    width: 100%;
    background-image:linear-gradient(rgba(2,6,30,0.6),rgba(2,6,30,0.6)), url(images/Priyanka1.jpeg);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #fff;
}
.sub-headers h1{
    margin-top: 50px; 
    font-size: 100px;
    
}
@media(max-width: 900px){
    .sub-headers h1{
        content-visibility: hidden;
}
}
/*----gallery---*/

/* Row Styling */
.row3, .row4, .row5 {
    margin-top: 3%;
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease-out forwards;
}

/* Column Styling */
.column3 {
    flex-basis: 31%;
    border-radius: 10px;
    margin-bottom: 2%;
    padding: 20px;
    box-sizing: border-box;
    background: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover Effect */
.column3:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

/* Slide-in Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sliding Effect on Scroll */
@media(max-width: 900px) {
    .row3, .row4, .row5 {
        flex-direction: column;
    }
}

/* Keyframe for Hover Animation */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* Apply Hover Animation */
.column3:hover {
    animation: bounce 0.5s ease-in-out;
}


/*-- About Page Styling --*/

/* Background Gradient */
.about {
    width: 100%;
    overflow: visible; /* Ensures all text is displayed */
    word-wrap: break-word;
    margin: 30px auto;
    background: #f1bbbb; /* Change background for this page only */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* Heading Styles */
.abt h2 {
    text-align: left;
    margin: 20px;
    font-size: 2.5rem;
    font-weight: bold;
    color: #0c0d0e;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    animation: fadeIn 1s ease-in-out;
}

/* Subheading */
.abt h3 {
    text-align: left;
    margin-top: 30px;
    font-size: 20px;
    font-weight: bold;
    color: #0e0d0d;
    transition: color 0.3s ease;
}

/* On hover, change color */
.abt h3:hover {
    color: #028391;
}

/* Paragraph Styling */
.abt p {
    font-weight: 400;
    margin-top: 33px;
    text-align: left;
    font-size: 1.2rem;
    line-height: 1.6;
    padding: 0 20px;
    color: #111010;
        display: block; /* Ensures full paragraph is visible */
        word-wrap: break-word;
        white-space: normal; /* Prevents text from being cut */
        overflow: visible;
    
    
}

/* Container */
.c {
    display: flex;
    justify-content: left;
    align-items: left;
    flex-wrap: wrap;
    margin-left: 15px;
}

@media (max-width: 900px) {
    .about {
        padding: 20px;
        width: 100%;
    }
    .abt h2, .abt h3, .abt p {
        font-size: 1.1rem; /* Adjust font size for better fit */
        padding: 10px; /* Adjust padding to prevent text clipping */
    }
    .c {
        flex-direction: column;
        align-items: flex-start;
        margin-left: 0;
    }
}


/* Animation Effects */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover Effect */
.abt p:hover {
    color: #028391;
    transition: color 0.3s ease-in-out;
}

