*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
html,body{
    width: 100%;
    height: 100%;
}






#formMessage{
margin-top:15px;
font-size:14px;
font-weight:500;
}







/* Scroll to top button */
        #scrollTopBtn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: #f6c628;
            color: white;
            border: none;
            border-radius: 50%;
            font-size: 28px;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1000;
        }

        
        #scrollTopBtn.show {
            opacity: 1;
            visibility: visible;
        }

        #scrollTopBtn:hover {
            background: #1c4249;
            transform: translateY(-3px);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
        }

        #scrollTopBtn:active {
            transform: translateY(-1px);
        }



















        
        .fade-in {
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .fade-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .fade-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .fade-right {
            opacity: 0;
            transform: translateX(50px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .fade-right.visible {
            opacity: 1;
            transform: translateX(0);
        }















.btn {
    display: flex;
    align-items: center;
    width: fit-content;
    position: relative;
    padding: 0.8rem 1.8rem;
    border-radius: 10px;
    border: 3px solid #f6c628;
    font-weight: 700;
    font-size: 1rem;
    color: #1c4249; 
    cursor: pointer;
    overflow: hidden; 
    transition: 0.4s ease-out, box-shadow 0.3s ease; 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    outline: none; 
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f6c628; 
    transform: translateX(-100%); 
    transition: transform 0.7s ease-out; 
    z-index: -1; 
}

.btn:hover {
    color: #1c4249;
    border-color: #f6c628; 
    background: transparent;
    box-shadow: 0 6px 20px rgba(246, 198, 40, 0.6);
}

.btn:hover:before {
    transform: translateX(0);
}

.btn i {
    padding-left: 1rem;
}

a {
    text-decoration: none;
}

/* Responsive for mobile */
@media (max-width: 480px) {
    .btn {
        padding: 0.6rem 1.2rem; /* smaller padding */
        font-size: 0.9rem;       /* slightly smaller font */
        border-width: 2px;       /* thinner border for mobile */
    }

    .btn i {
        padding-left: 0.5rem;    /* adjust icon spacing */
    }
}
























/* main page  */

.mainD{
    /* max-width: 1400px;
    margin: 0 auto; */
    height: 70vh;
    display: flex;
    justify-content: center;
    background-color: #1c4249;
    overflow: hidden;
    position: relative;
}

.skewed {
    position: absolute;
    width: 100%;
    height: 30%;
    -webkit-transform-origin: left top;
    transform-origin: left top;
    background:#f6c628 ;
    -webkit-transform: skewY(-41deg);
    transform: skewY(-41deg)
}


.daksha-Data{
    width: 50%;
    height: 100%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 11;
    color: #fff;
}
.daksha-Data h1{
    font-size: 2rem;
    font-weight: 600;
    padding-bottom: 1rem;
}
.daksha-Data h2{
    font-weight: 500;
    color: #f6c628;
    
}
.daksha-Data p{
    font-size: 1rem ;
    text-align: center;
    line-height: 1.4;
    padding-bottom: 1.2rem;
}
.daksh-image{
    width: 50%;
    height: 100%;
}
.daksh-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

        .daksha-Data a {
            display: flex;
            align-items: center;
            position: relative;
            padding: 0.8rem 1.8rem;
            border-radius: 10px;
            border: 3px solid #f6c628;
            font-weight: 700;
            font-size: 1rem;
            color: #fff; 
            background: transparent;
            cursor: pointer;
            overflow: hidden; 
            transition: color 0.4s ease-out, box-shadow 0.3s ease; 
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
            outline: none; 
        }

        .daksha-Data a:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #f6c628; 
            transform: translateX(-100%); 
            transition: transform 0.4s ease-out; 
            z-index: -1; 
        }

        
        .daksha-Data a:hover {
            color: #1c4249;
            border-color: #f6c628; 
            box-shadow: 0 6px 20px rgba(246, 198, 40, 0.6);
        }

        .daksha-Data a:hover:before {
            transform: translateX(0);
        }

        .daksha-Data a i{
            padding-left: 1rem;
        }
        .daksha-Data a{
            text-decoration: none;
        }





/* ---------------- Responsive Styles ---------------- */
@media (min-width: 2560px) {
    .mainD {
        max-width: 2200px;
        height: 50vh;
        margin: 0 auto;
    }

    .daksha-Data h1 {
        font-size: 4rem; /* bigger heading */
    }

    .daksha-Data h2 {
        font-size: 2rem;
    }

    .daksha-Data p {
        font-size: 1.3rem;
        line-height: 1.8;
        max-width: 900px;
    }

    .daksha-Data button {
        font-size: 1.2rem;
        padding: 1rem 2.5rem;
    }

    .daksh-image img {
        max-width: 700px;
    }

    .skewed {
        height: 35%;
        transform: skewY(-38deg); /* slightly less steep for large screens */
    }
}
/* Tablet screens */
@media (max-width: 1024px) {
    .mainD {
        flex-direction: column;
        text-align: center;
        justify-content: center;
        height: auto;
    }
.skewed{
    position: absolute;
    left: 0;
}
    .daksha-Data {
        width: 100%;
        align-items: center;
        text-align: center;
    }

    .daksha-Data h1 {
        font-size: 2.2rem;
    }

    .daksha-Data p {
        font-size: 0.95rem;
    }
    .daksh-image{
        width: 100%;
    }

    .daksh-image img {
        max-width: 400px;
    }
}

/* Mobile screens */
@media (max-width: 768px) {
    .mainD {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1.5rem;
    }
.daksha-Data{
    width: 100%;
}
    .daksha-Data h1 {
        font-size: 1.8rem;
    }

    .daksha-Data h2 {
        font-size: 1rem;
    }

    .daksha-Data p {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .daksha-Data button {
        font-size: 0.9rem;
        padding: 0.5rem 1.5rem;
    }

    .daksh-image img {
        max-width: 320px;
    }

    .skewed {
        height: 13%;
        transform: skewY(-30deg);
    }
}

/* Small mobile screens */
@media (max-width: 480px) {
    .daksha-Data h1 {
        font-size: 1.5rem;
    }

    .daksha-Data h2 {
        font-size: 0.9rem;
    }

    .daksha-Data p {
        font-size: 0.85rem;
    }

    .daksh-image img {
        max-width: 260px;
    }
}




























/* latest marquee */
.latest-section{
    width: 100%;
    height: 8vh;
    border: 3px solid #cea620;
    display: flex;
    margin-bottom: 2rem;
}
.latestD{
    width: 20vw;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f6c628;
    padding: .5rem 1rem;
    font-size: 1.5rem;
    font-weight: 500;
    color: #1c4249;
}
.latest-marq {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}


@media (max-width: 768px){
    .latestD{
        font-size: 1.1rem;
        width: 30vw;
        padding: 0 ;
    }
}

































/* hero section  */

.heroD {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    gap: 2rem;
}

.hero-data {
    width: 100%;
    order: 1;
}

.hero-data h1 {
    
            font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 600;
    letter-spacing: -0.5px;
    padding-bottom: 1rem;
    line-height: 1.2;
}

.hero-data p {
    font-size: 0.95rem;
    width: 100%;
    padding-bottom: 1.5rem;
    line-height: 1.6;
}

.hero-image {
    width: 100%;
    order: 2;
}

.hero-image img {
    object-fit: cover;
    width: 100%;
    height: auto;
    min-height: 250px;
    max-height: 350px;
    box-shadow: 0px 10px 30px #0a0a0a;
    transition: all 0.3s ease-in-out;
    border-radius: 10px;
    border: 3px solid #1c4249;
}

.hero-image img:hover {
    transform: scale(1.03);
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Tablet (768px and up) */
@media (min-width: 768px) {
    .heroD {
        flex-direction: row;
        padding: 2rem;
        gap: 3rem;
        min-height: 80vh;
    }

    .hero-data {
        width: 50%;
        order: 1;
    }

    .hero-data h1 {
        font-size: 2.5rem;
        letter-spacing: -0.75px;
    }

    .hero-data p {
        font-size: 1rem;
        width: 95%;
    }

    .hero-image {
        width: 50%;
        order: 2;
    }

    .hero-image img {
        height: 100%;
        max-height: 500px;
    }
}

/* Laptop (1024px and up) */
@media (min-width: 1024px) {
    .heroD {
        height: 90vh;
        padding: 3rem;
        gap: 4rem;
    }

    .hero-data h1 {
        font-size: 3rem;
        letter-spacing: -1px;
    }

    .hero-data p {
        font-size: 1.1rem;
        width: 90%;
    }

    .hero-image img {
        max-height: 600px;
    }
}

/* Large Desktop (1440px and up) */
@media (min-width: 1440px) {
    .heroD {
        padding: 4rem;
    }

    .hero-data h1 {
        font-size: 3.5rem;
    }

    .hero-data p {
        font-size: 1.15rem;
    }
}

/* 4K Screens (2560px and up) */
@media (min-width: 2560px) {
    .heroD {
        max-width: 2400px;
        padding: 6rem;
        gap: 6rem;
    }

    .hero-data h1 {
        font-size: 4.5rem;
        padding-bottom: 2rem;
    }

    .hero-data p {
        font-size: 1.5rem;
        padding-bottom: 2rem;
        line-height: 1.8;
    }

    .hero-image img {
        max-height: 800px;
        border-radius: 15px;
        border: 4px solid #1c4249;
    }

    .btn {
        padding: 1rem 2rem;
        font-size: 1.2rem;
    }
}


































/* .journal-section */


.section3 {
    max-width: 1400px;
    margin: 0 auto;
    min-height: 100%;
    background-color: #ecebeb;
    padding: 1rem;
    border-radius: 15px;
}

.section3 h1 {
    
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.section3 p {
    padding-bottom: 1rem;
    letter-spacing: 0.5px;
    line-height: 1.5;
    font-weight: 450;
    width: 100%;
}

.journal-section {
    padding-top: 2rem;
    flex-wrap: wrap;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.journal1 {
    width: 100%;
    max-width: 300px;
    padding: 1rem;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.journal1:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.J-image {
    width: 100%;
    height: 250px;
    border-radius: 10px;
    overflow: hidden;
}

.J-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.journal1:hover .J-image img {
    transform: scale(1.05);
}

.J-data {
    padding-top: 1rem;
    text-align: center;
}

.J-data h2 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    text-align: center;
    color: #333;
}

.J-data a {
    text-decoration: none;
    color: #ff7700;
    font-weight: 500;
    transition: color 0.3s ease;
}

.J-data a:hover {
    color: #cc5f00;
}

/* Tablet - 768px and up */
@media (min-width: 768px) {
    .section3 {
        padding: 2rem;
    }

    .section3 h1 {
        font-size: 2.25rem;
    }

    

    .journal-section {
        flex-direction: row;
        justify-content: center;
        gap: 2rem;
        padding-top: 3rem;
    }

    .journal1 {
        width: 40%;
        max-width: none;
    }

    .J-image {
        height: 280px;
    }

    .J-data h2 {
        font-size: 1.25rem;
    }
}

/* Laptop - 1024px and up */
@media (min-width: 1024px) {
    .section3 {
        padding: 2.5rem;
    }

    .section3 h1 {
        font-size: 2.5rem;
    }

    
    .journal1 {
        width: 40%;
        max-width: 500px;
    }

    .J-image {
        height: 300px;
    }

    .J-data h2 {
        font-size: 1.35rem;
    }
}

/* Large Desktop - 1440px and up */
@media (min-width: 1440px) {
    .section3 {
        padding: 3rem;
    }

    .journal1 {
        width: 30%;
    }

    .J-image {
        height: 250px;
    }
}

/* 4K - 2560px and up */
@media (min-width: 2560px) {
    .section3 {
        max-width: 2400px;
        padding: 4rem;
    }

    .section3 h1 {
        font-size: 3.5rem;
    }

    .section3 p {
        font-size: 1.25rem;
        line-height: 1.6;
    }

    .journal-section {
        padding-top: 4rem;
        gap: 4rem;
    }

    .journal1 {
        width: 30%;
        max-width: 700px;
        padding: 2rem;
    }

    .J-image {
        height: 500px;
    }

    .J-data h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .J-data a {
        font-size: 1.15rem;
    }
}






.journal1 h2{
    text-align: center;
}
.bookBtn{
    text-align: center;
    padding-top: 3rem;
}




























/* .publication-section */

 .publication-section {
            position: relative;
            width: 100%;
background-color: #1c4249;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1600' height='800' viewBox='0 0 1600 800'%3E%3Cpath fill='%231E51FF' d='M1102.5 734.8c2.5-1.2 24.8-8.6 25.6-7.5.5.7-3.9 23.8-4.6 24.5C1123.3 752.1 1107.5 739.5 1102.5 734.8zM1226.3 229.1c0-.1-4.9-9.4-7-14.2-.1-.3-.3-1.1-.4-1.6-.1-.4-.3-.7-.6-.9-.3-.2-.6-.1-.8.1l-13.1 12.3c0 0 0 0 0 0-.2.2-.3.5-.4.8 0 .3 0 .7.2 1 .1.1 1.4 2.5 2.1 3.6 2.4 3.7 6.5 12.1 6.5 12.2.2.3.4.5.7.6.3 0 .5-.1.7-.3 0 0 1.8-2.5 2.7-3.6 1.5-1.6 3-3.2 4.6-4.7 1.2-1.2 1.6-1.4 2.1-1.6.5-.3 1.1-.5 2.5-1.9C1226.5 230.4 1226.6 229.6 1226.3 229.1zM33 770.3C33 770.3 33 770.3 33 770.3c0-.7-.5-1.2-1.2-1.2-.1 0-.3 0-.4.1-1.6.2-14.3.1-22.2 0-.3 0-.6.1-.9.4-.2.2-.4.5-.4.9 0 .2 0 4.9.1 5.9l.4 13.6c0 .3.2.6.4.9.2.2.5.3.8.3 0 0 .1 0 .1 0 7.3-.7 14.7-.9 22-.6.3 0 .7-.1.9-.3.2-.2.4-.6.4-.9C32.9 783.3 32.9 776.2 33 770.3z'/%3E%3Cpath fill='%23FF3939' d='M171.1 383.4c1.3-2.5 14.3-22 15.6-21.6.8.3 11.5 21.2 11.5 22.1C198.1 384.2 177.9 384 171.1 383.4zM596.4 711.8c-.1-.1-6.7-8.2-9.7-12.5-.2-.3-.5-1-.7-1.5-.2-.4-.4-.7-.7-.8-.3-.1-.6 0-.8.3L574 712c0 0 0 0 0 0-.2.2-.2.5-.2.9 0 .3.2.7.4.9.1.1 1.8 2.2 2.8 3.1 3.1 3.1 8.8 10.5 8.9 10.6.2.3.5.4.8.4.3 0 .5-.2.6-.5 0 0 1.2-2.8 2-4.1 1.1-1.9 2.3-3.7 3.5-5.5.9-1.4 1.3-1.7 1.7-2 .5-.4 1-.7 2.1-2.4C596.9 713.1 596.8 712.3 596.4 711.8zM727.5 179.9C727.5 179.9 727.5 179.9 727.5 179.9c.6.2 1.3-.2 1.4-.8 0-.1 0-.2 0-.4.2-1.4 2.8-12.6 4.5-19.5.1-.3 0-.6-.2-.8-.2-.3-.5-.4-.8-.5-.2 0-4.7-1.1-5.7-1.3l-13.4-2.7c-.3-.1-.7 0-.9.2-.2.2-.4.4-.5.6 0 0 0 .1 0 .1-.8 6.5-2.2 13.1-3.9 19.4-.1.3 0 .6.2.9.2.3.5.4.8.5C714.8 176.9 721.7 178.5 727.5 179.9zM728.5 178.1c-.1-.1-.2-.2-.4-.2C728.3 177.9 728.4 178 728.5 178.1z'/%3E%3Cg fill='%23FFF'%3E%3Cpath d='M699.6 472.7c-1.5 0-2.8-.8-3.5-2.3-.8-1.9 0-4.2 1.9-5 3.7-1.6 6.8-4.7 8.4-8.5 1.6-3.8 1.7-8.1.2-11.9-.3-.9-.8-1.8-1.2-2.8-.8-1.7-1.8-3.7-2.3-5.9-.9-4.1-.2-8.6 2-12.8 1.7-3.1 4.1-6.1 7.6-9.1 1.6-1.4 4-1.2 5.3.4 1.4 1.6 1.2 4-.4 5.3-2.8 2.5-4.7 4.7-5.9 7-1.4 2.6-1.9 5.3-1.3 7.6.3 1.4 1 2.8 1.7 4.3.5 1.1 1 2.2 1.5 3.3 2.1 5.6 2 12-.3 17.6-2.3 5.5-6.8 10.1-12.3 12.5C700.6 472.6 700.1 472.7 699.6 472.7zM740.4 421.4c1.5-.2 3 .5 3.8 1.9 1.1 1.8.4 4.2-1.4 5.3-3.7 2.1-6.4 5.6-7.6 9.5-1.2 4-.8 8.4 1.1 12.1.4.9 1 1.7 1.6 2.7 1 1.7 2.2 3.5 3 5.7 1.4 4 1.2 8.7-.6 13.2-1.4 3.4-3.5 6.6-6.8 10.1-1.5 1.6-3.9 1.7-5.5.2-1.6-1.4-1.7-3.9-.2-5.4 2.6-2.8 4.3-5.3 5.3-7.7 1.1-2.8 1.3-5.6.5-7.9-.5-1.3-1.3-2.7-2.2-4.1-.6-1-1.3-2.1-1.9-3.2-2.8-5.4-3.4-11.9-1.7-17.8 1.8-5.9 5.8-11 11.2-14C739.4 421.6 739.9 421.4 740.4 421.4zM261.3 590.9c5.7 6.8 9 15.7 9.4 22.4.5 7.3-2.4 16.4-10.2 20.4-3 1.5-6.7 2.2-11.2 2.2-7.9-.1-12.9-2.9-15.4-8.4-2.1-4.7-2.3-11.4 1.8-15.9 3.2-3.5 7.8-4.1 11.2-1.6 1.2.9 1.5 2.7.6 3.9-.9 1.2-2.7 1.5-3.9.6-1.8-1.3-3.6.6-3.8.8-2.4 2.6-2.1 7-.8 9.9 1.5 3.4 4.7 5 10.4 5.1 3.6 0 6.4-.5 8.6-1.6 4.7-2.4 7.7-8.6 7.2-15-.5-7.3-5.3-18.2-13-23.9-4.2-3.1-8.5-4.1-12.9-3.1-3.1.7-6.2 2.4-9.7 5-6.6 5.1-11.7 11.8-14.2 19-2.7 7.7-2.1 15.8 1.9 23.9.7 1.4.1 3.1-1.3 3.7-1.4.7-3.1.1-3.7-1.3-4.6-9.4-5.4-19.2-2.2-28.2 2.9-8.2 8.6-15.9 16.1-21.6 4.1-3.1 8-5.1 11.8-6 6-1.4 12 0 17.5 4C257.6 586.9 259.6 588.8 261.3 590.9z'/%3E%3Ccircle cx='1013.7' cy='153.9' r='7.1'/%3E%3Ccircle cx='1024.3' cy='132.1' r='7.1'/%3E%3Ccircle cx='1037.3' cy='148.9' r='7.1'/%3E%3Cpath d='M1508.7 297.2c-4.8-5.4-9.7-10.8-14.8-16.2 5.6-5.6 11.1-11.5 15.6-18.2 1.2-1.7.7-4.1-1-5.2-1.7-1.2-4.1-.7-5.2 1-4.2 6.2-9.1 11.6-14.5 16.9-4.8-5-9.7-10-14.7-14.9-1.5-1.5-3.9-1.5-5.3 0-1.5 1.5-1.5 3.9 0 5.3 4.9 4.8 9.7 9.8 14.5 14.8-1.1 1.1-2.3 2.2-3.5 3.2-4.1 3.8-8.4 7.8-12.4 12-1.4 1.5-1.4 3.8 0 5.3 0 0 0 0 0 0 1.5 1.4 3.9 1.4 5.3-.1 3.9-4 8.1-7.9 12.1-11.7 1.2-1.1 2.3-2.2 3.5-3.3 4.9 5.3 9.8 10.6 14.6 15.9.1.1.1.1.2.2 1.4 1.4 3.7 1.5 5.2.2C1510 301.2 1510.1 298.8 1508.7 297.2zM327.6 248.6l-.4-2.6c-1.5-11.1-2.2-23.2-2.3-37 0-5.5 0-11.5.2-18.5 0-.7 0-1.5 0-2.3 0-5 0-11.2 3.9-13.5 2.2-1.3 5.1-1 8.5.9 5.7 3.1 13.2 8.7 17.5 14.9 5.5 7.8 7.3 16.9 5 25.7-3.2 12.3-15 31-30 32.1L327.6 248.6zM332.1 179.2c-.2 0-.3 0-.4.1-.1.1-.7.5-1.1 2.7-.3 1.9-.3 4.2-.3 6.3 0 .8 0 1.7 0 2.4-.2 6.9-.2 12.8-.2 18.3.1 12.5.7 23.5 2 33.7 11-2.7 20.4-18.1 23-27.8 1.9-7.2.4-14.8-4.2-21.3l0 0C347 188.1 340 183 335 180.3 333.6 179.5 332.6 179.2 332.1 179.2zM516.3 60.8c-.1 0-.2 0-.4-.1-2.4-.7-4-.9-6.7-.7-.7 0-1.3-.5-1.4-1.2 0-.7.5-1.3 1.2-1.4 3.1-.2 4.9 0 7.6.8.7.2 1.1.9.9 1.6C517.3 60.4 516.8 60.8 516.3 60.8zM506.1 70.5c-.5 0-1-.3-1.2-.8-.8-2.1-1.2-4.3-1.3-6.6 0-.7.5-1.3 1.2-1.3.7 0 1.3.5 1.3 1.2.1 2 .5 3.9 1.1 5.8.2.7-.1 1.4-.8 1.6C506.4 70.5 506.2 70.5 506.1 70.5zM494.1 64.4c-.4 0-.8-.2-1-.5-.4-.6-.3-1.4.2-1.8 1.8-1.4 3.7-2.6 5.8-3.6.6-.3 1.4 0 1.7.6.3.6 0 1.4-.6 1.7-1.9.9-3.7 2-5.3 3.3C494.7 64.3 494.4 64.4 494.1 64.4zM500.5 55.3c-.5 0-.9-.3-1.2-.7-.5-1-1.2-1.9-2.4-3.4-.3-.4-.7-.9-1.1-1.4-.4-.6-.3-1.4.2-1.8.6-.4 1.4-.3 1.8.2.4.5.8 1 1.1 1.4 1.3 1.6 2.1 2.6 2.7 3.9.3.6 0 1.4-.6 1.7C500.9 55.3 500.7 55.3 500.5 55.3zM506.7 55c-.3 0-.5-.1-.8-.2-.6-.4-.7-1.2-.3-1.8 1.2-1.7 2.3-3.4 3.3-5.2.3-.6 1.1-.9 1.7-.5.6.3.9 1.1.5 1.7-1 1.9-2.2 3.8-3.5 5.6C507.4 54.8 507.1 55 506.7 55zM1029.3 382.8c-.1 0-.2 0-.4-.1-2.4-.7-4-.9-6.7-.7-.7 0-1.3-.5-1.4-1.2 0-.7.5-1.3 1.2-1.4 3.1-.2 4.9 0 7.6.8.7.2 1.1.9.9 1.6C1030.3 382.4 1029.8 382.8 1029.3 382.8zM1019.1 392.5c-.5 0-1-.3-1.2-.8-.8-2.1-1.2-4.3-1.3-6.6 0-.7.5-1.3 1.2-1.3.7 0 1.3.5 1.3 1.2.1 2 .5 3.9 1.1 5.8.2.7-.1 1.4-.8 1.6C1019.4 392.5 1019.2 392.5 1019.1 392.5zM1007.1 386.4c-.4 0-.8-.2-1-.5-.4-.6-.3-1.4.2-1.8 1.8-1.4 3.7-2.6 5.8-3.6.6-.3 1.4 0 1.7.6.3.6 0 1.4-.6 1.7-1.9.9-3.7 2-5.3 3.3C1007.7 386.3 1007.4 386.4 1007.1 386.4zM1013.5 377.3c-.5 0-.9-.3-1.2-.7-.5-1-1.2-1.9-2.4-3.4-.3-.4-.7-.9-1.1-1.4-.4-.6-.3-1.4.2-1.8.6-.4 1.4-.3 1.8.2.4.5.8 1 1.1 1.4 1.3 1.6 2.1 2.6 2.7 3.9.3.6 0 1.4-.6 1.7C1013.9 377.3 1013.7 377.3 1013.5 377.3zM1019.7 377c-.3 0-.5-.1-.8-.2-.6-.4-.7-1.2-.3-1.8 1.2-1.7 2.3-3.4 3.3-5.2.3-.6 1.1-.9 1.7-.5.6.3.9 1.1.5 1.7-1 1.9-2.2 3.8-3.5 5.6C1020.4 376.8 1020.1 377 1019.7 377zM1329.7 573.4c-1.4 0-2.9-.2-4.5-.7-8.4-2.7-16.6-12.7-18.7-20-.4-1.4-.7-2.9-.9-4.4-8.1 3.3-15.5 10.6-15.4 21 0 1.5-1.2 2.7-2.7 2.8 0 0 0 0 0 0-1.5 0-2.7-1.2-2.7-2.7-.1-6.7 2.4-12.9 7-18 3.6-4 8.4-7.1 13.7-8.8.5-6.5 3.1-12.9 7.4-17.4 7-7.4 18.2-8.9 27.3-10.1l.7-.1c1.5-.2 2.9.9 3.1 2.3.2 1.5-.9 2.9-2.3 3.1l-.7.1c-8.6 1.2-18.4 2.5-24 8.4-3 3.2-5 7.7-5.7 12.4 7.9-1 17.7 1.3 24.3 5.7 4.3 2.9 7.1 7.8 7.2 12.7.2 4.3-1.7 8.3-5.2 11.1C1335.2 572.4 1332.6 573.4 1329.7 573.4zM1311 546.7c.1 1.5.4 3 .8 4.4 1.7 5.8 8.7 14.2 15.1 16.3 2.8.9 5.1.5 7.2-1.1 2.7-2.1 3.2-4.8 3.1-6.6-.1-3.2-2-6.4-4.8-8.3C1326.7 547.5 1317.7 545.6 1311 546.7z'/%3E%3C/g%3E%3C/svg%3E");
background-attachment: fixed;
            padding: 4rem 2rem;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .publication-section h1 {
            color: rgb(255, 255, 255);
            
            font-size: clamp(1.5rem, 4vw, 2.2rem);
            margin-bottom: 3rem;
            text-transform: uppercase;
            font-weight: 700;
            letter-spacing: 2px;
        }

        .categories-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 2rem;
            max-width: 1400px;
            width: 100%;
            padding: 0 1rem;
        }

        .category-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            cursor: pointer;
            transition: transform 0.3s ease, opacity 0.3s ease;
        }

        .category-card:hover {
            transform: translateY(-10px);
            opacity: 0.9;
        }

        .icon-wrapper {
            width: 100px;
            height: 100px;
            margin-bottom: 1rem;
            position: relative;
        }

        .icon-wrapper svg {
            width: 60%;
            height: 100%;
            filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.847));
        }

        .category-title {
            color: rgb(171, 171, 171);
            font-size: 1rem;
            font-weight: 600;
            line-height: 1.4;
            max-width: 180px;
        }

        /* Tablet */
        @media (min-width: 768px) {
            .publication-section {
                padding: 5rem 3rem;
            }

            .publication-section h1 {
                font-size: 2.5rem;
                margin-bottom: 4rem;
            }

            .categories-container {
                grid-template-columns: repeat(3, 1fr);
                gap: 3rem;
            }

            .icon-wrapper {
                width: 110px;
                height: 110px;
            }

            .category-title {
                font-size: 1.05rem;
            }
        }

        /* Laptop */
        @media (min-width: 1024px) {
            .publication-section {
                padding: 6rem 4rem;
            }

            .publication-section h1 {
                font-size: 2.75rem;
            }

            .categories-container {
                grid-template-columns: repeat(6, 1fr);
                gap: 2.5rem;
            }

            .icon-wrapper {
                width: 120px;
                height: 120px;
            }

            .category-title {
                font-size: 1.1rem;
            }
        }

        /* Large Desktop */
        @media (min-width: 1440px) {
            .publication-section {
                margin-top: 7rem;
                padding: 7rem 5rem;
            }

            .categories-container {
                gap: 3rem;
            }

            .icon-wrapper {
                width: 130px;
                height: 130px;
            }
        }

        /* 4K */
        @media (min-width: 2560px) {
            .publication-section {
                padding: 10rem 8rem;
            }

            .publication-section h1 {
                font-size: 4rem;
                margin-bottom: 6rem;
            }

            .categories-container {
                max-width: 2400px;
                gap: 5rem;
            }

            .icon-wrapper {
                width: 180px;
                height: 180px;
            }

            .category-title {
                font-size: 1.5rem;
                max-width: 250px;
            }
        }





















/* contact section  */


        .contact-section {
            max-width: 1400px;
            margin: 2rem auto;
            padding: 1rem 0.75rem;
            background-color: #f0f0f0;
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
            align-items: start;
        }

        .contact-info {
            padding-right: 0;
        }

        .contact-info h1 {
            font-size: 1.5rem;
            color: #1c4249;
            font-weight: 700;
            margin-bottom: 0.75rem;
            line-height: 1.2;
        }

        .intro-text {
            color: #5a6c7d;
            line-height: 1.5;
            font-size: 0.85rem;
            margin-bottom: 0.65rem;
        }

        .contact-methods {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.25rem;
            margin-top: 1.5rem;
        }

        .contact-method {
            margin-bottom: 0.25rem;
        }

        .contact-method h3 {
            font-size: 1.1rem;
            color: #1c4249;
            margin-bottom: 0.3rem;
            font-weight: 700;
        }

        .contact-method p {
            color: #5a6c7d;
            font-size: 0.85rem;
            line-height: 1.4;
        }

        .contact-method a {
            color: #1c4249;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.85rem;
            word-break: break-word;
        }

        .contact-method a:hover {
            text-decoration: underline;
        }

        .contact-form-wrapper {
            background: linear-gradient(135deg, #d4e7f0 0%, #c8dfe9 100%);
            padding: 1.5rem;
            border-radius: 16px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr;
            gap: 0.75rem;
            margin-bottom: 0.75rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group input,
        .form-group textarea {
            padding: 0.875rem 1rem;
            border: none;
            border-radius: 10px;
            background-color: rgba(255, 255, 255, 0.7);
            font-size: 0.875rem;
            color: #1c4249;
            transition: background-color 0.3s ease;
            font-family: inherit;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: #8fa3b3;
            font-size: 0.875rem;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            background-color: rgba(255, 255, 255, 0.9);
        }

        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }

        .submit-btn {
            width: 100%;
            padding: 0.875rem 1.5rem;
            background: linear-gradient(135deg, #3b8ba5 0%, #2d7089 100%);
            color: white;
            border: none;
            border-radius: 50px;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            margin-top: 0.75rem;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(59, 139, 165, 0.4);
        }

        .submit-btn:active {
            transform: translateY(0);
        }

        /* Small Mobile (375px - 480px) */
        @media (min-width: 375px) {
            .contact-section {
                padding: 1.25rem 0.875rem;
            }

            .contact-info h1 {
                font-size: 1.65rem;
                margin-bottom: 0.875rem;
            }

            .intro-text {
                font-size: 0.9rem;
                margin-bottom: 0.75rem;
            }

            .contact-methods {
                gap: 1.4rem;
                margin-top: 1.75rem;
            }

            .contact-method h3 {
                font-size: 1.2rem;
                margin-bottom: 0.35rem;
            }

            .contact-method p,
            .contact-method a {
                font-size: 0.9rem;
            }

            .contact-form-wrapper {
                padding: 1.75rem;
            }

            .form-group input,
            .form-group textarea {
                padding: 0.95rem 1.125rem;
                font-size: 0.9rem;
            }

            .form-group textarea {
                min-height: 130px;
            }

            .submit-btn {
                padding: 0.95rem 1.75rem;
                font-size: 0.975rem;
            }
        }

        /* Mobile Large (481px - 767px) */
        @media (min-width: 481px) and (max-width: 767px) {
            .contact-section {
                padding: 2rem 1.5rem;
            }

            .contact-info h1 {
                font-size: 2rem;
            }

            .intro-text {
                font-size: 0.95rem;
            }

            .contact-methods {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.75rem;
            }

            .contact-method h3 {
                font-size: 1.35rem;
            }

            .form-group textarea {
                min-height: 150px;
            }
        }

        /* Tablet (768px - 1023px) */
        @media (min-width: 768px) and (max-width: 1023px) {
            .contact-section {
                padding: 3rem 2rem;
            }

            .contact-container {
                grid-template-columns: 1fr 1fr;
                gap: 3rem;
            }

            .contact-info h1 {
                font-size: 2.25rem;
            }

            .intro-text {
                font-size: 0.95rem;
            }

            .contact-methods {
                grid-template-columns: 1fr;
                gap: 2rem;
                margin-top: 2.5rem;
            }

            .contact-method h3 {
                font-size: 1.5rem;
            }

            .contact-method p {
                font-size: 0.95rem;
            }

            .form-row {
                grid-template-columns: 1fr 1fr;
            }

            .form-group.full-width {
                grid-column: 1 / -1;
            }

            .contact-form-wrapper {
                padding: 2.5rem;
            }

            .form-group textarea {
                min-height: 160px;
            }
        }

        /* Laptop (1024px - 1439px) */
        @media (min-width: 1024px) and (max-width: 1439px) {
            .contact-section {
                padding: 4rem 3rem;
            }

            .contact-container {
                grid-template-columns: 1fr 1fr;
                gap: 4rem;
            }

            .contact-info h1 {
                font-size: 2.75rem;
            }

            .intro-text {
                font-size: 1rem;
                margin-bottom: 1rem;
            }

            .contact-methods {
                grid-template-columns: 1fr 1fr;
                gap: 2.5rem;
                margin-top: 3rem;
            }

            .contact-method h3 {
                font-size: 1.65rem;
            }

            .contact-method p {
                font-size: 1rem;
            }

            .contact-form-wrapper {
                padding: 3rem;
            }

            .form-group textarea {
                min-height: 170px;
            }
        }

        /* Large Desktop (1440px - 2559px) */
        @media (min-width: 1440px) and (max-width: 2559px) {
            .contact-section {
                padding: 3rem 4rem;
            }

            .contact-container {
                grid-template-columns: 1fr 1fr;
                gap: 5rem;
            }

            .contact-info h1 {
                font-size: 3rem;
            }

            .intro-text {
                font-size: 1rem;
            }

            .contact-methods {
                grid-template-columns: 1fr 1fr;
                gap: 2.5rem;
                margin-top: 3rem;
            }

            .contact-method h3 {
                font-size: 1.75rem;
            }

            .contact-method p {
                font-size: 1rem;
            }

            .contact-form-wrapper {
                padding: 4rem;
            }

            .form-group textarea {
                min-height: 180px;
            }
        }

        /* 4K (2560px+) */
        @media (min-width: 2560px) {
            .contact-section {
                max-width: 2400px;
                padding: 8rem 6rem;
            }

            .contact-container {
                gap: 6rem;
            }

            .contact-info h1 {
                font-size: 4.5rem;
                margin-bottom: 2rem;
            }

            .intro-text {
                font-size: 1.35rem;
                line-height: 1.8;
                margin-bottom: 1.5rem;
            }

            .contact-methods {
                margin-top: 4rem;
                gap: 3.5rem;
                grid-template-columns: 1fr 1fr;
            }

            .contact-method {
                margin-bottom: 1rem;
            }

            .contact-method h3 {
                font-size: 2.5rem;
                margin-bottom: 0.75rem;
            }

            .contact-method p {
                font-size: 1.35rem;
                line-height: 1.6;
            }

            .contact-form-wrapper {
                padding: 5rem;
                border-radius: 30px;
            }

            .form-row {
                gap: 1.5rem;
                margin-bottom: 1.5rem;
            }

            .form-group input,
            .form-group textarea {
                padding: 1.5rem 2rem;
                font-size: 1.25rem;
                border-radius: 18px;
            }

            .form-group textarea {
                min-height: 280px;
            }

            .submit-btn {
                padding: 1.5rem 3rem;
                font-size: 1.35rem;
                margin-top: 1.5rem;
            }
        }