/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Navbar Container */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #ffffff;
    padding: 10px 20px;
    border-bottom: 1px solid #ccc;
    position: relative;
    z-index: 10;
}

/* Logo Section */
.navbar .logo {
    display: flex;
    align-items: center;
}

.navbar .logo img {
    height: 40px;
    margin-right: 10px;
}

.navbar .logo span {
    font-size: 1.5em;
    font-weight: bold;
    color: #4b2d7f;
}

/* Navigation Links */
.navbar .nav-links {
    display: flex;
    list-style: none;
}

.navbar .nav-links li {
    margin-left: 30px;
}

.navbar .nav-links a {
    text-decoration: none;
    font-size: 1.1em;
    color: black;
    transition: color 0.3s, font-size 0.3s, box-shadow 0.3s; /* Add transition for smooth effect */
}

/* Hover Effect */
.navbar .nav-links li:hover a {
    color: red;
    font-size: larger;
    box-shadow: 0 2px 5px #ccc; /* Added a box shadow for clarity */
    cursor: pointer;
}

/* Menu Icon */
.menu-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
    transition: all 0.3s ease;
}

.menu-icon div {
    width: 25px;
    height: 3px;
    background-color: #4b2d7f;
    margin: 4px 0;
    transition: all 0.3s ease;
}

/* Change Menu Icon to Cross */
.menu-icon.open div:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-icon.open div:nth-child(2) {
    opacity: 0;
}

.menu-icon.open div:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Keyframes for the floating effect */
@keyframes floatIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .navbar .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        background-color: #fff4e6;
        border-top: 1px solid #ccc;
        z-index: 5;
        padding-left: 10px;
    }

    .navbar .nav-links.active {
        display: flex;
    }

    .menu-icon {
        display: flex;
    }

    .navbar .nav-links li {
        margin: 15px 0;
        opacity: 0; /* Hide items initially */
        transform: translateY(20px); /* Move items out of view initially */
    }

    .nav-links.active li {
        opacity: 1; /* Fade in the items */
        transform: translateY(0); /* Move items back into view */
        animation: floatIn 0.5s forwards;
        animation-delay: calc(0.1s * var(--i)); /* Staggered animation */
    }
}
.main-container{
    background-image: url('pictures/maincontent-pic.jpg');
    background-size:cover; /* Cover the entire container */
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* No repeat */
    background-image: -moz-linear-gradient();
   
  
    


    color: rgb(39, 36, 36); /* Text color for contrast */
    
  
    
    
 
}

    .main-container {
        background-size: cover;
        background-position: center;
        display: flex;
        flex-direction: row;
        text-align: center;
        padding: 10px;
        height: 245px;
        font-size: 20px;
      
        /* Animation for slideshow */
        animation: backgroundSlide 12s infinite;
      }
      
      @keyframes backgroundSlide {
        0%, 16.66% { background-image: url('pictures/frontpic.jpg'); }
        33.33%, 49.99% { background-image: url('pictures/bg2.jpg'); }
        66.66%, 83.33% { background-image: url('pictures/bg3.jpg'); }
        100% { background-image: url('pictures/frontpic.jpg'); } 
      }
      
   
    .h1container h1{
        font-size: 20px;
        padding-top:5px;

      
}
@media (min-width: 800px) {
    .main-container{
        background-size: cover;
        background-repeat: repeat;
       width:100vw;
       height:80vh;
        background-position: center;
        

    }

  }

.whypvc {
    background: linear-gradient(to right, #f1f6fc, #e7ebeb);


    border-radius: 10px; /* Rounded corners */
    padding: 10px; /* Padding around content */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    max-width: 800px; /* Limit the width for better readability */
    margin: 10px auto; /* Center the section and add margin */
    text-align: center; /* Center-align text */
    
}

.whypvc h2 {
    font-size: 2.5em; /* Large font size */
    color: #4b2d7f; /* Deep purple color */
    margin-bottom: 20px; /* Spacing below the heading */
    font-family:Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif; /* Font style */
    text-transform: uppercase; /* Make heading uppercase */
    letter-spacing: 1.5px; /* Spacing between letters */
    animation: fadeIn 1s ease-in-out; /* Animation for heading */
}

.whypvc ul {
    list-style-type: none; /* Remove default bullet points */
    padding: 0; /* Remove padding */
}

.whypvc li {
    background: #e6e6fa; 
    margin-bottom: 10px; 
    padding: 15px; 
    border-radius: 8px; 
    font-size: 1.1em; 
    color: #333; 
    font-family: Arial, sans-serif; 
    text-align: left; 
    position: relative; 
    animation: floatIn 0.6s forwards;
    opacity: 0; 
    transform: translateY(20px); 
}

.whypvc li::before {
    content: "✔"; /* Custom checkmark icon */
    color: #4b2d7f; /* Color for the icon */
    font-size: 1.5em; /* Icon size */
    position: absolute; /* Position relative to the list item */
    left: -30px; /* Place icon on the left */
    top: 50%; /* Center icon vertically */
    transform: translateY(-50%); /* Adjust for perfect centering */
}

@keyframes floatIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.slide {
    display: none;
    transition: opacity 1s ease-in-out; 
}
.oursurvices {
    display: flex;
    flex-direction:column;
    align-items: center;
    background: linear-gradient(to right, #e3e4e6, #ebf3f3);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(156, 155, 155, 0.2);
   
   
    position: relative;
    overflow: hidden;
    text-align: center;
    color: #fff;
}

.oursurvices h2 {
    font-size: 2.5em;
    color: #0e0c0c;
    margin-bottom: 20px;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    letter-spacing: 1.2px;
    text-shadow: 2px 2px 8px rgba(206, 204, 204, 0.5);
    animation: fadeIn 2s ease-in-out;
}

.contsurvice {
    background-color: rgba(252, 249, 249, 0.1);
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    width: 90%;
    transition: transform 0.3s, background-color 0.3s;
}

.contsurvice h2 {
    font-size: 1.8em;
    color: #0f0f0e;
    margin-bottom: 10px;
    font-family: "Arial", sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contsurvice p {
    font-size: 1.1em;
    line-height: 1.6;
    color: #202020;
}

.contsurvice:hover {
    transform: scale(1.05);
    background-color: rgba(255, 255, 255, 0.2);
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.ourgallery {
    text-align: center;
    padding: 20px;
}

.ourgallery h1 {
    font-size: 24px;
    margin-bottom: 20px;
}


.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 20px; 
}


.gallery-item {
    position: relative;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 300px; /* Increase the height for larger images */
    object-fit: contain; /* Maintain aspect ratio and cover the container */
    border-radius: 5px;
    transition: transform 0.5s ease-in-out;
}

/* Image hover effect */
.gallery-item:hover img {
    transform: scale(1.05);
}


@media (max-width: 768px) {
   
    .gallery-container {
        display: block;
    }

   
    .gallery-item {
        display: none;
        opacity: 0;
        transform: translateX(20px);
        transition: opacity 1s ease-in-out, transform 1s ease-in-out;
        width: 100%; 
        max-width: 300px;
        margin: 0 auto; 
    }

    
    .gallery-item.active {
        display: block;
        opacity: 1;
        transform: translateX(0);
    }

    
    .gallery-item img {
        height: 200px; 
    }
}
.quuery{
    display: flex;
    position:fixed;
    background-color: #333;
    height: 500px;
    width: 300px;
    flex-direction: column;
    text-align: center;
    align-items: center;
    overflow: hidden;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}


.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    border-radius: 10px;
    position: relative;
}


.close-button {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-button:hover,
.close-button:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}


.query h1 {
    font-size: 24px;
    margin-bottom: 20px;
}

.query a {
    display: inline-block;
    background-color: #007BFF;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

.query a:hover {
    background-color: #0056b3;
}
.footer{
    background:#000;
    padding:30px 0px;
    font-family: 'Play', sans-serif;
    text-align:center;
    overflow: hidden;
    }
    
    .footer .row{
    width:100%;
    margin:1% 0%;
    padding:0.6% 0%;
    color:gray;
    font-size:0.8em;
    overflow: hidden;
    }
    
    .footer .row a{
    text-decoration:none;
    color:gray;
    transition:0.5s;
    }
    
    .footer .row a:hover{
    color:#fff;
    }
    
    .footer .row ul{
    width:100%;
    }
    
    .footer .row ul li{
    display:inline-block;
    margin:0px 30px;
    }
    
    .footer .row a i{
    font-size:2em;
    margin:0% 1%;
    }
    
    @media (max-width:720px){
    .footer{
    text-align:left;
    padding:5%;
    }
    .footer .row ul li{
    display:block;
    margin:10px 0px;
    text-align:left;
    }
    .footer .row a i{
    margin:0% 3%;
    }
    }
    
.order-now {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000; 
}

.order-now a {
    display: inline-block;
    background-color: #ff6b6b;
    color: white;
    text-decoration: none;
    padding: 15px 20px;
    font-size: 16px;
    border-radius: 5px;
    font-family: 'Fredoka One', sans-serif;
    animation: bounce 2s infinite;
}

/* Bouncing Animation */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(-50%);
    }
    40% {
        transform: translateY(-60%);
    }
    60% {
        transform: translateY(-55%);
    }
}
.show-work-btn {
    position: fixed;
    bottom: 200px;
    right: 20px;
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    opacity: 0; 
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    transition: opacity 0.5s ease; 
    pointer-events: none; 
}

.show-work-btn a {
    color: white;
    text-decoration: none;
}

.show-work-btn.show {
    opacity: 1; 
    pointer-events: auto; 
}

.show-work-btn:hover {
    background-color: #0056b3;
}
