* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
}

h1,
h2,
h3,
h4,
h5,
h6,
.title {
    font-family: 'Playfair Display', serif;
}


/* header section */

header {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1800px;
    padding: 10px 30px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border-radius: 40px;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.logo img {
    height: 50px;
}

.logo {
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
}

nav {
    display: flex;
    align-items: center;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 10px;
    margin: 0;
}

.nav-links li a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 380;
    padding: 16px;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.95rem;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: #ffffff;
    font-weight: 520;
    border-bottom: 2px solid #ffffff;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 5px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.1);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}


/* hero section */

.hero {
    height: 80vh;
    background: linear-gradient(rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.0)),
        url('../img/Blog.jpeg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 300;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}
/* Main Content */
        .main-content {
            padding: 80px 20px;
            max-width: 1400px;
            margin: 0 auto;
        }
/* Innovations Section */
.innovations-section {
    margin-bottom: 100px;
}

.innovations-section h2 {
    font-size: 42px;
    color: #002366;
    margin-bottom: 60px;
    text-align: center;
    font-weight: 700px;
}

.innovations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.innovation-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.innovation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.innovation-card-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.innovation-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.innovation-card:hover .innovation-card-image img {
    transform: scale(1.05);
}

.innovation-badge {
    /* position: absolute; */
    top: 20px;
    left: 20px;
    background: #c0c8ec;
    color: rgb(21, 60, 146);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    width: 90px;
}

.innovation-card-content {
    padding: 30px;
}

.innovation-card h3 {
    font-size: 1.4rem;
    color: #000000;
    margin-bottom: 20px;
    line-height: 1.3;
    margin-top: 5px;
}

.innovation-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.9rem;
    color: #666;
}

.author-avatar {
    width: 30px;
    height: 30px;
    background: #103579;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.8rem;
}

/* footer section */
  /* footer section */
.footer {
    background: linear-gradient(rgba(4, 23, 65, 0.9), rgb(22 66 141 / 90%)), url(../img/Footer.png) center / cover;
    color: white;
    padding: 60px 20px 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr ;
    gap: 40px;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-section p,
.footer-section a {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #ffffff;
    text-decoration: none;
    margin-bottom: 8px;
    display: block;
    max-width: 400px;
}

.footer-section a:hover {
    color: #f8f8f8;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 35px;
    height: 35px;
    background: #2c5282;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.social-links a:hover {
    background: #f6ad55;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    font-size: 0.9rem;
    color: #ffffff;
}


@media (max-width: 768px) {
   
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

.logo{
    /* padding-left: 110px; */
    width: 200px;
}


    .footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #ffffff;
    text-align: center;
}

.footer-section p,
.footer-section a {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #ffffff;
    text-decoration: none;
    margin-bottom: 8px;
    display: block;
    text-align: center;
}

.footer-section a:hover {
    color: #f8f8f8;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    justify-content:center;
}

.social-links a {
    width: 35px;
    height: 35px;
    background: #2c5282;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.social-links a:hover {
    background: #f6ad55;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    font-size: 0.9rem;
    color: #ffffff;
}

}

@media (max-width: 480px) {
    .hero {
    height: 80vh;
    background: linear-gradient(rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.0)), url(../img/research/Blog.jpeg);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    }
    .footer-container {
        grid-template-columns: 1fr;
    }
}

/* Mobile responsive  */
@media (max-width: 1024px) {
    header {
        width: 95%;
        padding: 8px 20px;
    }

    .nav-links {
        gap: 15px;
    }

    .nav-links li a {
        font-size: 0.9rem;
        padding: 6px 12px;
    }

    .innovations-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 10px 20px;
        border-radius: 30px;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(15px);
        flex-direction: column;
        padding: 20px;
        border-radius: 20px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
        margin-top: 10px;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li a {
        color: #333;
        font-weight: 500;
        padding: 12px 0;
        text-align: center;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .nav-links li:last-child a {
        border-bottom: none;
    }

    .nav-links li a:hover,
    .nav-links li a.active {
        color: #f6ad55;
        border-bottom-color: #f6ad55;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .innovations-section h2 {
        font-size: 2rem;
    }

    .innovations-grid {
        grid-template-columns: 1fr;
    }
     
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

.logof{
    /* padding-left: 110px; */
    width: 200px;
}


    .footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #ffffff;
    text-align: center;
}

.footer-section p,
.footer-section a {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #ffffff;
    text-decoration: none;
    margin-bottom: 8px;
    display: block;
    text-align: center;
}

.footer-section a:hover {
    color: #f8f8f8;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    justify-content:center;
}

.social-links a {
    width: 35px;
    height: 35px;
    background: #2c5282;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.social-links a:hover {
    background: #f6ad55;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    font-size: 0.9rem;
    color: #ffffff;
}


}

@media (max-width: 480px) {
    header {
        width: 95%;
        padding: 8px 15px;
        border-radius: 25px;
    }

    .logo {
        font-size: 14px;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .innovations-section h2 {
        font-size: 1.8rem;
    }
}