* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    background: url('images/bg.jpg') no-repeat center center fixed;
    background-size: cover;
    background-position: center;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 100px;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo {
    font-size: 32px;
    color: black;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s;
}

.logo:hover {
    color: #f2bad6;
}

.navbar a {
    position: relative;
    font-size: 18px;
    color: black;
    font-weight: 500;
    text-decoration: none;
    margin-left: 40px;
    transition: color 0.3s;
}

.navbar a:hover {
    color: #f2bad6;
}

.navbar a::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 0;
    height: 2px;
    background: #f2bad6;
    transition: width 0.3s;
}

.navbar a:hover::before {
    width: 100%;
}

.section {
    padding: 100px 100px;
    text-align: center;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.about-image {
    flex: 1;
    max-width: 300px;
    margin: 20px;
    position: relative;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s;
}

.about-image:hover img {
    transform: scale(1.1);
}

.about-text {
    flex: 2;
    max-width: 600px;
    margin: 20px;
    text-align: left;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 18px;
}

footer {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    position:fixed;
    bottom: 0;
    margin: 0;
    width: 100%;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
}

.footer-content {
    display:flex;
    flex-direction: column;
    align-items: center;
}

.social-media {
    margin-top: 10px;
}

.social-media a {
    color: black;
    text-decoration: none;
    margin: 0 10px;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s;
}

.social-media a i {
    margin-right: 5px;
}

.social-media a:hover {
    color: #f2bad6;
}

/* Specific styles for about.html */
.about-specific {
    justify-content: space-between;
}

.about-specific .about-image {
    flex: 1;
    max-width: 33%;
}

.about-specific .about-text {
    flex: 2;
    max-width: 66%;
}

.bold-text {
    flex: 2;
    max-width: 600px;
    margin: 20px;
    text-align:end;
}

.bold-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.bold-text p {
    font-size: 18px;
}

.content-table {
    border-collapse: collapse;
    margin: 25px auto;
    font-size: 1.2em;
    min-width: 1100px;
    background-color: transparent; /* White background for table */
    color: #333; /* Text color for table */
}

.content-table thead {
    background-color: transparent;/* Accent color for table header */
    color: #000; /* White text in the header */
}

.content-table th, .content-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd; /* Light border for table rows */
}

         
.btn-grad {
    background-image: linear-gradient(to right, #ffdfeb 0%, #FFFFFF  51%, #ffdfeb  100%);
    margin: 10px;
    padding: 15px 45px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    font-weight: 500;
    background-size: 200% auto;
    color: black;            
    box-shadow: 0 0 20px #ffdfeb;
    border-radius: 10px;
    display: inline-block;
    text-decoration: none;
  }

  .btn-grad:hover {
    background-position: right center; 
    color: #000000;
    text-decoration: none;
  }

.swiper-container {
    width: 100%;
    height: auto;
    margin: 20px 0;
}

.swiper-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    margin: 20px 0;
}

.swiper-slide h3{
    font-size: 28px;
    margin-bottom: 10px;
}

.swiper-slide p{
    font-size: 18px;
    margin-bottom: 10px;
}

.swiper-pagination {
    bottom: 4px !important;
    color: #000000;
}

.swiper-button-next, .swiper-button-prev {
    color: #000000 !important;
}

.swiper-pagination-bullet {
    background-color: #000 !important;
}

.swiper-pagination-bullet-active {
    background-color: #000 !important;
}


.swiper-button-next:hover, .swiper-button-prev:hover {
    color: #f2bad6 !important;
}

.instagram, .twitter, .github, .linkedin, .email{
    height: 20px;
    width: 20px;
}

.heart {
    height: 14px;
    width: 14px;
}

form {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

form label {
    margin: 10px 0 5px;
    font-weight: 600;
    text-align: left;
}

form input, form textarea {
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

form button {
    padding: 15px;
    border: none;
    background-color: #f2bad6;
    color: black;
    font-size: 18px;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color 0.3s;
}

form button:hover {
    background-color: #ffdfeb;
}

