﻿
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Poppins", sans-serif;
        }

        body {
            background-color: #f9f9f9;
            color: #333;
            line-height: 1.6;
        }
.inline_css {

    color:transparent !important
}

        /* ===== Navbar ===== */
        header {
            background: linear-gradient(90deg, #ff416c, #ff4b2b);
            color: white;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 40px;
            flex-wrap: wrap;
        }

        .logo-container {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .logo {
            font-size: 1.6em;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .slogan {
            font-size: 0.85em;
            font-weight: 400;
            color: #ffe6e6;
            margin-left: 32px;
            margin-top: 3px;
            letter-spacing: 0.5px;
        }

        .bolt {
            width: 22px;
            height: 22px;
            fill: white;
            background: rgba(255, 255, 255, 0.2);
            padding: 6px;
            border-radius: 50%;
            transition: 0.3s;
        }

        .menu-container {
            display: flex;
            align-items: center;
            gap: 25px;
        }

        .menu a {
            color: white;
            font-weight: 500;
            text-decoration: none;
            transition: 0.3s;
        }

            .menu a:hover {
                color: #ffe6e6;
            }

        .social-icons {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-left: 20px;
        }

            .social-icons svg {
                width: 20px;
                height: 20px;
                fill: white;
                cursor: pointer;
                transition: 0.3s;
            }

                .social-icons svg:hover {
                    transform: scale(1.2);
                    filter: drop-shadow(0 0 5px white);
                }

        .hamburger {
            display: none;
            font-size: 1.8em;
            cursor: pointer;
        }

        @media (max-width: 768px) {
            .menu-container {
                display: none;
                flex-direction: column;
                width: 100%;
                background: linear-gradient(180deg, #ff4b2b, #ff416c);
                text-align: center;
                padding: 15px 0;
            }

                .menu-container.active {
                    display: flex;
                }

            .menu {
                flex-direction: column;
                gap: 15px;
            }

            .social-icons {
                margin-top: 10px;
            }

            .hamburger {
                display: block;
                color: white;
            }
        }

        /* ===== Blog Section ===== */
        main {
            padding: 60px 40px;
            max-width: 1200px;
            margin: auto;
        }

        h1 {
            text-align: center;
            color: #ff416c;
            font-size: 2em;
            margin-bottom: 40px;
        }

        .blog-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
        }

        article {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }

            article:hover {
                transform: translateY(-8px);
            }

            article img {
                width: 100%;
                height: 180px;
                object-fit: cover;
            }

        .blog-content {
            padding: 15px;
        }

            .blog-content h2 {
                color: #333;
                font-size: 1.1em;
                margin-bottom: 8px;
            }

            .blog-content p {
                font-size: 0.9em;
                color: #777;
            }

        /* ===== Footer ===== */
        footer {
            background: linear-gradient(90deg, #ff4b2b, #ff416c);
            color: white;
            text-align: center;
            padding: 20px;
            margin-top: 50px;
            font-size: 0.95em;
        }
  
 
/* Navbar base */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
   background: linear-gradient(90deg, #ff416c, #ff4b2b);
  color: #fff;
  padding: 10px 20px;
  position: relative;
  flex-wrap: wrap;
}

/* Logo & slogan */
.logo-container {
  display: flex;
  flex-direction: column;
}
.logo {
  display: flex;
  align-items: center;
  font-size: 22px;
  font-weight: bold;
  color: #fff;
}
.logo svg {
  width: 22px;
  height: 22px;
  fill: #ffd700;
  margin-right: 8px;
}
.slogan {
  font-size: 12px;
  color: #ccc;
}

/* Hamburger */
.hamburger {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: #fff;
}

/* Menu container */
.menu-container {
  display: flex;
  align-items: center;
  gap: 25px;
}

/* Menu links */
.menu a {
  color: #fff;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s ease;
}

/* 🔹 Hover highlight */
.menu a:hover {
  background: #ffd700;
  color: #000;
}

/* 🔹 Active link highlight (optional class for current page) */
.menu a.active {
  background: #fff;
  color: #000;
  font-weight: 600;
}

/* Social icons */
.social-icons svg {
  width: 20px;
  height: 20px;
  fill: #fff;
  cursor: pointer;
  transition: 0.3s;
}
.social-icons svg:hover {
  fill: #ffd700;
}

/* Responsive */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }
  .menu-container {
    flex-direction: column;
    width: 100%;
    display: none;
    background: #111;
    margin-top: 10px;
    border-radius: 10px;
  }
  .menu-container.active {
    display: flex;
  }
  .menu {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .menu a {
    padding: 12px;
    text-align: center;
    border-bottom: 1px solid #222;
  }
}
   main {
      max-width: 900px;
      margin: 60px auto;
      padding: 40px 25px;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    h1 {
      color: #ff416c;
      font-size: 2em;
      margin-bottom: 20px;
      text-align: center;
    }

    h2 {
      color: #ff4b2b;
      margin-top: 30px;
      font-size: 1.4em;
    }

    p {
      margin-top: 10px;
      line-height: 1.7;
      color: #333;
    }

    .team-section {
      margin-top: 40px;
    }

    .team-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
      margin-top: 20px;
    }

    .member {
      text-align: center;
      background: #fff6f6;
      padding: 15px;
      border-radius: 10px;
      transition: 0.3s;
    }

    .member:hover {
      transform: translateY(-5px);
    }

    .member img {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      object-fit: cover;
      margin-bottom: 10px;
      border: 3px solid #ff416c;
    }

    .member h4 {
      color: #ff416c;
      margin-bottom: 5px;
    }

    .member p {
      font-size: 0.9em;
      color: #555;
    }

    .mission-box {
      background: #fff6f6;
      padding: 20px;
      border-left: 5px solid #ff416c;
      margin-top: 30px;
      border-radius: 8px;
    }

    .social-links {
      text-align: center;
      margin-top: 40px;
    }

    .social-links a {
      margin: 0 10px;
      color: #ff416c;
      font-weight: bold;
      text-decoration: none;
    }

    .social-links a:hover {
      text-decoration: underline;
    }

    @media (max-width: 600px) {
      h1 { font-size: 1.6em; }
      h2 { font-size: 1.2em; }
    }