:root {
    /* Color Scheme */
    --primary-color: #2b2d42;    /* Deep navy blue */
    --secondary-color: #8d5524;  /* Warm brown */
    --accent-color: #c06c84;     /* Dusty pink */
    --highlight-color: #f4a261;   /* Warm orange */
    --light-bg: #edf2f4;         /* Light grey */
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #fff;
    color: #0a2259; /* Navy blue */
    font-family: 'Poppins', Arial, sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}



/* Navigation Bar */
.navbar {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar.scrolled {
    background: rgba(228, 228, 235, 0.575);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 70px;
}

.logo {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
}

.logo img {
    height: 80px;      /* Increase logo size */
    max-width: 180px;  /* Prevents logo from being too wide */
    width: auto;
    display: block;
    transition: height 0.2s;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 32px;
    height: 32px;
    justify-content: center;
    align-items: center;
    z-index: 1001;
}

.hamburger span {
    display: block;
    height: 4px;
    width: 26px;
    background: #0a2259;
    margin: 4px 0;
    border-radius: 2px;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.nav-links {
    display: flex;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    color: #0a2259;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.2s;
}

/* Default nav link color */
.nav-links li a {
    color: #0a2259;
    transition: color 0.3s;
}

/* When scrolled, make nav links white */
.navbar.scrolled .nav-links li a {
    color: #fff;
}

.nav-links a:hover {
    color: #1a3a7c;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--highlight-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 0 2rem;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 48px 16px;
}

.hero-content h1 {
    font-size: 3.8rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.28);
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: backwards;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.28);
}

/* Reduce font size of hero content text on mobile */
@media (min-width: 400px) and (max-width: 900px) {
    .hero-content h1 {
        font-size: 25px;
    }
    .hero-content p {
        font-size: 1rem;
    }
}

@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 1.1rem;
    }
    .hero-content p {
        font-size: 0.9rem;
    }
}

/* Hero Carousel Styles */
.hero-carousel {
  width: 100vw;
  height: 100vh;
  min-height: 360px;
  max-height: 100vh;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  z-index: 1;
}
.hero-carousel .carousel-slide.fullscreen {
  width: 100vw;
  height: 100vh;
  min-height: 340px;
  max-height: 100vh;
  position: absolute;
  top: 0; left: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s cubic-bezier(.77,0,.18,1);
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
  background: #111;
  z-index: 1;
}
.hero-carousel .carousel-slide.fullscreen.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}
.hero-carousel .carousel-slide.fullscreen img {
  width: 100vw;
  max-width: 100vw;
  height: 100vh;
  min-height: 320px;
  max-height: 100vh;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.hero-carousel .carousel-gradient {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg,rgba(15,24,54,0.60) 0%,rgba(20,20,34,0.72) 75%,rgba(24, 37, 71,0.93) 100%);
  z-index: 3;
  pointer-events: none;
}
.hero-carousel .carousel-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  z-index: 5;
  color: #fff;
  text-align: center;
  width: 94vw;
  max-width: 690px;
  padding: 1.8rem 1.7rem 2.1rem 1.7rem;
  /* Enhanced Design */
  background: rgba(12, 23, 40, 0.43);
  backdrop-filter: blur(6px) saturate(150%);
  border-radius: 1.4rem;
  box-shadow: 0 4px 30px rgba(0,0,0,0.14), 0 2.5px 8px #18254766;
  border: 1.5px solid rgba(44, 56, 85, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .8rem;
  transition: background 0.2s;
}

.hero-carousel .carousel-caption h1 {
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 0.35em;
  color: #fff;
  letter-spacing: -1.2px;
  line-height: 1.13;
  text-shadow: 0 2.5px 10px #101e2c88, 0 2px 12px #002;
}

.hero-carousel .carousel-caption p {
  font-size: 1.05rem;
  color: #e0e8f1;
  font-weight: 400;
  margin: 0 auto;
  line-height: 1.6;
  text-shadow: 0 2px 7px #101e2c33;
}

@media (max-width: 900px) {
  .hero-carousel .carousel-caption {
    max-width: 96vw;
    padding: 1.1rem .6rem 1.4rem .6rem;
  }
  .hero-carousel .carousel-caption h1 {
    font-size: 1.4rem;
  }
  .hero-carousel .carousel-caption p {
    font-size: .98rem;
  }
}

@media (max-width: 600px) {
  .hero-carousel .carousel-caption {
    padding: .6rem .18rem 1.09rem .18rem;
    gap: .6rem;
    max-width: 99vw;
  }
  .hero-carousel .carousel-caption h1 {
    font-size: 1.08rem;
    margin-bottom: .23em;
  }
  .hero-carousel .carousel-caption p {
    font-size: .91rem;
  }
}

@media (max-width: 420px) {
  .hero-carousel .carousel-caption {
    padding: .36rem .06rem .8rem .06rem;
    border-radius: .66rem;
    gap: .40rem;
  }
  .hero-carousel .carousel-caption h1 {
    font-size: .90rem;
  }
  .hero-carousel .carousel-caption p {
    font-size: .77rem;
  }
}
.hero-carousel .carousel-caption h1 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 13px 0;
  color: #fff;
  text-shadow: 0 2px 8px #000a,0 2px 24px #002;
}
.hero-carousel .carousel-caption p {
  font-size: 1.29rem;
  font-weight: 400;
  color: #f3f3f3;
  text-shadow: 0 2px 8px #000a;
  margin: 0;
}


@media (max-width: 900px) {
  .hero-carousel, .hero-carousel .carousel-slide.fullscreen {
    height: 60vw;
    min-height: 180px;
    max-height: 80vw;
  }
  .hero-carousel .carousel-slide.fullscreen img {
    height: 60vw;
    min-height: 180px;
    max-height: 80vw;
  }
  .hero-carousel .carousel-caption h1 {
    font-size: 1.55rem;
  }
  .hero-carousel .carousel-caption p {
    font-size: 1.03rem;
  }
  .hero-carousel .carousel-dots {
    bottom: 14px;
    gap: 7px;
  }
  .hero-carousel .carousel-caption {
    padding: 1rem 0.25rem 1.3rem 0.25rem;
  }
}
@media (max-width: 700px) {
  .hero-carousel, .hero-carousel .carousel-slide.fullscreen {
    min-height: 120px;
    height: 55vw;
    max-height: 65vw;
  }
  .hero-carousel .carousel-slide.fullscreen img {
    min-height: 120px;
    height: 55vw;
    max-height: 65vw;
  }
}
@media (max-width: 450px) {
  .hero-carousel, .hero-carousel .carousel-slide.fullscreen {
    min-height: 72px;
    height: 44vw;
    max-height: 52vw;
  }
  .hero-carousel .carousel-slide.fullscreen img {
    min-height: 72px;
    height: 44vw;
    max-height: 52vw;
    width: 100vw;
    object-fit: cover;
  }
  .hero-carousel .carousel-caption h1 {
    font-size: 0.98rem;
    margin-bottom: 5px;
    word-break: break-word;
  }
  .hero-carousel .carousel-caption p {
    font-size: 0.86rem;
  }
  .hero-carousel .carousel-caption {
    padding: 0.13rem 0.05rem;
    border-radius: 0.52rem;
    gap: 0.33rem;
    max-width: 98vw;
    font-size: 0.78rem;
  }
  .hero-carousel .carousel-dots span {
    width: 14px;
    height: 14px;
    margin: 0 2px;
  }
}

@media (max-width: 370px) {
  .hero-carousel, .hero-carousel .carousel-slide.fullscreen {
    min-height: 50px;
    height: 41vw;
    max-height: 48vw;
  }
  .hero-carousel .carousel-caption h1,
  .hero-carousel .carousel-caption p {
    font-size: 0.68rem;
  }
  .hero-carousel .carousel-caption {
    padding: 0.07rem 0.01rem;
    border-radius: 0.3rem;
  }
  .hero-carousel .carousel-dots span {
    width: 11px;
    height: 11px;
  }
}

.hero-carousel .carousel-slide.fullscreen img,
.hero-carousel img {
  max-width: 100vw;
  width: 100vw;
  height: auto;
  object-fit: cover;
  display: block;
}
 
.hero-carousel .carousel-slide.fullscreen {
  width: 100vw;
  height: 100vh;
  min-height: 340px;
  max-height: 100vh;
  position: absolute;
  top: 0; left: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s cubic-bezier(.77,0,.18,1);
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
  background: #111;
  z-index: 1;
}
.hero-carousel .carousel-slide.fullscreen.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}
.hero-carousel .carousel-slide.fullscreen img {
  width: 100vw;
  max-width: 100vw;
  height: 100vh;
  min-height: 320px;
  max-height: 100vh;
  object-fit: cover;
  object-position: center center;
  display: block;
}


@media (max-width: 900px) {
  .hero-carousel, .hero-carousel .carousel-slide.fullscreen {
    height: 60vw;
    min-height: 180px;
    max-height: 80vw;
  }
  .hero-carousel .carousel-slide.fullscreen img {
    height: 60vw;
    min-height: 180px;
    max-height: 80vw;
  }
  .hero-carousel .carousel-dots {
    bottom: 14px;
    gap: 7px;
  }
}
@media (max-width: 700px) {
  .hero-carousel, .hero-carousel .carousel-slide.fullscreen {
    min-height: 120px;
    height: 55vw;
    max-height: 65vw;
  }
  .hero-carousel .carousel-slide.fullscreen img {
    min-height: 120px;
    height: 55vw;
    max-height: 65vw;
  }
}
@media (max-width: 450px) {
  .hero-carousel, .hero-carousel .carousel-slide.fullscreen {
    min-height: 84px;
    height: 48vw;
    max-height: 54vw;
  }
  .hero-carousel .carousel-slide.fullscreen img {
    min-height: 84px;
    height: 48vw;
    max-height: 54vw;
  }
}


/* About Us Section */
.about {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Add to your style.css */

/* Responsive styles for about-hero section */
/* Add to your style.css or inside a <style> tag */

.about-hero-image {
    position: relative;
    width: 100%;
    height: 340px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,34,89,0.65) 0%, rgba(10,34,89,0.35) 60%, rgba(10,34,89,0.85) 100%);
    z-index: 1;
}

.about-hero-content {
    position: absolute;
    z-index: 2;
    width: 100%;
    text-align: center;
    color: #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0 16px;
}

.about-hero-content h1,
.about-hero-content p {
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.28);
    margin: 0;
}

/* Responsive adjustments for mobile devices */
@media (max-width: 600px) {
    .about-hero-image {
        height: 180px;
    }
    .about-hero-content h1 {
        font-size: 1.2rem;
    }
    .about-hero-content p {
        font-size: 0.97rem;
    }
}

@media (max-width: 400px) {
    .about-hero-image {
        height: 120px;
    }
    .about-hero-content {
        padding: 0 6px;
    }
    .about-hero-content h1 {
        font-size: 1rem;
    }
    .about-hero-content p {
        font-size: 0.89rem;
    }
}
.about h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.about-intro {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 3rem;
}

/* About Hero Section */
.about-hero {
    background: linear-gradient(135deg, #0a2259 70%, #f4a261 100%);
    color: #fff;
    padding: 60px 0 40px 0;
    text-align: center;
}
.about-hero-content {
    max-width: 700px;
    margin: 0 auto;
}
.about-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}
.about-hero p {
    font-size: 1.2rem;
    margin: 0 auto;
}

/* Magazine Hero Section */
.magazine-hero {
    background: linear-gradient(135deg, #0a2259 70%, #f4a261 100%);
    color: #fff;
    padding: 60px 0 40px 0;
    height: 500px;
    text-align: center;
}
.magazine-hero-content {
    max-width: 900px;
    margin: 0 auto;
}
.magazine-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}
.magazine-hero p {
    font-size: 1.2rem;
    margin: 0 auto;
}

/* Awards Hero Section */
.awards-hero {
    background: linear-gradient(135deg, #0a2259 70%, #f4a261 100%);
    color: #fff;
    padding: 60px 0 40px 0;
    text-align: center;
}
.awards-hero-content {
    max-width: 700px;
    margin: 0 auto;
}
.awards-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}
.awards-hero p {
    font-size: 1.2rem;
    margin: 0 auto;
}

/* Blog Hero Section */
.blog-hero {
    background: linear-gradient(135deg, #0a2259 70%, #f4a261 100%);
    color: #fff;
    padding: 60px 0 40px 0;
    text-align: center;
}
.blog-hero-content {
    max-width: 700px;
    margin: 0 auto;
}
.blog-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}
.blog-hero p {
    font-size: 1.2rem;
    margin: 0 auto;
}

/* Events Hero Section */
.events-hero {
    background: linear-gradient(135deg, #0a2259 70%, #f4a261 100%);
    color: #fff;
    padding: 60px 0 40px 0;
    text-align: center;
}
.events-hero-content {
    max-width: 700px;
    margin: 0 auto;
}
.events-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}
.events-hero p {
    font-size: 1.2rem;
    margin: 0 auto;
}

/* Vision and Mission Sections */
.vision-mission {
    margin-bottom: 3rem;
}

.vision, .mission {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    background: var(-- fuite);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.vision:hover, .mission:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.vision .text-content, .mission .text-content {
    flex: 1;
}

.vision .image-content, .mission .image-content {
    flex: 1;
}

.vision .image-content {
    order: 2; /* Image on the right for Vision */
}

.mission .image-content {
    order: -1; /* Image on the left for Mission */
}

.vision h3, .mission h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.vision p, .mission p {
    color: #000;
    font-size: 17px;
    text-align: justify;
    font-family: 'Poppins', sans-serif;
}

.vision img, .mission img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    animation: bounce 5s infinite ease-in-out;
}

/* Bouncing Animation */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* Responsive: stack text above image on mobile */
@media (max-width: 600px) {
    .vision, .mission {
        flex-direction: column;
        text-align: center;
    }
    .vision .text-content,
    .mission .text-content {
        order: 1;
    }
    .vision .image-content,
    .mission .image-content {
        order: 2;
    }
}

/* Extra: for very small screens (400px and below) */
@media (max-width: 400px) {
    .vision, .mission {
        gap: 10px;
        padding: 8px 2px;
    }
    .vision .image-content img,
    .mission .image-content img {
        max-width: 190px;
    }
}

/* Mission & Vision Section */
.about-mission-vision {
    background: #f8f9fa;
    padding: 40px 0;
}
.about-mv-container {
    display: flex;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}
.about-mv-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(10,34,89,0.06);
    padding: 32px 24px;
    flex: 1 1 320px;
    min-width: 260px;
    max-width: 400px;
    margin: 8px 0;
    text-align: center;
}
.about-mv-card h2 {
    color: #0a2259;
    margin-bottom: 12px;
}
.about-mv-card p {
    color: #333;
}

/* Services Section */
.services {
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.services h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

/* Services Grid Layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 32px;
}

/* Service Card Base Styles */
.service-card {
    position: relative;
    min-height: 320px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 32px 24px 24px 24px;
    color: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    background-size: cover;
    background-position: center;
    overflow: hidden;
    transition: transform 0.2s;
    z-index: 1;
    text-align: center;
}

.service-card h3,
.service-card p {
    color: #fff;
    z-index: 2;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(35, 67, 139, 0.85) 0%, rgba(10, 34, 89, 0.5) 100%);
    z-index: 1;
    pointer-events: none;
    border-radius: 18px;
}

.service-card > * {
    position: relative;
    z-index: 2;
}

/* Individual Background Images */
.service-card.publishing {
    background-image: url('./images/publishing.jpg');
}
.service-card.advertising {
    background-image: url('./images/Advertising.jpg');
}
.service-card.consultancy {
    background-image: url('./images/consultancy.jpg');
}
.service-card.broadcasting {
    background-image: url('./images/broadcasting.jpg');
}

/* Responsive adjustments */
@media (max-width: 700px) {
    .service-card {
        min-height: 220px;
        padding: 20px 12px 16px 12px;
    }
}

/* Team Section */
.about-team {
    padding: 50px 0 40px 0;
    background: #fff;
    text-align: center;
}
.about-team h2 {
    color: #0a2259;
    margin-bottom: 32px;
}
.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    align-items: stretch;
    max-width: 1100px;
    margin: 0 auto;
}

.team-member {
    background: #f8f9fa;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(6, 21, 56, 0.274);
    padding: 0 0 18px 0; /* Remove top padding so image touches the top */
    width: 240px;
    min-height: 330px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    transition: transform 0.2s;
    position: relative;
    overflow: hidden; /* Ensures image stays within card */
}

.team-member:hover {
    transform: translateY(-6px) scale(1.03);
}

.team-member img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    margin-bottom: 10px;
    border-radius: 0;
    display: block;
    /* Ensures the image fills the top of the card and does not stretch */
}

.team-member h3 {
    margin: 10px 0 4px 0;
    color: #0a2259;
    font-size: 1.1rem;
}

.team-role {
    color: #f4a261;
    font-weight: 500;
    margin-bottom: 8px;
}

.team-member p {
    color: #333;
    font-size: 0.98rem;
    margin-bottom: 0;
}

@media (max-width: 900px) {
    .team-grid {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    .team-member {
        width: 90vw;
        max-width: 320px;
        min-height: 370px;
        padding: 20px 8px 16px 8px;
    }
    .team-member img {
        width: 110px;
        height: 130px;
    }
}

@media (max-width: 400px) {
    .team-grid {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    .team-member {
        width: 90vw;
        max-width: 320px;
        min-height: 250px;
        padding: 20px 8px 16px 8px;
    }
    .team-member img {
        width: 110px;
        height: 130px;
    }
}


/* Magazines Section */
.magazines {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.magazines h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.magazines > p {
    max-width: 600px;
    margin: 0 auto 28px auto;
    color: #23395d;
    font-size: 1.50rem;
    line-height: 1.7;
    background: #f5f8fd;
    border-left: 4px solid #1a73e8;
    border-radius: 8px;
    padding: 14px 24px;
    box-shadow: 0 2px 12px rgba(10,34,89,0.07);
    font-family: 'Poppins', Arial, sans-serif;
    font-weight: 500;
    letter-spacing: 0.01em;
    text-align: center;
}

@media (max-width: 600px) {
    .magazines > p {
        padding: 10px 8px;
        font-size: 1rem;
        border-left-width: 3px;
    }
}

.magazines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    justify-items: center;
}

.magazine-item {
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.magazine-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.magazine-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.see-more-container {
    text-align: center;
    margin-top: 3rem;
}

.see-more-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.see-more-btn:hover {
    background: var(--highlight-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Contact CTA Section */
.about-contact-cta {
    background: linear-gradient(135deg, #0a2259 70%, #f4a261 100%);
    color: #fff;
    text-align: center;
    padding: 48px 12px 56px 12px;
}
.about-contact-cta h2 {
    font-size: 2rem;
    margin-bottom: 12px;
}
.about-contact-cta p {
    font-size: 1.1rem;
    margin-bottom: 24px;
}
.cta-btn {
    background: #fff;
    color: #0a2259;
    padding: 12px 32px;
    border-radius: 24px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
    transition: background 0.2s, color 0.2s;
    box-shadow: 0 2px 8px rgba(10,34,89,0.08);
}
.cta-btn:hover {
    background: #f4a261;
    color: #fff;
}

/* Footer */
/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 3rem 2rem 1rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-section p, .footer-section a {
    color: var(--white);
    font-size: 1rem;
    line-height: 1.8;
    text-decoration: none;
}

.footer-section a:hover {
    color: var(--highlight-color);
    text-decoration: underline;
}

/* Quick Links */
.quick-links ul {
    list-style: none;
}

.quick-links li {
    margin-bottom: 0.5rem;
}

/* Magazine Gallery */
.gallery-grid {
    display: flex;
    grid-template-columns: repeat(1fr, 1fr, 1fr, 1fr);
    gap: 4px;
}

.gallery-grid img {
    width: 50px;
    height: 50px;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    font-size: 0.9rem;
    color: var(--white);
}

/* Responsive Design for Footer */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .footer-section h3 {
        font-size: 1.4rem;
    }

    .footer-section p, .footer-section a {
        font-size: 0.95rem;
    }

    .gallery-grid {
        gap: 0.75rem;
    }
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-section {
        text-align: center;
    }

    .quick-links ul {
        display: inline-block;
        text-align: center;
    }

    .footer-section p, .footer-section a {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 2rem 1rem 1rem;
    }

    .footer-container {
        gap: 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 300px;
    }

    .footer-section h3 {
        font-size: 1.2rem;
    }

    .footer-section p, .footer-section a {
        font-size: 0.85rem;
    }

    .footer-bottom p {
        font-size: 0.8rem;
    }
}

@media (max-width: 360px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 250px;
        gap: 0.5rem;
    }

    .footer-section h3 {
        font-size: 1.1rem;
    }

    .footer-section p, .footer-section a {
        font-size: 0.8rem;
    }

    .footer-bottom p {
        font-size: 0.75rem;
    }
}


/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .vision, .mission {
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .vision img, .mission img {
        max-width: 300px;
    }

    .vision h3, .mission h3 {
        font-size: 1.6rem;
    }

    .vision p, .mission p {
        font-size: 0.95rem;
    }
}

@media (min-width: 400px) and (max-width: 780px) {
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background-color: var(--primary-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding-top: 80px;
        height: 100vh;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 1.5rem 0;
    }
    
    .nav-links a {
        font-size: 1.1rem;
        padding: 0.5rem 1rem;
        display: block;
    }
    
    .nav-links a::after {
        display: none;
    }
    
    .navbar {
        padding: 1rem;
    }
    
    .logo {
        font-size: 1.3rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .about h2 {
        font-size: 2rem;
    }

    .about-intro {
        font-size: 1rem;
    }

    .vision, .mission {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1rem;
    }

    .vision .image-content, .mission .image-content {
        order: 0; /* Reset order for mobile */
        margin-top: 1rem;
    }

    .vision img, .mission img {
        max-width: 250px;
        margin: 0 auto;
    }

    .vision h3, .mission h3 {
        font-size: 1.5rem;
    }

    .vision p, .mission p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .about h2 {
        font-size: 1.8rem;
    }

    .about-intro {
        font-size: 0.9rem;
    }

    .vision, .mission {
        padding: 0.75rem;
    }

    .vision img, .mission img {
        max-width: 200px;
    }

    .vision h3, .mission h3 {
        font-size: 1.3rem;
    }

    .vision p, .mission p {
        font-size: 0.85rem;
    }

    /* Adjust bouncing animation for smaller screens */
    @keyframes bounce {
        0%, 100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-10px); /* Reduced bounce distance */
        }
    }

    .navbar {
        padding: 0.8rem 1rem;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    .nav-links {
        padding-top: 70px;
    }
    
    .nav-links li {
        margin: 1rem 0;
    }
    
    .nav-links a {
        font-size: 1rem;
    }
}

@media (max-width: 360px) {
    .vision img, .mission img {
        max-width: 150px;
    }

    .vision h3, .mission h3 {
        font-size: 1.2rem;
    }

    .vision p, .mission p {
        font-size: 0.8rem;
    }

    .navbar {
        padding: 0.6rem 0.8rem;
    }
    
    .logo {
        font-size: 1.1rem;
    }
    
    .hamburger span {
        width: 22px;
        height: 2px;
    }
}

/* Center hero content text on mobile */
@media (max-width: 900px) {
    .hero-content {
        text-align: center;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .hero-content {
        text-align: center;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
    }
}

/* General styles */
/*body {*/
/*    background: #fff;*/
/*    color: #0a2259; */
/*    font-family: 'Poppins', Arial, sans-serif;*/
/*    margin: 0;*/
/*    padding: 0;*/
/*    overflow-x: hidden;*/
/*}*/

/* Navbar styles */
.navbar {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 70px;
}

.logo img {
    height: 80px;      /* Increase logo size */
    max-width: 180px;  /* Prevents logo from being too wide */
    width: auto;
    display: block;
    transition: height 0.2s;
}

.nav-links {
    display: flex;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    color: #0a2259;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.2s;
}

/* Default nav link color */
.nav-links li a {
    color: #0a2259;
    transition: color 0.3s;
}

/* When scrolled, make nav links white */
.navbar.scrolled .nav-links li a {
    color: #0a2259;
}

.nav-links li a:hover {
    color: #1a3a7c;
}

/* Hamburger styles */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 32px;
    height: 32px;
    justify-content: center;
    align-items: center;
    z-index: 1001;
}

.hamburger span {
    display: block;
    height: 4px;
    width: 26px;
    background: #fff;
    margin: 4px 0;
    border-radius: 2px;
    transition: 0.3s;
}

/* Statistics */
.about-stats {
    padding: 40px 0;
    background: #0a2259;
    text-align: center;
}
.stats-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.stat-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    padding: 20px;
    width: 200px;
    margin: 10px;
}
.stat-card img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    margin-bottom: 15px;
    /* Remove circular container */
    border-radius: 0;
}
.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1a73e8;
    margin-bottom: 8px;
}

/* Responsive styles */
@media (max-width: 900px) {
    .nav-container {
        padding: 0 12px;
    }
    .nav-links {
        gap: 14px;
    }
}

@media (max-width: 700px) {
    .nav-container {
        flex-direction: row;
        height: auto;
    }
    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        align-items: center;
        gap: 0;
        display: none;
        box-shadow: 0 4px 16px rgba(0,0,0,0.07);
    }
    .nav-links li {
        width: 100%;
        text-align: center;
        padding: 16px 0;
        border-bottom: 1px solid #eee;
    }
    .nav-links li:last-child {
        border-bottom: none;
    }
    .nav-links.active {
        display: flex;
    }
    .hamburger {
        display: flex;
    }
}

/* Center all text inside service cards */
.service-card {
    text-align: center;
    align-items: center;
    justify-content: center;
}

/* Optional: Center the content in the services section title */
.services h2 {
    text-align: center;
}

/* Optional: Center the services grid itself */
.services-grid {
    justify-items: center;
}

/* Ensure all text is navy blue */
h1, h2, h3, h4, h5, h6, p, a, li, span, div {
    color: #0a2259;
}

/* About Team Intro */
.about-team-intro {
    max-width: 850px;
    margin: 0 auto 40px auto;
    color: #23395d;
    font-size: 1.08rem;
    line-height: 1.8;
    background: #f5f8fd;
    border-left: 5px solid #1a73e8;
    border-radius: 12px;
    padding: 22px 32px;
    box-shadow: 0 2px 16px rgba(10,34,89,0.07);
    font-family: 'Poppins', Arial, sans-serif;
    font-weight: 500;
    letter-spacing: 0.01em;
    text-align: justify;
    word-break: break-word;
}

@media (max-width: 900px) {
    .about-team-intro {
        max-width: 90vw;
        padding: 18px 16px;
        font-size: 1rem;
    }
}

@media (max-width: 600px) {
    .about-team-intro {
        max-width: 95vw;
        padding: 12px 6vw;
        font-size: 0.97rem;
        border-left-width: 3px;
        border-radius: 8px;
        margin-bottom: 28px;
    }
}

@media (max-width: 400px) {
    .about-team-intro {
        padding: 8px 2vw;
        font-size: 0.90rem;
        border-left-width: 2px;
        text-align: justify;
    }
}

/* Clients Section */
.clients-section {
    padding: 50px 0 40px 0;
    background: #f8fafc;
    text-align: center;
}
.clients-section h2 {
    color: #0a2259;
    font-size: 2rem;
    margin-bottom: 28px;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.clients-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 28px 18px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
    justify-items: center;
}
.client-logo {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(10,34,89,0.07);
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
    min-width: 80px;
    max-width: 120px;
    max-height: 80px;
}
.client-logo img {
    max-width: 100%;
    max-height: 44px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

/* --- Clients Slider --- */
.clients-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: #f8fafc;
    padding: 18px 0 28px 0;
}
.clients-track {
    display: flex;
    width: max-content;
    animation: clients-scroll 30s linear infinite;
    align-items: center;
    gap: 32px;
}
.client-logo {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(10,34,89,0.07);
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    min-height: 80px;
    max-width: 170px;
    max-height: 80px;
    margin: 0 8px;
}
.client-logo img {
    max-width: 100%;
    max-height: 44px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

@keyframes clients-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 900px) {
    .clients-track {
        gap: 18px;
    }
    .client-logo {
        min-width: 80px;
        max-width: 90px;
        padding: 10px;
    }
}
@media (max-width: 600px) {
    .clients-slider {
        padding: 10px 0 18px 0;
    }
    .clients-track {
        gap: 12px;
        animation-duration: 18s;
    }
    .client-logo {
        min-width: 60px;
        min-height: 60px;
        max-width: 70px;
        max-height: 60px;
        padding: 6px;
    }
    .client-logo img {
        max-height: 28px;
    }
}

/* News Section */
.news-section {
    padding: 50px 0 40px 0;
    background: #f8fafc;
    text-align: center;
}
.news-section h2 {
    color: #0a2259;
    font-size: 2rem;
    margin-bottom: 28px;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.news-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto;
    align-items: stretch; /* Ensures equal height */
}

.news-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(10,34,89,0.07);
    width: 320px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    overflow: hidden;
    transition: transform 0.18s, box-shadow 0.18s;
    min-height: 470px; /* Optional: set a minimum height for consistency */
}
.news-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 24px rgba(10,34,89,0.13);
}
.news-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}
.news-content {
    padding: 18px 18px 14px 18px;
    text-align: left;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto; /* Take up remaining space */
}
.news-content h3 {
    color: #0a2259;
    font-size: 1.13rem;
    margin-bottom: 8px;
    font-weight: 600;
}
.news-content p {
    color: #444;
    font-size: 1rem;
    margin-bottom: 0;
}
.news-date {
    color: #1a73e8;
    font-size: 0.98rem;
    margin-top: 18px;
    margin-bottom: 0;
    font-weight: 500;
    align-self: flex-start;
}
.read-more-container {
    text-align: center;
    margin-top: 28px;
}
.read-more-btn {
    display: inline-block;
    background: #1a73e8;
    width: 120px;
    color: #fff;
    padding: 6px 14px; /* Reduced padding for a shorter button */
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    margin-top: 18px;
    transition: background 0.2s;
    box-shadow: 0 2px 8px rgba(10,34,89,0.07);
}
.read-more-btn:hover {
    background: #0a2259;
}

.news-image-container {
    position: relative;
    width: 100%;
    height: 220px; /* Increased from 160px for better image visibility */
    overflow: hidden;
}
.news-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 600px) {
    .news-image-container {
        height: 150px; /* Increased for mobile as well */
    }
}

/* Hamburger menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 32px;
    height: 32px;
    justify-content: center;
    align-items: center;
    z-index: 1001;
}
.hamburger span {
    display: block;
    height: 4px;
    width: 26px;
    background: #0a2259;
    margin: 4px 0;
    border-radius: 2px;
    transition: 0.3s;
}
@media (max-width: 900px) {
    .hamburger {
        display: flex;
    }
    .nav-links {
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 18px 0 18px 24px;
        box-shadow: 0 2px 8px rgba(10,34,89,0.07);
        display: none;
        z-index: 1000;
    }
    .nav-links.active {
        display: flex;
    }
    .nav-links li {
        margin: 10px 0;
    }
    .nav-links a {
        color: #fff;
        font-size: 1.15rem;
        display: block;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        transition: color 0.2s;
    }
    .nav-links a:hover {
        color: #1a73e8;
    }
}

/* Navbar scroll effect: white text on scroll */
.navbar.scrolled .nav-links a {
    color: #df1212; /* Change text color to white when scrolled */
}
.navbar.scrolled .hamburger span {
    background: #0a225912;
}

/* Awards Feature Section */
.awards-feature {
    padding: 40px 0;
    display: flex;
    justify-content: center;
    background: #f8fafc;
}
.awards-feature-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(188, 194, 206, 0.07);
    padding: 28px 24px;
    max-width: 1000px; /* Increased from 480px */
    width: 100%;
    text-align: center;
    margin: 0 auto;
}
.awards-feature-card h2 {
    color: #0a2259;
    margin-bottom: 18px;
    font-size: 1.5rem;
    font-weight: 700;
}
.awards-feature-image img {
    width: 100%;
    max-width: 1900px; /* Adjust to fit new card width */
    height: auto;
    border-radius: 10px;
    box-shadow: 0 2px 8px #0a225912;
}

/* News Modal Styles */
.news-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 70px; /* Push modal below navbar (adjust if your navbar is taller/shorter) */
    width: 100vw;
    height: calc(100vh - 70px); /* Adjust height to fit below navbar */
    overflow: auto;
    background: rgba(10,34,89,0.45);
    justify-content: center;
    align-items: flex-start; /* Align modal content to the top */
}

.news-modal.active {
    display: flex;
}

.news-modal-content {
    background: #fff;
    border-radius: 14px;
    max-width: 1100px; /* Increased width */
    width: 98vw;
    margin: 32px auto 32px auto;
    padding: 0 0 32px 0;
    box-shadow: 0 8px 32px rgba(10,34,89,0.18);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: modalIn 0.2s;
}

@keyframes modalIn {
    from { transform: translateY(40px) scale(0.98); opacity: 0; }
    to { transform: translateY(0) scale(1); opacity: 1; }
}

.news-modal-content img {
    width: 100%;
    max-height: 320px;
    object-fit: cover;
    border-radius: 14px 14px 0 0;
}

.news-modal-content h3 {
    margin: 18px 0 10px 0;
    color: #0a2259;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.news-modal-content p {
    color: #444;
    font-size: 1.13rem;
    padding: 0 28px;
    text-align: left;
    line-height: 1.8;
    letter-spacing: 0.01em;
    margin-bottom: 12px;
    text-align: justify;
}

.news-modal-close {
    position: absolute;
    top: 10px;
    right: 18px;
    font-size: 2rem;
    color: #1a73e8;
    cursor: pointer;
    font-weight: bold;
    z-index: 10;
    transition: color 0.2s;
}

.news-modal-close:hover {
    color: #0a2259;
}

.news-modal-content .news-date-overlay {
    position: absolute;
    top: 18px;
    left: 18px;
    background: rgba(26, 115, 232, 0.92);
    color: #fff;
    padding: 4px 14px;
    border-radius: 16px;
    font-size: 1rem;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(10,34,89,0.07);
    letter-spacing: 0.02em;
}

@media (max-width: 1200px) {
    .news-modal-content {
        max-width: 98vw;
    }
}
@media (max-width: 900px) {
    .news-modal-content {
        max-width: 99vw;
        padding: 0 0 18px 0;
    }
    .news-modal-content img {
        max-height: 200px;
    }
    .news-modal-content h3 {
        font-size: 1.15rem;
    }
    .news-modal-content p {
        font-size: 1rem;
        padding: 0 12px;
    }
}
@media (max-width: 600px) {
    .news-modal {
        top: 56px;
        height: calc(100vh - 56px);
    }
    .news-modal-content {
        max-width: 99vw;
        margin: 12px auto;
        padding: 0 0 10px 0;
    }
    .news-modal-content img {
        max-height: 120px;
    }
    .news-modal-content h3 {
        font-size: 1rem;
    }
    .news-modal-content p {
        font-size: 0.97rem;
        padding: 0 6px;
    }
    .news-modal-content .news-date-overlay {
        font-size: 0.89rem;
        padding: 3px 10px;
        top: 8px;
        left: 8px;
    }
}

/* Contact Section */

.contact-section {
    background: #f5f8fd;
    padding: 60px 0 40px 0;
}

.contact-container {
    display: flex;
    gap: 48px;
    max-width: 1100px;
    margin: 0 auto;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(10,34,89,0.07);
    padding: 40px 32px;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1 1 320px;
    min-width: 260px;
    margin-bottom: 24px;
}

.contact-info h2 {
    color: #1a73e8;
    font-size: 2rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.contact-info p {
    color: #23395d;
    margin-bottom: 18px;
    font-size: 1.08rem;
}

.contact-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    margin-bottom: 12px;
    color: #23395d;
    font-size: 1.05rem;
}

.contact-info a {
    color: #1a73e8;
    text-decoration: none;
    word-break: break-all;
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-form {
    flex: 1 1 340px;
    min-width: 260px;
    background: #f8fafc;
    border-radius: 12px;
    padding: 28px 24px;
    box-shadow: 0 2px 12px rgba(10,34,89,0.04);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-form h2 {
    color: #0a2259;
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.form-group {
    width: 100%;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid #dbeafe;
    border-radius: 7px;
    font-size: 1rem;
    font-family: inherit;
    background: #fff;
    color: #23395d;
    margin-bottom: 6px;
    transition: border 0.2s;
    resize: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #1a73e8;
    outline: none;
}

.contact-btn {
    background: #1a73e8;
    color: #fff;
    border: none;
    border-radius: 7px;
    padding: 12px 32px;
    font-size: 1.08rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    box-shadow: 0 2px 8px rgba(10,34,89,0.07);
    margin-top: 8px;
}

.contact-btn:hover {
    background: #0a2259;
}

/* Event Registration Section */
/* Add or update in your style.css */

.event-registration-promo {
    display: flex;
    flex-direction: column; /* Stack children vertically */
    align-items: center;
    gap: 32px;
    padding: 48px 0 36px 0;
    background: #f5f8fd;
}

.event-registration-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(10,34,89,0.10);
    padding: 36px 32px 32px 32px;
    max-width: 600px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px !important;
}

.event-image-container {
    width: 100%;
    max-width: 520px;
    height: 650px; /* Increased height */
    margin: 0 auto 22px auto;
    border-radius: 12px;
    overflow: hidden;
    background: #e6eaf3;
    box-shadow: 0 2px 12px rgba(10,34,89,0.09);
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

.register-link {
    display: inline-block;
    margin-top: 22px;
    background: #1a73e8;
    color: #fff;
    padding: 12px 38px;
    border-radius: 7px;
    font-size: 1.13rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
    box-shadow: 0 2px 8px rgba(10,34,89,0.07);
}

.register-link:hover {
    background: #0a2259;
}

@media (max-width: 900px) {
    .event-registration-card {
        max-width: 98vw;
        padding: 18px 6px 18px 6px;
    }
    .event-image-container {
        max-width: 98vw;
        height: 500px;
    }
}

@media (max-width: 600px) {
    .event-registration-promo {
        padding: 18px 0 12px 0;
    }
    .event-registration-card {
        padding: 10px 2px 14px 2px;
    }
    .event-image-container {
        height: 140px;
    }
    .register-link {
        font-size: 1rem;
        padding: 10px 18px;
    }
}

@media (max-width: 400px) {
    .event-image-container {
        
        height: 500px;
    }
    .register-link {
        font-size: 0.97rem;
        padding: 8px 10px;
    }
}
/* Award section */

.awards-hero-image {
    position: relative;
    width: 100%;
    height: 340px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.awards-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.awards-hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(3, 7, 17, 0.897) 0%, rgba(6, 12, 26, 0.87) 60%, rgba(10,34,89,0.85) 100%);
    z-index: 1;
}

.awards-hero-content {
    position: absolute;
    z-index: 2;
    width: 100%;
    text-align: center;
    color: #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0 16px;
}

.awards-hero-content h1,
.awards-hero-content p {
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.28);
    margin: 0;
}

/* Responsive adjustments for mobile devices */
@media (max-width: 600px) {
    .awards-hero-image {
        height: 180px;
    }
    .awards-hero-content h1 {
        font-size: 1.2rem;
    }
    .awards-hero-content p {
        font-size: 0.97rem;
    }
}

@media (max-width: 400px) {
    .awards-hero-image {
        height: 120px;
    }
    .awards-hero-content {
        padding: 0 6px;
    }
    .awards-hero-content h1 {
        font-size: 1rem;
    }
    .awards-hero-content p {
        font-size: 0.89rem;
    }
}

/* Add or update in your style.css */

.awards-feature-image-grid-header {
    text-align: center;
    margin-bottom: 10px;
}
.awards-feature-image-grid-header h1 {
    font-size: 1.9rem;
    color: #0a2259;
    margin-top: 20px;
    margin-bottom: 3px;
    font-weight: 700;
}
.awards-feature-image-grid-header p {
    color: #23395d;
    font-size: 1.05rem;
    margin: 0;
}

.awards-feature-image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 images per row */
    gap: 18px;
    margin: 32px 0;
}

.awards-feature-image-grid .awards-feature-image {
    background: #fff;
    border-radius: 10px;
     height: 250px;
    box-shadow: 0 2px 8px rgba(10,34,89,0.07);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.awards-feature-image-grid img {
    width: 300px;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

@media (max-width: 900px) {
    .awards-feature-image-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .awards-feature-image-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .awards-feature-image-grid img {
        height: 90px;
    }
}

@media (max-width: 400px) {
    .awards-feature-image-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .awards-feature-image-grid img {
        height: 250px;
        width: 100%;
    }
}




/* Events Explained */

.summit-info-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
   background: linear-gradient(135deg, #0000004b 0%, #e4e7eb52 100%);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  font-family: 'Arial', sans-serif;
  color: #333;
}

.summit-header {
  text-align: center;
  margin-bottom: 2rem;
}

.summit-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 0.5rem;
}

.summit-subtitle {
  font-size: 1.2rem;
  font-weight: 500;
  color: #000000;
}

.summit-theme {
  font-size: 1.4rem;
  font-style: italic;
  color: #000;
  font-weight: 600;
}

.summit-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.detail-item {
  background: #fff;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.detail-label {
  font-weight: 600;
  color: #000000;
}

.detail-value {
  color: #000000;
}

.summit-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  text-align: justify;
}

.summit-benefits, .summit-fees {
  margin-bottom: 2rem;
}

.summit-benefits h3, .summit-fees h3 {
  font-size: 1.6rem;
  color: #000000;
  margin-bottom: 1rem;
}

.summit-benefits ul, .summit-fees ul {
  list-style: none;
  padding: 0;
}

.summit-benefits li, .summit-fees li {
  font-size: 1rem;
  text-align: justify;
  line-height: 1.8;
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.summit-benefits li:before, .summit-fees li:before {
  content: '✔';
  color: #2e6d5a;
  position: absolute;
  left: 0;
}

.fee-item {
  background: #fff;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.fee-item h4 {
  font-size: 1.3rem;
  color: #000000;
  margin-bottom: 0.5rem;
}

.summit-eligibility {
  font-size: 1rem;
  font-style: italic;
  text-align: center;
  color: #555;
}

@media (max-width: 768px) {
  .summit-info-container {
    padding: 1.5rem;
  }

  .summit-title {
    font-size: 2rem;
  }

  .summit-subtitle {
    font-size: 1.5rem;
  }

  .summit-theme {
    font-size: 1rem;
  }

  .summit-details {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 400px) {
  .summit-info-container {
   .summit-info-container {
    padding: 1rem;
  }

  .summit-title {
    font-size: 1.4rem;
  }

  .summit-subtitle {
    font-size: 0.9rem;
  }

  .summit-theme {
    font-size: 1.1rem;
  }

  .summit-benefits h3, .summit-fees h3 {
    font-size: 1.4rem;
  }

  .fee-item h4 {
    font-size: 1.2rem;
  }
}