/* General Styles */
.menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  background-color: #004080;
}

.menu > li {
  position: relative;
}

.menu > li > a {
  display: block;
  padding: 15px 20px;
  color: white;
  text-decoration: none;
}

.menu > li:hover > a {
  background-color: #003366;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #004080;
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 200px;
  z-index: 1000;
}

.dropdown-content li a {
  display: block;
  padding: 10px 15px;
  color: white;
  text-decoration: none;
}

.dropdown-content li a:hover {
  background-color: #003366;
}

.dropdown:hover .dropdown-content {
  display: block;
}

body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

/* Container for Centering Content */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

/* Justified Text */
.justified-text {
    text-align: justify;
}

/* Typography */
h1, h2, h3 {
    font-weight: bold;
    text-align: center;
}

p {
    font-size: 16px;
    margin-bottom: 15px;
}

/* Grid Layout for Content */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

/* Buttons */
.button {
    display: inline-block;
    background: #007bff;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
}

.button:hover {
    background: #0056b3;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
    .grid {
        grid-template-columns: 1fr;
    }
}

/*Time Line */
/* General Styling */
body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
}

/* Timeline Section */
.timeline {
    max-width: 800px;
    margin: 50px auto;
    text-align: center;
}

.timeline-title {
    font-size: 28px;
    margin-bottom: 20px;
    color: #333;
}

/* Timeline Container */
.timeline-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

/* Timeline Item */
.timeline-item {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    width: 80%;
    max-width: 600px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
}

/* Timeline Icons */
.timeline-icon {
    width: 50px;
    height: 50px;
    background-color: #007bff;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-right: 15px;
}

/* Timeline Content */
.timeline-content {
    text-align: left;
    flex: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .timeline-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .timeline-icon {
        margin-bottom: 10px;
        margin-right: 0;
    }
}

/*Services Offer*/
html {
    scroll-behavior: smooth;
}

/* General Styling */
body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
}

/* Services Section */
.services {
    max-width: 800px;
    margin: 50px auto;
    text-align: center;
}

.services-title {
    font-size: 28px;
    margin-bottom: 20px;
    color: #333;
}

/* Service Container */
.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    justify-content: center;
}

/* Service Item */
.service-item {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

/* Hover Effect */
.service-item:hover {
    transform: scale(1.05);
}

/* Wishlist Button */
.wishlist-btn {
    background: #007bff;
    color: white;
    border: none;
    padding: 10px;
    margin-top: 10px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

.wishlist-btn:hover {
    background: #0056b3;
}

/* CTA Section */
.cta {
    margin-top: 30px;
}

.cta-btn {
    background: #28a745;
    color: white;
    padding: 15px 20px;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    display: inline-block;
    transition: all 0.3s ease-in-out;
}

.cta-btn:hover {
    background: #218838;
    transform: scale(1.1);
}

/* Popup Form Styling */
.popup {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.popup-content {
    background-color: white;
    margin: 10% auto;
    padding: 20px;
    width: 50%;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    animation: slideIn 0.5s ease-in-out;
}

/* Close Button */
.close {
    color: red;
    float: right;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
}

/* Form Styling */
form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

form input {
    width: 80%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    background: #28a745;
    color: white;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

form button:hover {
    background: #218838;
    transform: scale(1.05);
}

/* Animation */
@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* DateTime Picker Styling */
#datetime {
    width: 80%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    text-align: center;
    font-size: 16px;
    cursor: pointer;
}

/* Improve Submit Button */
form button {
    background: #28a745;
    color: white;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

form button:hover {
    background: #218838;
    transform: scale(1.05);
}


/* Portfolio Section */
#portfolio {
    text-align: center;
    padding: 50px;
}

/* Filter Buttons */
.filter-buttons {
    margin-bottom: 20px;
}

.filter-btn {
    padding: 10px 15px;
    margin: 5px;
    border: none;
    cursor: pointer;
    background: #007BFF;
    color: white;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

.filter-btn:hover, .filter-btn.active {
    background: #0056b3;
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    transition: transform 0.3s ease-in-out;
}

.portfolio-item img {
    width: 100%;
    border-radius: 8px;
}

.portfolio-item .overlay {
    position: absolute;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    width: 100%;
    padding: 15px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.portfolio-item:hover .overlay {
    opacity: 1;
}

.portfolio-item:hover {
    transform: scale(1.05);
}


#contact {
    text-align: center;
    padding: 50px;
}

form input, form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    background: #007BFF;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

button:hover {
    background: #0056b3;
}


#appointment {
    text-align: center;
    padding: 50px;
}

form input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Modal Styling */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

.close {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 20px;
    cursor: pointer;
}


/* Payment Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

/*SkillsPage*/
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
  }
  
  header {
    background: #004080;
    color: white;
    text-align: center;
    padding: 20px;
  }
  
  .skills-section {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  }
  
  .skills-category {
    margin-bottom: 20px;
  }
  
  .skills-category h2 {
    color: #004080;
    border-bottom: 2px solid #004080;
    padding-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .skill-item {
    background: #e6f0ff;
    padding: 15px;
    border-radius: 8px;
    flex: 1;
    min-width: 250px;
    transition: transform 0.3s ease-in-out;
  }
  
  .skill-item:hover {
    transform: scale(1.05);
  }
  
  ul {
    list-style-type: none;
    padding: 0;
  }
  
  ul li {
    background: #e6f0ff;
    margin: 5px 0;
    padding: 10px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  footer {
    text-align: center;
    padding: 10px;
    background: #004080;
    color: white;
}
.social-links {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}
.social-links li {
    display: inline;
    margin: 0 10px;
}
.social-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}
.social-links a:hover {
    text-decoration: underline;
}
    
  

  /*Service Page*/
  /* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}

/* Header Styles */
h1, h2, h3 {
    color: #0056b3;
    text-align: center;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

h2 {
    font-size: 2rem;
    margin-top: 20px;
}

h3 {
    font-size: 1.5rem;
}

/* Services Section */
.services {
    max-width: 1100px;
    margin: auto;
    padding: 50px 20px;
    background: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.services-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #003366;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
}

.service-item {
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-item p {
    font-size: 1rem;
    color: #555;
    margin: 10px 0;
}

/* Wishlist Button */
.wishlist-btn {
    background: #ff4d4d;
    color: #ffffff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 5px;
    transition: background 0.3s;
}

.wishlist-btn:hover {
    background: #cc0000;
}

/* Call to Action */
.cta {
    text-align: center;
    margin-top: 30px;
}

.cta-btn {
    background: #007bff;
    color: #fff;
    padding: 12px 25px;
    font-size: 1.2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.cta-btn:hover {
    background: #0056b3;
}

/* Popup Styles */
.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    z-index: 1000;
}

.popup-content {
    text-align: center;
}

.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Form Styles */
form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

input, select {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button[type="submit"] {
    background: #28a745;
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

button[type="submit"]:hover {
    background: #218838;
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-container {
        grid-template-columns: 1fr;
    }
}


