/* General Styles */
body, h1, h2, h3, p, ul, li {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #f0f4f8;
    color: #333;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #081234;
    color: white;
    padding: 0.5rem 1rem;
    position: relative;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar nav a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
}

.logo {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s, transform 0.3s;
}

nav ul li a:hover {
    color: #1db2ff;
    transform: scale(1.1);
}

/* Default: hide hamburger on desktop */
.hamburger {
    display: none;
}

/* MOBILE STYLES */
@media (max-width: 768px) {

    /* Ensure hamburger shows up */
    .hamburger {
        display: block;
        cursor: pointer;
        z-index: 1100;
    }

    .hamburger span {
        display: block;
        background: white;
        height: 3px;
        width: 25px;
        margin: 5px 0;
    }

    /* Collapse nav links by default */
    nav ul {
        flex-direction: column;
        background-color: #0a0f43;
        position: absolute;
        top: 60px;
        right: 0;
        width: 200px;
        padding: 20px;
        display: none;  /* hidden by default */
        z-index: 1000;
    }

    /* When menu is toggled open */
    nav ul.show {
        display: flex;
    }
}

/* Hero Section */
.hero {
    background:
        linear-gradient(135deg, #081234, #0d6efd, #33c7ff),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='360' height='360' viewBox='0 0 360 360'%3E%3Cpath fill='%230145c0' fill-opacity='0.61' d='M0 85.02l4.62-4.27a49.09... (your full SVG pattern here) ...%3E%3C/path%3E%3C/svg%3E");
    background-blend-mode: overlay;
    background-size: cover;
    background-repeat: repeat;
    text-align: center;
    padding: 4rem 1rem;
    color: white;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 20px 0;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1rem;
    opacity: 0.85;
}

.hero-content h1 {
    font-size: 48px;
}

.hero-content p {
    font-size: 20px;
    margin: 20px 0;
}

/* Buttons */
.hero-buttons button,
.primary,
.secondary {
    padding: 10px 25px;
    margin: 10px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    font-family: 'Open Sans', sans-serif;
    color: white;
    box-shadow: 0 0 20px rgba(29, 178, 255, 0.5);
    background-color: #0d6efd;
    transition: background 0.3s, box-shadow 0.3s, transform 0.3s;
}

.hero-buttons button:hover,
.primary:hover,
.secondary:hover {
    background-color: #0b5ed7;
    box-shadow: 0 0 30px rgba(255, 230, 0, 0.7);
    transform: translateY(-3px);
}

/* Services Section */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 60px 20px;
  background: linear-gradient(to bottom, #f0f8ff, #e6f7ff);
}

.services::before {
    content: "";
    position: absolute;
    top: -40px;
    left: 50%;
    width: 300px;
    height: 300px;
    background: rgba(144, 238, 144, 0.2);
    border-radius: 50%;
    transform: translateX(-50%);
    animation: float 6s ease-in-out infinite alternate;
    z-index: 0;
}

.services h2 {
    margin-bottom: 30px;
    color: #003366;
    position: relative;
    font-size: 32px;
    z-index: 1;
}

.service-card {
  background: white;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.service-card .icon {
  font-size: 40px;
  color: #1db2ff;
  margin-bottom: 15px;
}

.service-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-card ul li {
  display: grid;
  grid-template-columns: 40px 1fr; /* 40px icon + text fills rest */
  align-items: center;
  justify-content: center;
  margin: 10px 0;
  padding-left: 20px;
}

/* Keep icon aligned left inside its own fixed space */
.service-card ul li i {
  min-width: 30px;
  text-align: center;
  font-size: 18px;
  background: #1db2ff;
  color: white;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  margin-right: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: transform 0.3s;
}

/* Optional icon hover animation */
.service-card ul li i:hover {
  transform: scale(1.2);
}

/* Center the text within the flex container */
.service-card ul li span {
  flex: 1;
  text-align: left;
  font-size: 1.1rem;  /* increase size */
  color: #333;        /* darker color for contrast */
  font-weight: 500;    /* slight boldness for easier reading */
}
/* Enhance card styling */
.service-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.service-card h2 {
  margin: 1rem 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: #003366;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.2);
}

.service-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.card {
  background: #f8fbff;
  padding: 1rem;
  width: 280px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: left;
  max-width: 300px;
}

.wave-separator svg {
  display: block;
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: left;
  max-width: 300px;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 30px rgba(255, 223, 0, 0.8);
}

.card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  text-align: left;
  margin-bottom: 0.5rem;
}

.card h3 {
    font-size: 24px;
    color: #111827;
    margin-bottom: 0.5rem;
    list-style: none;
}

.card ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* keep text left-aligned */
  justify-content: center;
  padding: 0;
  margin: 0 auto; /* center whole list horizontally */
}

.card ul li {
  display: grid;
  grid-template-columns: auto 1fr; /* icon column + text column */
  align-items: center;
  column-gap: 0.75rem; /* space between icon and text */
  font-size: 0.95rem;
  color: #333;
  margin: 0.5rem 0;
}

.icon {
  display: flex;  /* <-- changed from inline-flex */
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #1db2ff;
  color: white;
  border-radius: 50%;
  font-size: 14px;
  flex-shrink: 0;
  line-height: 1;
}

/* Moved out */
.wave-separator {
   position: absolute;
   bottom: 0;
   left: 0;
   width: 100%;
   overflow: hidden;
   line-height: 0;
}

.wave-separator svg {
   display: block;
   width: 100%;
   height: auto;
}

/* How It Works */
.how-it-works {
    position: relative;
    background: linear-gradient(135deg, #e0f7fa, #f0faff);
    background-color: #bcf8fa;
    background-color: #e1f7f8;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 304 304' width='304' height='304'%3E%3Cpath fill='%2392a3a4' fill-opacity='0.4' d='M44.1 224a5 5 0 1 1 0 2H0v-2h44.1zm160 48a5 5 0 1 1 0 2H82v-2h122.1zm57.8-46a5 5 0 1 1 0-2H304v2h-42.1zm0 16a5 5 0 1 1 0-2H304v2h-42.1zm6.2-114a5 5 0 1 1 0 2h-86.2a5 5 0 1 1 0-2h86.2zm-256-48a5 5 0 1 1 0 2H0v-2h12.1zm185.8 34a5 5 0 1 1 0-2h86.2a5 5 0 1 1 0 2h-86.2zM258 12.1a5 5 0 1 1-2 0V0h2v12.1zm-64 208a5 5 0 1 1-2 0v-54.2a5 5 0 1 1 2 0v54.2zm48-198.2V80h62v2h-64V21.9a5 5 0 1 1 2 0zm16 16V64h46v2h-48V37.9a5 5 0 1 1 2 0zm-128 96V208h16v12.1a5 5 0 1 1-2 0V210h-16v-76.1a5 5 0 1 1 2 0zm-5.9-21.9a5 5 0 1 1 0 2H114v48H85.9a5 5 0 1 1 0-2H112v-48h12.1zm-6.2 130a5 5 0 1 1 0-2H176v-74.1a5 5 0 1 1 2 0V242h-60.1zm-16-64a5 5 0 1 1 0-2H114v48h10.1a5 5 0 1 1 0 2H112v-48h-10.1zM66 284.1a5 5 0 1 1-2 0V274H50v30h-2v-32h18v12.1zM236.1 176a5 5 0 1 1 0 2H226v94h48v32h-2v-30h-48v-98h12.1zm25.8-30a5 5 0 1 1 0-2H274v44.1a5 5 0 1 1-2 0V146h-10.1zm-64 96a5 5 0 1 1 0-2H208v-80h16v-14h-42.1a5 5 0 1 1 0-2H226v18h-16v80h-12.1zm86.2-210a5 5 0 1 1 0 2H272V0h2v32h10.1zM98 101.9V146H53.9a5 5 0 1 1 0-2H96v-42.1a5 5 0 1 1 2 0zM53.9 34a5 5 0 1 1 0-2H80V0h2v34H53.9zm60.1 3.9V66H82v64H69.9a5 5 0 1 1 0-2H80V64h32V37.9a5 5 0 1 1 2 0zM101.9 82a5 5 0 1 1 0-2H128V37.9a5 5 0 1 1 2 0V82h-28.1zm16-64a5 5 0 1 1 0-2H146v44.1a5 5 0 1 1-2 0V18h-26.1zm102.2 270a5 5 0 1 1 0 2H98v14h-2v-16h124.1zM242 149.9V160h16v34h-16v62h48v48h-2v-46h-48v-66h16v-30h-16v-12.1a5 5 0 1 1 2 0zM53.9 18a5 5 0 1 1 0-2H64V2H48V0h18v18H53.9zm112 32a5 5 0 1 1 0-2H192V0h50v2h-48v48h-28.1zm-48-48a5 5 0 0 1-9.8-2h2.07a3 3 0 1 0 5.66 0H178v34h-18V21.9a5 5 0 1 1 2 0V32h14V2h-58.1zm0 96a5 5 0 1 1 0-2H137l32-32h39V21.9a5 5 0 1 1 2 0V66h-40.17l-32 32H117.9zm28.1 90.1a5 5 0 1 1-2 0v-76.51L175.59 80H224V21.9a5 5 0 1 1 2 0V82h-49.59L146 112.41v75.69zm16 32a5 5 0 1 1-2 0v-99.51L184.59 96H300.1a5 5 0 0 1 3.9-3.9v2.07a3 3 0 0 0 0 5.66v2.07a5 5 0 0 1-3.9-3.9H185.41L162 121.41v98.69zm-144-64a5 5 0 1 1-2 0v-3.51l48-48V48h32V0h2v50H66v55.41l-48 48v2.69zM50 53.9v43.51l-48 48V208h26.1a5 5 0 1 1 0 2H0v-65.41l48-48V53.9a5 5 0 1 1 2 0zm-16 16V89.41l-34 34v-2.82l32-32V69.9a5 5 0 1 1 2 0zM12.1 32a5 5 0 1 1 0 2H9.41L0 43.41V40.6L8.59 32h3.51zm265.8 18a5 5 0 1 1 0-2h18.69l7.41-7.41v2.82L297.41 50H277.9zm-16 160a5 5 0 1 1 0-2H288v-71.41l16-16v2.82l-14 14V210h-28.1zm-208 32a5 5 0 1 1 0-2H64v-22.59L40.59 194H21.9a5 5 0 1 1 0-2H41.41L66 216.59V242H53.9zm150.2 14a5 5 0 1 1 0 2H96v-56.6L56.6 162H37.9a5 5 0 1 1 0-2h19.5L98 200.6V256h106.1zm-150.2 2a5 5 0 1 1 0-2H80v-46.59L48.59 178H21.9a5 5 0 1 1 0-2H49.41L82 208.59V258H53.9zM34 39.8v1.61L9.41 66H0v-2h8.59L32 40.59V0h2v39.8zM2 300.1a5 5 0 0 1 3.9 3.9H3.83A3 3 0 0 0 0 302.17V256h18v48h-2v-46H2v42.1zM34 241v63h-2v-62H0v-2h34v1zM17 18H0v-2h16V0h2v18h-1zm273-2h14v2h-16V0h2v16zm-32 273v15h-2v-14h-14v14h-2v-16h18v1zM0 92.1A5.02 5.02 0 0 1 6 97a5 5 0 0 1-6 4.9v-2.07a3 3 0 1 0 0-5.66V92.1zM80 272h2v32h-2v-32zm37.9 32h-2.07a3 3 0 0 0-5.66 0h-2.07a5 5 0 0 1 9.8 0zM5.9 0A5.02 5.02 0 0 1 0 5.9V3.83A3 3 0 0 0 3.83 0H5.9zm294.2 0h2.07A3 3 0 0 0 304 3.83V5.9a5 5 0 0 1-3.9-5.9zm3.9 300.1v2.07a3 3 0 0 0-1.83 1.83h-2.07a5 5 0 0 1 3.9-3.9zM97 100a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-48 32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm32 48a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm32-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0-32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm32 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16-64a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 96a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16-144a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16-32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-96 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16-32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm96 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16-64a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-32 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zM49 36a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-32 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm32 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zM33 68a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16-48a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 240a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16-64a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16-32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm80-176a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm32 48a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0-32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm112 176a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zM17 180a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0-32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zM17 84a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm32 64a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6z'%3E%3C/path%3E%3C/svg%3E");    background-size: cover;
    border-radius: 16px;
    padding: 3rem 1.5rem;
    max-width: 800px;
    margin: 2rem auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    animation: moveBackground 20s linear infinite, fadeInSlide 1.2s ease both;
    overflow: hidden;
}

@keyframes moveBackground {
    from { background-position: 0 0; }
    to { background-position: 90px 90px; }
}


.how-it-works::before {
    content: "";
    position: absolute;
    top: 10%;
    left: 50%;
    width: 80%;
    height: 80%;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(128, 0, 128, 0.2) 0%, transparent 70%);
    z-index: 0;
}

.how-it-works h2,
.how-it-works ul {
    position: relative;
    z-index: 1;
}

.how-it-works h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #003366;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
    text-align: center;
}

.how-it-works p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0.5rem 0;
    color: #222;
}

.how-it-works p strong {
    color: #0d6efd;
}

.how-it-works ul {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 0 auto 30px;
}

.how-it-works ul li {
    margin-bottom: 15px;
    font-size: 18px;
}

.how-it-works-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 10px;
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer */
footer {
    background: linear-gradient(90deg, #001020, #0d6efd);
    color: white;
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
}

footer a:hover {
    text-decoration: underline;
}

/* Floating Animation */
@keyframes float {
    from { transform: translateX(-50%) translateY(0); }
    to { transform: translateX(-50%) translateY(20px); }
}

/* Icon inside cards */
.feature {
    display: flex;
    align-items: center;
    margin: 8px 0;
    font-size: 16px;
}

.icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    margin-right: 10px;
    background: #1db2ff;
    color: white;
    border-radius: 50%;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.card:hover .icon {
    transform: rotate(10deg) scale(1.2);
}

/* Responsive Blog Cards */
.blog-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 40px;
}

.blog-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card h3 {
    font-size: 20px;
    font-weight: bold;
    margin: 10px 20px 5px;
}

.blog-card p {
    font-size: 14px;
    color: #333;
    margin: 0 20px 15px;
}

.blog-category {
    background-color: #0074d9;
    color: white;
    font-size: 12px;
    font-weight: bold;
    padding: 5px 10px;
    align-self: flex-start;
    margin: 10px 20px 0;
    border-radius: 3px;
    text-transform: uppercase;
}

.read-more {
    margin: 0 20px 20px;
    padding: 10px 15px;
    background-color: #4CAF50;
    color: white;
    text-align: center;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.2s ease;
}

.read-more:hover {
    background-color: #45a049;
}

/* Language Switch */
.language-switch {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    position: absolute;
    top: 20px;
    right: 20px;
}

.language-switch input[type="checkbox"] {
    width: 40px;
    height: 20px;
    appearance: none;
    background-color: #ccc;
    outline: none;
    border-radius: 20px;
    position: relative;
    cursor: pointer;
    transition: background-color 0.3s;
}

.language-switch input[type="checkbox"]::before {
    content: '';
    width: 18px;
    height: 18px;
    background-color: white;
    border-radius: 50%;
    position: absolute;
    top: 1px;
    left: 1px;
    transition: transform 0.3s;
}

.language-switch input[type="checkbox"]:checked {
    background-color: #1db2ff;
}

.language-switch input[type="checkbox"]:checked::before {
    transform: translateX(20px);
}

.language-label {
    color: #FFA500;
    font-weight: bold;
    margin-left: 5px;
}

.language-toggle {
    display: inline-flex;
    border: 2px solid #1db2ff;
    border-radius: 30px;
    overflow: hidden;
    cursor: pointer;
    background: #fff;
    font-weight: bold;
    font-size: 14px;
  }
  
  .language-toggle span {
    padding: 8px 15px;
    transition: background 0.3s, color 0.3s;
  }
  
  .language-toggle .active {
    background: #1db2ff;
    color: white;
  }
  
.subscribe-section {
  background: linear-gradient(135deg, #ffc133, #9affc0);
  padding: 4rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-top: 3px solid #ffcc00;
  border-bottom: 3px solid #ffcc00;
  box-shadow: 0 0 12px rgba(0,0,0,0.05);
  animation: pulse 10s infinite;
}

.subscribe-container {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.subscribe-section h2 {
  font-size: 2.2rem;
  color: #e01808;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 0 white;
}

.subscribe-section p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #444;
}

.subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 1rem;
}

.subscribe-form input[type="email"] {
  padding: 14px;
  border: 2px solid #ffcc00;
  border-radius: 8px;
  font-size: 1rem;
}


/* Subscibe */
.subscribe-form button {
  padding: 14px;
  background-color: #ff9900;
  color: #e01808;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.subscribe-form button:hover {
  background-color: #e68800;
}

.subscribe-input-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 1rem;
}

.subscribe-note {
  width: 100%;
  text-align: center;
}

.subscribe-note small {
  display: block;
  margin-top: 10px;
  font-size: 0.85rem;
  color: #f03108;
}


.subscribe-success,
.subscribe-warning {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin-top: 10px;
  font-weight: 500;
  color: #333;
  text-align: center;
}


.subscribe-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.subscribe-warning {
  background: #fff3cd;
  color: #856404;
  border: 1px solid #ffeeba;
}

@media (min-width: 600px) {
  .subscribe-form {
    flex-direction: row;
    justify-content: center;
  }

  .subscribe-form input[type="email"] {
    flex: 1;
    margin-right: 10px;
  }

  .subscribe-form button {
    width: auto;
  }
}