@import url('https://fonts.googleapis.com/css2?family=Michroma&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
:root{
    --primary-color:rgba(102, 193, 113, 1);
    --primary-color-deep:rgb(4, 180, 118);
    --primary-glass:rgba(102, 193, 113, .3);
    --secondary-color:#A08963;
    --secondary-btn-color:rgb(10, 107, 167);
    --text-color-deep:rgb(0, 0, 0, 1);
    --text-color-light: #555;
    --footer-bg:rgba(1, 135, 88, 1);
    --text-white:rgb(255, 255, 255);
    --extra-large-font: clamp(1.875rem, -2.215909090909091rem + 6.8181818181818175vw, 3.75rem);
    --large-font: clamp(1.25rem, -1.4772727272727275rem + 4.545454545454546vw, 2.5rem);
    --medium-font: clamp(1.125rem, -0.5113636363636362rem + 2.727272727272727vw, 1.875rem);
    --sub-title-font:clamp(1.125rem, 0.8212025316455696rem + 0.6329113924050633vw, 1.375rem);
                --card-radius: 16px;
            --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --para-font:clamp(0.875rem, 0.6875rem + 0.390625vw, 1rem);
}
body{
    padding: 0;
    margin: 0;
    font-family: "Poppins", sans-serif;
    font-size: clamp(0.875rem, 0.6875rem + 0.390625vw, 1rem);
    line-height: 1.6;
}
*,*::after, *::before{
    text-decoration: none;
    box-sizing: border-box;
    list-style: none;
    padding: 0;
}
figure {
    margin: 5px;
    display: inline-block;
}
a{
    color: var(--text-color-deep);
}
section{
    padding: 0 3%;
}
img{
    max-width: 100%;
    width: 100%;
    border-radius: 10px;
    height:100%;
}
.sec-pad{
    padding-top: 60px;
}
.main-title{
    font-size: var(--medium-font);
    text-transform: uppercase;
    /* background: linear-gradient(270deg, #3D39FF 0%, #3C6FFF 51.31%, #4FA9FC 102.62%); */
    background: linear-gradient(90deg, #b5f301, rgb(0 176 21));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block !important;
    margin: 40px 0;
    position: relative;
}
.main-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #b5f301, rgb(0 176 21));
    border-radius: 2px;
}
.content-title{
    font-size: var(--sub-title-font);
}
.btn {
    display: inline-block;
    padding: 12px 35px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: none;
    outline: none;
    text-align: center;
    min-width: 200px;
    z-index: 1;
    cursor: pointer;
}

.btn-normal {
    background-color: var(--secondary-btn-color);
    color: var(--text-white);
}

.btn-normal:hover {
    background-color: var(--footer-bg);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(1, 167, 108, 0.3);
}

.btn-pulse {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 0 10px var(--primary-color), 0 0 20px var(--primary-color-deep);
    overflow: visible;
    animation: pulse 1.6s infinite;
}

.btn-pulse:hover {
    animation: none;
    transform: scale(1.05);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(102, 193, 113, 0.7); }
    70% { box-shadow: 0 0 0 25px rgba(102, 193, 113, 0); }
    100% { box-shadow: 0 0 0 0 rgba(102, 193, 113, 0); }
}
header.header{
    position:sticky;
    top:0;
    right:0;
    left:0;
    z-index:999999;
}
nav {
    background: var(--primary-color);
    padding: 0 3%;
}
nav .logo {
    font-size: var(--medium-font);
    font-weight: 700;
    color: var(--text-white);
    display: flex;
}
.logo img{
    max-width: 200px;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.navbar .menu {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}
.navbar .menu li {
    position: relative;
    margin-left: 20px;
    text-transform: capitalize;
}
.navbar .menu li a {
    text-decoration: none;
    color: var(--text-white);
    padding: 8px 12px;
    display: block;
    border-radius: 8px;
}
.navbar .menu li a:hover {
    background-color: var(--primary-color-deep);
}
.navbar .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #ccc;
    min-width: 150px;
    z-index: 10;
    padding: 0;
    list-style: none;
}
.navbar .dropdown-menu li a {
    padding: 8px 12px;
    color: var(--text-color-deep);
}
.navbar .dropdown:hover .dropdown-menu {
    display: block;
}
.navbar .menu li a.active {
    background-color: var(--primary-color-deep);
}
/* Hamburger Toggle */
.menu-toggle {
    display: none;
    width: 30px;
    height: 24px;
    flex-direction: column;
    justify-content: space-between;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}
.menu-toggle .bar {
    height: 4px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}
.menu-toggle.active .top {
    transform: rotate(45deg) translateY(10px);
}
.menu-toggle.active .middle {
    opacity: 0;
}
.menu-toggle.active .bottom {
    transform: rotate(-45deg) translateY(-10px);
}

/* Blurred backdrop */
.backdrop {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    backdrop-filter: blur(6px);
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.backdrop.show {
    display: block;
    opacity: 1;
}
/* Mobile Responsive Styles */
@media (max-width: 991px) {
    .menu-toggle {
        display: flex;
    }

    .navbar .menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 260px;
        height: 100vh;
        background-color: var(--primary-color);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 20px;
        gap: 16px;
        transition: right 0.3s ease;
        z-index: 1000;
    }

    .navbar .menu.show {
        right: 0;
    }

    .navbar .menu li {
        margin: 0;
        width: 100%;
    }

    .navbar .menu li a {
        width: 100%;
        padding: 12px;
    }
}
/* hero section css start */
#hero {
    height: 90vh;
    /* background-image: url('../images/home-hero.webp'); */
    background-size: cover;
    /* background-position: center; */
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
}
#hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero-content h1.name {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: var(--extra-large-font);
}
.hero-content p.desc {
    margin-top: 10px;
    font-size: var(--medium-font);
}
/* hero section css end */


/* stats section start */
.achievement {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}
.stat-card {
    background: rgb(255, 255, 255);
    backdrop-filter: blur(10px);
    border-radius: 7px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    border-top-left-radius: 30px;
    border-bottom-right-radius: 30px;
}
.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}
.stat-item {
    max-width: 200px;
    border: 1px solid #ffffff52;
    margin: 40px 0;
    box-shadow: 0 10px 36px 5px #ffffff6e;
    border-radius: 10px;
    width: 100%;
}
.stat-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    background: var(--primary-glass);
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--primary-color);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}
.stat-card:hover .stat-icon {
    color: var(--primary-color-deep);
}
.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, #e6ff9f, var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
    line-height: 1;
}
.stat-text {
    line-height: 1.4;
    color: var(--text-color-deep);
}
.divider {
    height: 2px;
    width: 50px;
    background: var(--secondary-color);
    margin: 12px auto;
    border-radius: 5px;
    opacity: 0.7;
    transition: all 0.3s ease;
}
.stat-card:hover .divider {
    width: 70px;
    opacity: 1;
}
/* stats section end */


/* home about section start */
#aboutMe .about {
    display: flex;
    justify-content: center;
    gap: clamp(20px, 4vw, 60px);
}
#aboutMe .about .profile, #aboutMe .about .content{
    width: 50%;
}
#aboutMe .about .content .content-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 2rem;
}
#aboutMe .about .content .content-list li{
    letter-spacing: 2px;
    display: flex;
    align-items: center;
}
#aboutMe .about .content .content-list i{
    font-size: var(--sub-title-font);
    margin-right: 10px;
    color: var(--primary-color);
    padding: 7px;
    background-color: var(--primary-glass);
}
#about .contact-info{
    box-shadow: none;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    padding: 0 0 100px 0;
}
/* home about section end */

/* project section css start */
#projects {
    position: relative;
    /* overflow: hidden; */
}
/* Filter Controls */
.filter-controls {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
}

.filter-btn {
    padding: 0.6rem 1.8rem;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--primary-color);
    transition: all 0.4s ease;
    z-index: -1;
}
.filter-btn:hover, .filter-btn.active {
    color: white;
}
.filter-btn:hover::before, .filter-btn.active::before {
    width: 100%;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.2rem;
    position: relative;
    z-index: 2;
}

.project-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeUp 0.6s forwards;
}

@keyframes fadeUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.project-card:nth-child(2) { animation-delay: 0.1s; }
.project-card:nth-child(3) { animation-delay: 0.2s; }
.project-card:nth-child(4) { animation-delay: 0.3s; }
.project-card:nth-child(5) { animation-delay: 0.4s; }
.project-card:nth-child(6) { animation-delay: 0.5s; }

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(102, 193, 113, 0.25);
}

.project-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    transition: transform 0.5s ease;
    border-radius: 0;
}

.project-card:hover .project-image img {
    transform: scale(1.08);
}

.project-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color-deep);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
}

.project-content {
    padding: 1.8rem;
}

.project-title {
    margin-bottom: 0.8rem;
    margin-top: 0;
    color: var(--text-color-deep);
}

.project-description {
    color: #666;
    margin-bottom: 1rem;
    font-size: 14px;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tag {
    background: rgba(102, 193, 113, 0.15);
    color: var(--primary-color-deep);
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--secondary-btn-color);
    color: white;
    padding: 0.7rem 1.8rem;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.project-link:hover {
    background: var(--primary-color-deep);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(4, 180, 118, 0.3);
}
.bg-element {
    position: absolute;
    z-index: 1;
}

.bg-circle {
    max-width: 400px;
    width: 100%;
    max-height: 400px;
    height: 100%;
    border-radius: 50%;
    background: rgba(102, 193, 113, 0.05);
    top: -100px;
    right: 0px;
    z-index: -1;
}

.bg-square {
    max-width: 250px;
    width: 100%;
    max-height: 250px;
    height: 100%;
    background: rgba(160, 137, 99, 0.05);
    bottom: -50px;
    left: -50px;
    transform: rotate(45deg);
    z-index: -1;
}
/* project section css end */


/* project details css start */
.project-detail {
    margin: 0 auto;
    padding: 4rem 3%;
}

.project-detail .project-hero {
    margin-bottom: 3rem;
}

.project-detail .project-badge {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.project-detail .project-title {
    font-size: var(--large-font);
    margin-bottom: 1rem;
    color: var(--text-color-deep);
    position: relative;
    padding-bottom: 1rem;
    margin-top:1rem;
}

.project-detail .project-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.project-detail .project-subtitle {
    font-size: var(--sub-title-font);
    color: #555;
    margin-bottom: 2rem;
    max-width: 800px;
}

.project-detail .project-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.project-detail .meta-item {
    display:flex;
    align-items: center;
    gap: 0.8rem;
    max-width: 600px;
    width: 100%;
    background: ghostwhite;
    padding: 10px;
}

.project-detail .meta-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-glass);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color-deep);
    font-size: 1.2rem;
}

.project-detail .meta-text h4 {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 0.3rem;
}

.project-detail .meta-text p {
    font-weight: 600;
    font-size: 1.1rem;
}

.project-detail .hero-image {
    height: 600px; /* force exact height */
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden; /* ensures image is cropped */
}
.project-detail .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* crop top/bottom if needed */
    display: block;
}


.project-detail .project-content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 4rem;
}
.project-detail .content-main {
    padding-right: 2rem;
}
.project-detail .section-title {
    font-size: var(--medium-font);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
}
.project-detail .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}
.project-detail .project-description {
    margin-bottom: 3rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.project-detail .project-description p {
    margin-bottom: 1.5rem;
}

.project-detail .highlight-box {
    background: rgba(102, 193, 113, 0.08);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}
.project-detail .methodology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.project-detail .method-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    border-top: 3px solid var(--primary-color);
    transition: transform 0.3s;
}

.project-detail .method-card:hover {
    transform: translateY(-5px);
}

.project-detail .method-card h3 {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.project-detail .method-icon {
    color: var(--primary-color-deep);
    font-size: 1.5rem;
}

/* Gallery */
.project-detail .gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 3rem 0;
}

.project-detail .gallery-item {
    border-radius: 10px;
    overflow: hidden;
    height: 250px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.project-detail .gallery-item:hover {
    transform: scale(1.02);
}

.project-detail .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.project-detail .gallery-item.large {
    grid-column: span 2;
    height: 350px;
}

/* Map Section */
.project-detail .map-container {
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    margin: 3rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.project-detail .map-placeholder {
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 193, 113, 0.1) 0%, rgba(255, 255, 255, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color-deep);
    font-size: 1.2rem;
    font-weight: 600;
}

/* Sidebar */
.project-detail .sidebar-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 2.5rem;

}

.project-detail .sidebar-card h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color-deep);
    font-size: 1.3rem;
}

.project-detail .project-info-list {
    list-style: none;
}

.project-detail .project-info-list li {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.project-detail .project-info-list li:last-child {
    border-bottom: none;
}

.project-detail .info-label {
    font-weight: 500;
    color: #555;
}

.project-detail .info-value {
    font-weight: 600;
    text-align: right;
}

.project-detail .tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1rem;
}

.project-detail .tech-item {
    background: rgba(102, 193, 113, 0.1);
    color: var(--primary-color-deep);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
}

.project-detail .project-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.project-detail .project-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.project-detail .link-details {
    background: var(--primary-color);
    color: white;
}

.project-detail .link-details:hover {
    background: var(--primary-color-deep);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(102, 193, 113, 0.3);
}

.project-detail .link-report {
    background: var(--secondary-color);
    color: white;
}

.project-detail .link-report:hover {
    background: #8c754d;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(160, 137, 99, 0.3);
}

/* Environmental Impact */
.project-detail .impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.project-detail .impact-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    text-align: center;
    transition: transform 0.3s;
}

.project-detail .impact-card:hover {
    transform: translateY(-5px);
}

.impact-icon {
    font-size: 2.5rem;
    color: var(--primary-color-deep);
    margin-bottom: 1rem;
}

.project-detail .impact-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color-deep);
    margin-bottom: 0.5rem;
}

.project-detail .impact-label {
    font-size: 1rem;
    color: #555;
}

@media (max-width: 1024px) {
    .project-detail .project-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .project-detail .content-main {
        padding-right: 0;
    }
    
    .project-detail .sidebar-card {
        position: static;
    }
    
    .project-detail .hero-image {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .project-detail .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .project-detail .gallery-item.large {
        grid-column: span 1;
    }
    
    .project-detail .project-meta {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .project-detail .hero-image {
        height: 300px;
    }
    
    .project-detail .map-container {
        height: 300px;
    }
}

.project-detail .environmental-focus {
    background: rgba(1, 167, 108, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    border-left: 4px solid var(--primary-color);
}
/* project details css end */


/* blog page css start */
/* Blog Content */
        #blog .blog-container {
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 350px;
            gap: 3rem;
        }
        
        #blog .blog-main {
            padding-right: 2rem;
        }
        
        #blog .section-title {
            font-size: var(--medium-font);
            margin-bottom: 2rem;
            position: relative;
            padding-bottom: 0.8rem;
            display: inline-block;
        }
        
        #blog .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--primary-color-deep));
            border-radius: 2px;
        }
        
        /* Featured Post */
        #blog .featured-post {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
            margin-bottom: 3rem;
            display: flex;
            flex-direction: column;
        }
        
        #blog .featured-image {
            height: 400px;
        }
        
        #blog .featured-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        
        #blog .featured-content {
            padding: 2.5rem;
        }
        
        #blog .featured-badge {
            display: inline-block;
            background: var(--primary-color);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            margin-bottom: 1.5rem;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        #blog .featured-title {
            font-size: var(--medium-font);
            margin-bottom: 1.5rem;
            color: var(--text-color-deep);
            line-height: 1.3;
        }
        
        #blog .featured-excerpt {
            color: var(--text-color-light);
            margin-bottom: 2rem;
        }
        
        #blog .featured-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 1.5rem;
            border-top: 1px solid #eee;
        }
        
        #blog .author-info {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        #blog .author-avatar {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            overflow: hidden;
            border: 2px solid var(--primary-glass);
        }
        
        #blog .author-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        #blog .author-details {
            display: flex;
            flex-direction: column;
        }
        
        #blog .author-name {
            font-weight: 600;
        }
        
       #blog  .post-date {
            color: var(--text-color-light);
            font-size: 0.9rem;
        }
        
        #blog .read-time {
            color: var(--text-color-light);
            font-weight: 500;
        }
        
        /* Blog Grid */
        #blog .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 2.5rem;
            margin-bottom: 3rem;
        }
        
        #blog .blog-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        
        #blog .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(102, 193, 113, 0.15);
        }
        
        #blog .blog-image {
            height: 220px;
            overflow: hidden;
        }
        
        #blog .blog-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
            border-radius: 0;
        }
        
        #blog .blog-card:hover .blog-image img {
            transform: scale(1.05);
        }
        
        #blog .blog-content {
            padding: 1.8rem;
        }
        
        #blog .blog-category, #blog-detail .article-category{
            display: inline-block;
            background: var(--primary-glass);
            color: var(--primary-color-deep);
            padding: 0.4rem 1.2rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: .5rem;
        }
        
        #blog .blog-title {
            margin-bottom: 1rem;
            color: var(--text-color-deep);
            line-height: 1.3;
        }
        
        #blog .blog-excerpt {
            color: var(--text-color-light);
            margin-bottom: 1.5rem;
            font-size: 14px;
        }
        
        #blog .blog-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 1rem;
            border-top: 1px solid #eee;
            font-size: 0.9rem;
            color:var(--text-color-light);
        }
        
        #blog .read-more {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--primary-color-deep);
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        #blog .read-more:hover {
            color: var(--secondary-color);
            gap: 0.8rem;
        }
        
        /* Sidebar */
        #blog .sidebar {
            position: sticky;
            top: 100px;
        }
        
        #blog .sidebar-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
            margin-bottom: 2.5rem;
        }
        
       #blog  .sidebar-title {
            font-size: 1.4rem;
            margin-bottom: 1.5rem;
            color: var(--primary-color-deep);
            position: relative;
            padding-bottom: 0.8rem;
        }
        
        #blog .sidebar-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--primary-color);
            border-radius: 2px;
        }
        
        #blog .about-author {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        
        #blog .author-photo, .author-avatar {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            overflow: hidden;
            border: 5px solid var(--primary-glass);
        }
        
        #blog .author-photo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
        #blog .author-name {
            font-size: 1.4rem;
            margin-bottom: 0.5rem;
            color: var(--text-color-deep);
        }
        
        #blog .author-title {
            color: var(--primary-color-deep);
            font-weight: 600;
            margin-bottom: 1rem;
        }
        
        #blog .author-bio {
            margin: 0;
            color: var(--text-color-light);
        }
        
        #blog .social-links {
            display: flex;
            gap: 1rem;
        }
        
        #blog .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: var(--primary-glass);
            border-radius: 50%;
            color: var(--primary-color-deep);
            font-size: 1.1rem;
            transition: all 0.3s;
        }
        
        #blog .social-links a:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-3px);
        }
        
        #blog .popular-posts {
            list-style: none;
        }
        
        #blog .popular-post {
            display: flex;
            gap: 1rem;
            border-bottom: 1px solid #eee;
            transition: all 0.3s;
            align-items: center;
            padding-bottom: 5px;
        }
        
        #blog .popular-post:hover {
            transform: translateX(5px);
        }
        
        #blog .popular-post:last-child {
            border-bottom: none;
        }
        
        #blog .popular-post-image {
            width: 80px;
            height: 80px;
            border-radius: 10px;
            overflow: hidden;
            flex-shrink: 0;
        }
        
        #blog .popular-post-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        #blog .popular-post-content h3 {
            font-size: 14px;
            margin-bottom: 0.5rem;
            line-height: 1.3;
            font-weight: 500;
        }
        
        #blog .popular-post-content .post-date {
            color: #777;
            font-size: 0.85rem;
        }
        
       #blog  .tags-container {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
        }
        
        #blog .tag {
            background: var(--primary-glass);
            color: var(--primary-color-deep);
            padding: 0.5rem 1.2rem;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }
        
        #blog .tag:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-3px);
        }
        
        /* Newsletter */
        #blog .newsletter-form {
            margin-top: 1.5rem;
        }
        
        #blog .newsletter-form input {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
        }
        
       #blog .subscribe-btn {
            background: var(--secondary-btn-color);
            color: var(--text-white);
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        #blog .subscribe-btn:hover {
            background: var(--primary-color-deep);
        }
        
        /* Pagination */
        #blog .pagination {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 3rem;
        }
        
        #blog .page-btn {
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 10px;
            background: white;
            color: var(--text-color-deep);
            font-weight: 600;
            text-decoration: none;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
            transition: all 0.3s;
        }
        
        #blog .page-btn:hover, #blog .page-btn.active {
            background: var(--primary-color);
            color: white;
            transform: translateY(-3px);
        }
        
        /* Responsive Design */
        @media (max-width: 1024px) {
            #blog .blog-container {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            
           #blog  .blog-main {
                padding-right: 0;
            }
        }
        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        #blog .featured-post {
            animation: fadeIn 0.6s ease-out;
        }
        
        #blog .blog-card {
            animation: fadeIn 0.6s ease-out;
        }
        
        .blog-card:nth-child(1) { animation-delay: 0.1s; }
        .blog-card:nth-child(2) { animation-delay: 0.2s; }
        .blog-card:nth-child(3) { animation-delay: 0.3s; }
        .blog-card:nth-child(4) { animation-delay: 0.4s; }
        .blog-card:nth-child(5) { animation-delay: 0.5s; }
        .blog-card:nth-child(6) { animation-delay: 0.6s; }
/* blog page css end */



/* blog details page css start */
#blog-detail .article-header .article-image {
    max-height: 600px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 10px;
}

#blog-detail .article-header .article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

#blog-detail .article-content, #blog-detail .article-title{
    margin-bottom: 10px;
}
#blog-detail .article-title{
    font-size: var(--medium-font);
}
#blog-detail .article-tags{
    margin-bottom: 30px;
}
.comments-section {
    margin-top: 4rem;
    display: flex;
    gap: 40px;
    align-items: center;
}
.comments-section .video{
    max-width: 50%;
    width: 100%;
    margin-top: 40px;
}.comments-section .video .post-video{
    margin-bottom: 30px;
}
.comment-content-container{
    max-width: 50%;
    width: 100%;
}
.comment {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 20px;
    border-radius: 12px;
    background-color: #f8fcfe;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    transition: background-color 0.3s;
}
.comment-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ddd;
}
.comment-content {
    flex: 1;
}
.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}
.comment-author {
    font-weight: 600;
    color: #333;
    font-size: 1rem;
}
.comment-date {
    font-size: 0.85rem;
    color: #888;
}
.comment-content p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444;
}
.customer-comment {
    max-height: 200px;
    overflow-y: auto;
    padding-right: 10px;
    scrollbar-width: thin;
    scrollbar-color: #888 #f1f1f1;
}
.customer-comment::-webkit-scrollbar {
    width: 8px;
}

.customer-comment::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.customer-comment::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 10px;
    border: 2px solid #f1f1f1;
}

.customer-comment::-webkit-scrollbar-thumb:hover {
    background-color: #555;
}

.message-box {
    margin-top: 10px;
}

.message.success {
    color: #155724;
    background-color: #d4edda;
    padding: 8px 12px;
    border-left: 4px solid #28a745;
    border-radius: 4px;
    font-size: 0.9rem;
}

.message.error {
    color: #721c24;
    background-color: #f8d7da;
    padding: 8px 12px;
    border-left: 4px solid #dc3545;
    border-radius: 4px;
    font-size: 0.9rem;
}
.related-posts .blog-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.related-posts .blog-card{
    max-width: 400px;
    width: 100%;
    background-color: rgb(102 193 113 / 10%);
    padding: 20px;
    border-radius: 10px;
}
.related-posts .blog-card img {
    aspect-ratio: 2 / 1;
}
.related-posts .blog-card .blog-title{
    font-size: var(--para-font);
    font-weight: 700;
}
.related-posts .blog-card .blog-meta{
    font-size: 12px;
}
.related-posts .blog-card .btn{
padding: 6px 20px;
    font-size: var(--para-font);
    color: var(--text-color-deep);
    background: white;
    border: 1px solid var(--primary-color);
}
/* .related-posts .blog-card .blog-image img{
    aspect-ratio: 2/1.5;
} */
/* blog details page css end */

/* about page css start */
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {transform: translateY(0) translateX(-50%);}
            40% {transform: translateY(-20px) translateX(-50%);}
            60% {transform: translateY(-10px) translateX(-50%);}
        }
        .hero-section .main-title{
            font-size: var(--extra-large-font);
        }
        .content-title{
            margin-bottom: 15px;
        }
        .hero {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 40px;
            margin-bottom: 60px;
        }
        
        .hero-image {
            flex: 1;
            min-width: 300px;
        }
        
        .about-hero-content {
            flex: 1;
            min-width: 300px;
        }
        
        .hero h1 {
            font-size: var(--large-font);
            margin-bottom: 15px;
            color: var(--text-color-deep);
        }
        
        .hero h2 {
            font-size: var(--large-font);
            font-weight: 500;
            margin-bottom: 20px;
            color: var(--primary-color-deep);
        }
        
        .hero p {
            margin-bottom: 25px;
            color: var(--text-color-light);
        }
        
        .skills {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 20px 0;
        }
        
        .skill {
            background: var(--primary-glass);
            color: var(--primary-color-deep);
            padding: 8px 15px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 500;
        }

        .timeline {
            position: relative;
            max-width: 800px;
            margin-left: 20px;
        }
        
        .timeline::before {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            width: 4px;
            background: var(--primary-glass);
            border-radius: 2px;
        }
        
        .timeline-item {
            position: relative;
            margin-bottom: 40px;
            padding-left: 30px;
        }
        
        .timeline-item::before {
            content: '';
            position: absolute;
            top: 5px;
            left: -8px;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: var(--primary-color);
            border: 4px solid white;
            box-shadow: 0 0 0 3px var(--primary-color);
        }
        
        .timeline-date {
            font-size: 0.9rem;
            color: var(--secondary-color);
            margin-bottom: 5px;
            font-weight: 600;
        }
        
        .timeline-title {
            font-size: var(--medium-font);
            margin-bottom: 8px;
            color: var(--text-color-deep);
        }
        
        .timeline-subtitle {
            color: var(--primary-color-deep);
            margin-bottom: 10px;
            font-weight: 500;
            margin-top: 0;
        }
        .company-logo {
        max-height: 80px;
        height: 100%;
        width: auto;
        vertical-align: middle;
        border-radius: 4px;
    }
    .timeline-subtitle a {
    color: inherit;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.timeline-subtitle a:hover {
    text-decoration: underline;
}


        /* UPDATED EDUCATION STYLES */
            .education-grid {
                display: grid;
                gap: 30px;
                grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
            }
        .education-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
            max-width:600px;
            width:100%;
            flex-wrap:wrap;
        }
        
        .education-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgb(0 158 255 / 30%);
        }
        
        .edu-header {
            background: linear-gradient(120deg, var(--primary-color), var(--primary-color-deep));
            padding: 20px;
            color: white;
            text-align: center;
        }
        .Institute-name{
            font-size: var(--para-font);
        }
        .edu-degree {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .edu-discipline {
            font-size: 1rem;
            opacity: 0.9;
            margin-bottom: 10px;
        }
        
        .edu-content {
            padding: 25px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        
        .edu-detail {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }
        
        .edu-label {
            font-weight: 600;
            color: var(--primary-color-deep);
            min-width: 100px;
        }
        
        .edu-value {
            flex: 1;
        }
        .edu-content .content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .institute-logo {
            max-width: 100px;
            width: 100%;
        }
        .edu-divider {
            height: 1px;
            background: rgba(0,0,0,0.1);
            margin: 15px 0;
        }
        
        .edu-thesis {
            background: var(--primary-glass);
            padding: 15px;
            border-radius: 10px;
            margin-top: 15px;
            font-style: italic;
        }
        
        .edu-thesis strong {
            color: var(--primary-color-deep);
            display: block;
            margin-bottom: 5px;
        }
        
        .contact-info {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }
        
        .contact-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            flex-direction: column;
        }
        .contact-info .social-links a{
            color: var(--primary-color);
            border: 1px solid var(--primary-color);
        }
        .hero-section {
            position: relative;
            height: 100vh;
            min-height: 700px;
            overflow: hidden;
        }
        
.hero-bg {
    position: absolute;
    top: 0%;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-image: url(../images/rajib-formal-bg.jpg); */
    background-size: inherit;
    background-position: top right;
    background-attachment: fixed;
    z-index: -1;
    background-repeat: no-repeat;
}
        
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgb(0 120 80 / 4%);
            z-index: -1;
        }
        
        .hero-subtitle {
            font-size: var(--sub-title-font);
            margin-bottom: 30px;
            max-width: 700px;
        }
        
        .hero-tagline {
            max-width: 700px;
        }
        
        .hero-buttons {
            margin-top: 40px;
            display: flex;
            flex-wrap: wrap;
            max-width: 600px;
            gap: 30px;
        }

        @media (max-width: 768px) {
            .hero {
                flex-direction: column;
            }
            
            .hero-image, .hero-content {
                width: 100%;
            }
            
            .hero-section {
                min-height: 600px;
            }
            
            .hero-buttons {
                flex-direction: column;
                /* align-items: center; */
                gap: 20px;
            }
            
            .education-grid {
                grid-template-columns: 1fr;
            }
        }
/* about page css end */


/* service page css start */
        /* Services Section */
        .services {
            position: relative;
            background: url('../images/leavebg.jpg') center/cover no-repeat;
            background-attachment: fixed;
        }

        .services::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.85);
            z-index: 1;
        }

        .services-container {
            position: relative;
            z-index: 2;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
            justify-items: center;
        }

        .service-card {
            background: white;
            border-radius: var(--card-radius);
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: var(--transition);
            position: relative;
            z-index: 1;
            max-width: 400px;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        }

        .service-icon {
        max-height: 120px;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 5rem;
        background: var(--primary-color);
        padding: 10px;
        }

        .service-content {
            padding: 30px;
        }

        .service-content h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: var(--text-color-deep);
        }

        .service-content p {
            color: var(--text-color-light);
            margin-bottom: 25px;
        }
        /* Process Section */
        .process {
            background: linear-gradient(135deg, #f9fbf8 0%, #eef8ea 100%);
            position: relative;
            overflow: hidden;
            padding-bottom: 60px;
        }

        .process::before {
            content: '';
            position: absolute;
            bottom: -100px;
            right: -100px;
            width: 400px;
            height: 400px;
            background: var(--primary-glass);
            border-radius: 50%;
            z-index: 1;
        }

        .process-container {
            position: relative;
            z-index: 2;
        }

        .steps {
            display: flex;
            flex-wrap: wrap;
            position: relative;
            gap: 30px;
        }

        .steps::before {
            content: '';
            position: absolute;
            top: 60px;
            left: 50px;
            width: calc(100% - 100px);
            height: 3px;
            background: var(--primary-color);
            z-index: 1;
        }

        .step {
            width: calc(25% - 30px);
            position: relative;
            z-index: 2;
        }

        .step-number {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-color-deep);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            position: relative;
        }

        .step-content {
            background: white;
            padding: 25px;
            border-radius: var(--card-radius);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: var(--transition);
        }

        .step-content:hover {
            transform: translateY(-5px);
        }

        .step-content h4 {
            margin-bottom: 15px;
            color: var(--primary-color-deep);
        }

        /* Stats */
        .stats {
            background: var(--primary-color-deep);
            color: white;
            text-align: center;
            padding-top: 40px;
            padding-bottom: 40px;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
        }

        .stat-item h3 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .stat-item p {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        /* CTA Section */
        .cta {
            background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1425913397330-cf8af2ff40a1?auto=format&fit=crop&q=80&w=1000') center/cover no-repeat;
            color: white;
            text-align: center;
            padding: 100px 0;
            position: relative;
        }

        .cta-content {
            max-width: 700px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .cta h2 {
            font-size: var(--large-font);
            margin-bottom: 20px;
        }

        .cta p {
            margin-bottom: 40px;
            font-size: 1.1rem;
            opacity: 0.9;
        }

/* service page css end */


/* contact page css start */
        .contact-container {
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
        }
        
        .contact-info {
            background: rgba(255, 255, 255, 0.85);
            border-radius: var(--card-radius);
            padding: 40px;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        .info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 30px;
            transition: var(--transition);
            align-items: center;
        }
        
        .info-item:hover {
            transform: translateX(5px);
        }
        
        .info-icon {
            width: 50px;
            height: 50px;
            background: var(--primary-glass);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            color: var(--primary-color-deep);
            font-size: 20px;
            transition: var(--transition);
        }
        
        .info-item:hover .info-icon {
            background: var(--primary-color);
            color: white;
            transform: scale(1.1);
        }
        
        .info-content h3 {
            font-size: var(--sub-title-font);
            margin-bottom: 5px;
            color: var(--text-color-deep);
        }
      .info-content p {
            color: var(--text-color-deep);
            margin: 0;
            padding: 5px;
            background: #00ff000a;
            margin-bottom: 7px;
            border-radius: 5px;
        }
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }
        
        .social-icon {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(240, 240, 240, 0.8);
            color: var(--text-color-light);
            font-size: 18px;
            transition: var(--transition);
        }
        
        .social-icon:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-5px);
        }
        
        .contact-form-wrapper {
            background: rgba(255, 255, 255, 0.85);
            border-radius: var(--card-radius);
            padding: 40px;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .form-group {
            position: relative;
            margin-bottom: 30px;
        }
        
        .form-group label {
            position: absolute;
            top: 12px;
            left: 15px;
            color: var(--text-color-light);
            pointer-events: none;
            transition: var(--transition);
            background: white;
            padding: 0 5px;
        }
        
        .form-group input,
        .form-group textarea,
        .comment-form input,
        .comment-form textarea {
            width: 100%;
            padding: 15px;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            font-size: 16px;
            transition: var(--transition);
            background: rgba(255, 255, 255, 0.7);
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            border-color: var(--primary-color);
            outline: none;
            box-shadow: 0 0 0 3px var(--primary-glass);
        }
        
        .form-group input:focus + label,
        .form-group input:not(:placeholder-shown) + label,
        .form-group textarea:focus + label,
        .form-group textarea:not(:placeholder-shown) + label {
            top: -10px;
            left: 10px;
            font-size: 14px;
            color: var(--primary-color);
            background: white;
        }
        
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        
        .submit-btn {
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }
        .contact-map{
            margin-top: 40px;
            height: 400px;
        }
        .contact-map iframe {
            width: 100% !important;
        }
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(102, 193, 113, 0.7); }
            70% { box-shadow: 0 0 0 25px rgba(102, 193, 113, 0); }
            100% { box-shadow: 0 0 0 0 rgba(102, 193, 113, 0); }
        }
        .floating-shapes {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
            z-index: -1;
            overflow: hidden;
        }
        
        .shape {
            position: absolute;
            border-radius: 50%;
            opacity: 0.15;
            animation: float 15s infinite linear;
        }
        
        .shape-1 {
            width: 150px;
            height: 150px;
            background: var(--primary-color);
            top: 10%;
            left: 5%;
            animation-duration: 20s;
        }
        
        .shape-2 {
            width: 100px;
            height: 100px;
            background: var(--secondary-color);
            top: 70%;
            left: 80%;
            animation-duration: 25s;
            animation-delay: -5s;
        }
        
        .shape-3 {
            width: 70px;
            height: 70px;
            background: var(--primary-color-deep);
            top: 40%;
            left: 90%;
            animation-duration: 15s;
            animation-delay: -10s;
        }
        
        @keyframes float {
            0% {
                transform: translate(0, 0) rotate(0deg);
            }
            25% {
                transform: translate(20px, 30px) rotate(90deg);
            }
            50% {
                transform: translate(0, 60px) rotate(180deg);
            }
            75% {
                transform: translate(-20px, 30px) rotate(270deg);
            }
            100% {
                transform: translate(0, 0) rotate(360deg);
            }
        }
/* contact page css end */


/* project page css start */
#project-page{
    position: relative;
}
/* project page css end */



/*404 error page style*/
.error-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.error-animation {
    position: relative;
    width: 300px;
    height: 300px;
    margin-bottom: 40px;
}

.error-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-glass), transparent 70%);
    box-shadow: 0 10px 30px rgba(102, 193, 113, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 6s ease-in-out infinite;
}

.error-number {
    font-size: 8rem;
    font-weight: 800;
    color: var(--primary-color-deep);
    text-shadow: 0 5px 15px rgba(4, 180, 118, 0.3);
    line-height: 1;
}

.error-icon {
    position: absolute;
    font-size: 3rem;
    color: var(--primary-color-deep);
    animation: bounce 2s ease-in-out infinite;
}

.error-icon:nth-child(1) {
    top: 20px;
    left: 30px;
    animation-delay: 0s;
}

.error-icon:nth-child(2) {
    top: 40px;
    right: 50px;
    animation-delay: 0.3s;
}

.error-icon:nth-child(3) {
    bottom: 60px;
    left: 60px;
    animation-delay: 0.6s;
}

.error-icon:nth-child(4) {
    bottom: 30px;
    right: 30px;
    animation-delay: 0.9s;
}

.error-content h1 {
    font-size: var(--large-font);
    color: var(--text-color-deep);
    margin-bottom: 20px;
    font-weight: 700;
}

.error-content p {
    font-size: var(--para-font);
    margin-bottom: 30px;
    color: var(--text-color-light);
    max-width: 600px;
    line-height: 1.8;
}

@keyframes float {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
        box-shadow: 0 5px 15px rgba(102, 193, 113, 0.2);
    }
    50% {
        transform: translate(-50%, -55%) rotate(5deg);
        box-shadow: 0 15px 30px rgba(102, 193, 113, 0.3);
    }
    100% {
        transform: translate(-50%, -50%) rotate(0deg);
        box-shadow: 0 5px 15px rgba(102, 193, 113, 0.2);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@media (max-width: 768px) {
    .error-animation {
        width: 220px;
        height: 220px;
    }
    
    .error-circle {
        width: 180px;
        height: 180px;
    }
    
    .error-number {
        font-size: 6rem;
    }
    
    .error-icon {
        font-size: 2rem;
    }

}


/* Looking service start */
.other-service-container-buttons{
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}
.other-service {
    display: flex;
    /* align-items: center; */
    gap: 30px;
    margin-bottom: 30px;
}
.other-service .profile{
    max-width: 40%;
}
.other-service .profile img{
    aspect-ratio: 2/1;
}
.other-service .content{
    max-width: 60%;
}
/* Looking service end */

/* footer css start */
.footer {
    color: var(--text-white);
    padding: 4rem 0 0;
    margin-top: 3rem;
    background-image: url('../images/bg4.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 0;
    overflow: hidden;
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(1 135 88 / 90%);
    z-index: 1;
}

/* Make sure footer content stays above the overlay */
.footer > * {
    position: relative;
    z-index: 2;
}
.footer-container {
    margin: 0 auto;
    padding: 0 3%;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-col {
    padding: 0 1rem;
}

.footer-title {
    font-size: var(--sub-title-font);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--secondary-color);
}

.footer-col p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.8rem;
}

.footer-links a,
.footer-contact a {
    color: var(--text-white);
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    transform: translateX(5px);
}

.footer-contact i {
    margin-right: 0.8rem;
    width: 20px;
    text-align: center;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-white);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--secondary-btn-color);
    transform: translateY(-3px);
}

.newsletter-form {
    display: flex;
    margin-top: 1.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: none;
    border-radius: 4px 0 0 4px;
    font-size: 0.9rem;
}

.newsletter-form button {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    padding: 0 1.2rem;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background-color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}
.footer-bottom p {
    font-size: 12px;
    word-spacing: 2px;
    letter-spacing: 1px;
}
.footer-bottom a{
    color: white;
}
/* footer css end */