*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
#home{
    background-color: rgba(0, 0, 0, 0.6);
    background-image: url("images/introb.jpg");
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
    height: 100vh;
}
.navbar{
    position: sticky;
    display: flex;
    align-items: flex-start;
    justify-content: space-around;
}
.navbar .logo{
    padding: 10px;
}
.navbar .menu ul{
    display: flex;
    flex-direction: row;
}
.navbar .menu ul li{
    list-style: none;
    padding: 10px;
}
.navbar .logo a{
    color: #FF305B;
    text-decoration: none;
    font-family: roboto, sans-serif;
    font-weight: 800;
    font-size: 24px;
}
.navbar .menu ul li a{
    text-decoration: none;
    color: white;
    font-family: roboto, sans-serif;
    font-weight: 300;
    font-size: 16px;
}
.intro{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 80vh;
    line-height: 1.2;
}
.intro h3{
    font-family: "Source Code Pro", sans-serif;
    color: white;
    font-size: 24px;
    font-weight: 600;
}
.intro h1{
    font-family: "Source Code Pro", sans-serif;
    color: RGB(255, 48, 91);
    font-size: 64px;
    font-weight: 700;
}
.intro h4{
    font-family: "Source Code Pro", sans-serif;
    color: white;
    font-size: 26px;
    font-weight: 300;
}


.second {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    background: #fff;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 900px;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.img-wrapper {
    position: relative;
    width: 260px;
    height: 260px;
    flex-shrink: 0;
}

.img-wrapper::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 20px;
    width: 220px;
    height: 220px;
    border: 6px solid #4B4B4B;
    border-radius: 6px;
    z-index: 0;
}

.img-wrapper img {
    position: relative;
    width: 220px;
    height: 220px;
    border-radius: 6px;
    object-fit: contain;
    background: #ddd;
    box-shadow: 0 0 4px rgba(0,0,0,0.1);
    z-index: 1;
    display: block;
}

.content {
    flex: 1;
}

.content h2 {
    margin: 0 0 20px 0;
    font-weight: 700;
    font-size: 28px;
    letter-spacing: -0.5px;
    position: relative;
    color: #222;
}

.content h2::before {
    content: "";
    position: absolute;
    left: -18px;
    top: 8px;
    width: 4px;
    height: 26px;
    background-color: #fc2c55;
    border-radius: 2px;
}

.content p {
    line-height: 1.5;
    font-size: 15px;
    margin-bottom: 24px;
}

.info-line {
    border-top: 1px dotted #bbb;
    margin-bottom: 20px;
}

.details {
    display: flex;
    flex-wrap: wrap;
    gap: 24px 60px;
    font-size: 14px;
}

.details div {
    min-width: 140px;
}

.details strong {
    font-weight: 600;
}

.email {
    color: #999;
}

.buttons {
    margin-top: 28px;
}

.btn {
    background: #fc2c55;
    color: white;
    border: none;
    font-size: 14px;
    font-weight: 600;
    padding: 11px 22px;
    border-radius: 4px;
    cursor: pointer;
    margin-right: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background-color 0.3s ease;
    user-select: none;
    text-decoration: none;
}

.btn:hover {
    background: #e62247;
}

.btn svg {
    width: 15px;
    height: 15px;
    fill: white;
}


.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px;
    text-align: center;
}

h2 {
    font-family: "Source Code Pro", sans-serif;
    font-size: 48px;
    color: #333;
    margin-bottom: 20px;
}

h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 2px;
    background-color: red;
    margin: 10px auto;
}

.service-section {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.service-item {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 20px;
    text-align: center;
    min-width: 250px;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.service-icon {
    font-size: 48px;
    color: red;
    margin-bottom: 10px;
}

.service-title {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.service-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}


.statsss {
    font-family: "Source Code Pro", sans-serif;
    background-color: #F1F1F1;
    margin: 0;
    padding: 0;
}

.portfolio-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px;
    text-align: center;
}

h2 {
    font-size: 48px;
    color: #333;
    margin-bottom: 20px;
}

h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 2px;
    background-color: red;
    margin: 10px auto;
}

.filter-section {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.filter {
    font-size: 19px;
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.filter.active {
    color: red;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.portfolio-item {
    background-color: #f4f4f4;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: 250px;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 50px 0;
}

.stat-item {
    text-align: center;
}

.stat-icon {
    font-size: 20px;
    color: red;
    margin-bottom: 10px;
}

.stat-number {
    font-size: 20px;
    color: #333;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 15px;
    color: #666;
}


.blogsec {
    font-family: "Source Code Pro", sans-serif;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px;
    text-align: center;
}

h2 {
    font-size: 48px;
    color: #333;
    margin-bottom: 20px;
}

h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 2px;
    background-color: red;
    margin: 10px auto;
}

.blog-grid {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.blog-item {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: left;
}

.blog-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

.video-container {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 10px;
}

.video-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.blog-date {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.blog-title {
    font-size: 25px;
    color: #333;
    margin-bottom: 10px;
}

.blog-excerpt {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.blog-read-more {
    font-size: 14px;
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-read-more:hover {
    color: red;
}


.contact-container {
    max-width: 800px;
    margin: 50px auto;
    text-align: center;
}

.contact-container h1 {
    font-size: 48px;
    color: #333;
    margin-bottom: 20px;
}

.contact-container h1::after {
    content: '';
    display: block;
    width: 100px;
    height: 2px;
    background-color: red;
    margin: 10px auto;
}

.form-group {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: red;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #ff4d4d;
}

.footer {
    background-color: #222;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 50px;
}

.social-icons {
    margin-bottom: 10px;
}

.social-icons i {
    font-size: 24px;
    color: #fff;
    margin: 0 8px;
    transition: color 0.3s ease;
    cursor: pointer;
}

.social-icons i:hover {
    color: red;
}

.footer p {
    font-size: 14px;
    margin: 0;
}

.theme-fair {
    color: red;
    text-decoration: none;
}
