* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #f0f9ff;
    color: #0f172a;
    overflow-x: hidden;
    scroll-behavior: smooth;
    width:100%;
}

/* Custom cursor glow effect */
.cursor-glow {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(23, 126, 244, 0.08) 0%, rgba(16, 185, 129, 0) 70%);
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.08s ease-out;
    filter: blur(45px);
    opacity: 0.5;
}

/* Scrollbar — using browser default */

/* Top Bar Animation */
.top-bar {
    background: linear-gradient(90deg, #0f172a, #1e293b);
    color: #e2e8f0;
    text-align: center;
    padding: 10px 16px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    z-index: 100;
}
.top-bar p {
    display: inline-block;
    animation: marquee 15s linear infinite;
}
@keyframes marquee {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Navigation */
nav {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    padding: 0.8rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(16, 185, 129, 0.2);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;

.logo {
    width: 60px;   /* adjust size */
    height: 60px;
    object-fit: contain;
}

}
.logo-text {
    font-size: 1.2rem;
    font-weight: 600;
    background: linear-gradient(135deg, #0f172a, #0f4c81);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.3px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}
.nav-links a {
    text-decoration: none;
    color: #1e293b;
    font-weight: 500;
    transition: 0.2s;
    font-size: 0.95rem;
}
.nav-links a:hover {
    color: #0f4c81;
    transform: translateY(-2px);
}

/* Hero Section with animated gradient */
.hero {
    min-height: 90vh;
    background: linear-gradient(125deg, #f1f5f9 0%, #e6f7f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 40%, rgba(16,185,129,0.08) 0%, transparent 60%);
    pointer-events: none;
}
.hero-content {
    max-width: 900px;
    padding: 2rem;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}
/* ONLY THIS PART IS MODIFIED */

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

/* FIXED TEXT COLORS FOR NAVY BACKGROUND */
.hero-content h1 {
    font-size: 8rem;
    margin-bottom: 3rem;
    color: #f8fafc; /* bright white */
    text-shadow: 0 0 12px rgba(56, 189, 248, 0.4); /* glow */
    margin-top: -100px;
}

.hero-content h3 {
    color: #e2e8f0; /* soft light gray */
    margin-top: 20px;
    font-size:1.1rem;
}

.hero-content p {
    color: #cbd5f5; /* light bluish */
    margin-top: 20px;
}

\.hero-content p {
    margin-bottom: 35px; /* adds gap below text */
}

.hero-content {
    max-width: 900px;
    padding: 2rem;
    z-index: 2;
    animation: fadeInUp 1s ease-out;

    transform: translateY(-60px); /* 🔼 moves text upwards */
}

.buttons {
    margin-top: 25px; /* pushes buttons slightly down */
}

.buttons {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
}
.secondary {
    background: transparent;
    border: 1.5px solid #0f4c81;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    color: #0f4c81;
    cursor: pointer;
    transition: all 0.25s;
    font-size: 0.9rem;
}
.secondary:hover {
    background: #0f4c81;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 20px -8px rgba(16,185,129,0.4);
}

/* Section Styles */
.section {
    padding: 80px 5%;
    max-width: 1300px;
    margin: 0 auto;
}
.section h2 {
    font-size: 2.4rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #0f172a, #0f4c81);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    width: 100%;
}
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.card {
    background: white;
    border-radius: 28px;
    padding: 1.8rem;
    text-align: center;
    font-weight: 600;
    font-size: 1.2rem;
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.2,0.9,0.4,1.1);
    border: 1px solid #e2e8f0;
    cursor: default;
}
.card:hover {
    transform: translateY(-8px);
    border-color: #0f4c81;
    box-shadow: 0 20px 30px -12px rgba(16,185,129,0.2);
}
.innovation-list, .impact-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}
.innovation-list li, .impact-list li {
    background: #f1f5f9;
    padding: 12px 24px;
    border-radius: 60px;
    font-weight: 500;
    border-left: 3px solid #0f4c81;
    transition: 0.2s;
}
.innovation-list li:hover, .impact-list li:hover {
    transform: translateY(-8px);
    border-color: #0f4c81;
    box-shadow: 0 20px 30px -12px rgba(16,185,129,0.2);
}
.leadership-card {
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    border-radius: 32px;
    padding: 2rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid #e2e8f0;
}
.leadership-card h3 {
    font-size: 1.8rem;
    color: #0f4c81;
    margin-bottom: 0.5rem;
}
.leadership-card p {
    color: #475569;
    line-height: 1.5;
}
.leadership-card:hover{
    transform: translateY(-8px);
    border-color: #0f4c81;
    box-shadow: 0 20px 30px -12px rgba(16,185,129,0.2);
}

.primary {
    background: #0f4c81;
    border: none;
    padding: 12px 32px;
    border-radius: 40px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: 0.2s;
    margin-top: 1rem;
    font-size: 1rem;
}
.primary:hover {
    background: #0f4c81;
    transform: scale(1.02);
    box-shadow: 0 10px 20px rgba(16,185,129,0.3);
}
.cta {
    background: linear-gradient(125deg, #0f172a, #1e293b);
    text-align: center;
    padding: 70px 20px;
    border-radius: 48px;
    margin: 40px 5%;
    color: white;
}
.cta h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}
.cta button {
    background: #0f4c81;
    border: none;
    padding: 14px 38px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.2s;
    color: white;
}
.cta button:hover {
    transform: scale(1.05);
    background: #0f4c81;
    box-shadow: 0 8px 20px #10b98150;
}
footer {
    background: #0f172a;
    color: #94a3b8;
    text-align: center;
    padding: 2rem;
    font-size: 0.85rem;
}

/* Login Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    visibility: hidden;
    opacity: 0;
    transition: 0.25s ease;
}
.modal.active {
    visibility: visible;
    opacity: 1;
}
.modal-content {
    background: white;
    border-radius: 48px;
    padding: 2.2rem;
    width: 90%;
    max-width: 400px;
    text-align: center;
    transform: scale(0.96);
    transition: 0.3s;
    box-shadow: 0 40px 60px rgba(0,0,0,0.3);
}
.modal.active .modal-content {
    transform: scale(1);
}
.modal-content h2 {
    color: #0f172a;
    margin-bottom: 1rem;
}
.modal-content p {
    color: #475569;
    margin-bottom: 1.5rem;
}
.input-group {
    margin: 1rem 0;
}
.input-group input {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid #e2e8f0;
    border-radius: 60px;
    font-size: 1rem;
    outline: none;
    transition: 0.2s;
}
.input-group input:focus {
    border-color: #0f4c81;
    box-shadow: 0 0 0 3px #10b98120;
}
.modal-btn {
    background: #0f4c81;
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 60px;
    font-weight: 700;
    color: white;
    cursor: pointer;
    margin-top: 0.5rem;
}
.modal-btn:hover {
    background: #0f4c81;
}
.close-modal {
    position: absolute;
    top: 20px;
    right: 28px;
    font-size: 28px;
    cursor: pointer;
    color: #64748b;
}
.login-message {
    margin-top: 1rem;
    font-size: 0.8rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gradient-text {
    background: linear-gradient(135deg, #0f4c81, #0f172a);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Responsive */

.hero {
    position: relative;
    height: 100vh;
    background: #0a192f; /* Navy Blue */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero button {
    padding: 12px 24px;
    border: none;
    background: #38bdf8;
    color: white;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.hero button:hover {
    background: #0ea5e9;
    transform: scale(1.05);
}



/* Scroll offset for sticky nav */
section {
    scroll-margin-top: 20px;
}

/* Innovation Big Box */
.innovation-box {
    background: rgba(255, 255, 255, 0.9);
    padding: 60px 40px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

/* Innovation Paragraph */
.innovation-para {
    font-size: 18px;
    margin-top: 15px;
    margin-bottom:10px;
    color: #0f4c81;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 15px;
    line-height: 1.6;
    word-wrap: break-word;

}

/* Innovation Cards */
.innovation-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

/* Single Card */
.innovation-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    transition: 0.3s ease;
    text-align: center;
}

/* Hover Effect */
.innovation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* Icon */
.innovation-card i {
    font-size: 40px;
    color: #0f4c81;
    margin-bottom: 15px;
}

/* Card Heading */
.innovation-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #0f172a;
}

/* Card Text */
.innovation-card p {
    font-size: 15px;
    color: #475569;
    line-height: 1.6;
}

/*impact card */
.impact-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);   /* ✅ 4 boxes side by side */
    gap: 25px;
    margin-top: 40px;
}

.impact-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    transition: 0.3s ease;
    text-align: center;
}

/* Increase icon size */
.impact-card i {
    font-size: 2.5rem; /* increase this value (try 4rem, 5rem if needed) */
    margin-bottom: 15px;
    color: #0f4c81; /* optional: nice blue glow */
    transition: 0.3s ease;
}

.impact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.impact-card h3 {
    font-size: 40px;
    margin-bottom: 15px;
}

.impact-card p {
    font-size: 16px;
    color:#0f4c81;
    line-height: 1.6;
    font-weight: 500;
}

/* BIG OUTER BOX */
.research-box {
    background: white;
    padding: 80px 60px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    max-width: 1300px;
    width: 95%;
    margin: auto;
    text-align: center;
}

/* SMALL BOX GRID */
.research-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
    transition: 0.3s ease;
}

/* SMALL CARD */
.research-card {
    background: white ;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    transition: 0.3s ease;
    text-align: center;
}

/* CARD HOVER */
.research-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* ICON */
.research-card i {
    font-size: 35px;
    color: #0f4c81;
    margin-bottom: 12px;
    display: block;
}

/* TITLE */
.research-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #0f172a;
}

/* TEXT */
.research-card p {
    font-size: 15px;
    color: #475569;
    line-height: 1.6;
}

/* ===== INNOVATION TEXT COLOR FIX ===== */
.innovation-card .dark-text {
    color: #0f172a;
    font-weight: 600;
}

.innovation-card .blue-text {
    color: #2563eb;
    font-weight: 600;
}

/* Dropdown container */
.dropdown {
    position: relative;
    display: inline-block;
    padding-bottom: 10px; /* creates invisible hover bridge */
}

/* Button styling */
.dropbtn {
    background: #0f4c81;
    color: white;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 14px;
    font-family: 'Inter', sans-serif;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s ease;
}

/* Hover effect */
.dropbtn:hover {
    background: #0891b2;
}

/* Dropdown content */
.dropdown-content {
    position: absolute;
    top: 100%;
    right: 0;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s ease;
    min-width: 180px;
}

/* Links inside dropdown */
.dropdown-content a {
    color: #0f172a;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-weight: 500;
    transition: 0.25s ease;
}

/* Hover on links */
.dropdown-content a:hover {
    background: #f1f5f9;
    color: #0f4c81;
    padding-left: 20px;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Hamburger toggle — hidden on desktop */
.nav-toggle {
    display: none;
}

.innovation-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: -10px;
    margin-bottom: 20px;
    text-align: center;
    color: #2563eb;
}

.qnebula-title {
    margin-top: 50px;
}

/* ============================================================
   MOBILE RESPONSIVE FIXES (≤768px) — Only for specified sections
   ============================================================ */
@media (max-width: 768px) {

  /* ── 1. NAVBAR ──────────────────────────────────────────── */
  nav {
    flex-wrap: wrap;
    padding: 0.6rem 4%;
    gap: 6px;
    position: sticky;
    top: 0;
    z-index: 1000;
    align-items: center;
  }

  .logo-container {
    flex: 0 0 auto;
  }

  .logo-text {
    font-size: 0.95rem;
    white-space: nowrap;
  }

  .logo {
    width: 34px;
    height: 34px;
  }

  /* ── Hamburger toggle — show on mobile ── */
  .nav-toggle {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    margin-left: auto;
    z-index: 1100;
  }

  .nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #0f172a;
    border-radius: 2px;
    transition: 0.3s ease;
  }

  /* Animate to X when open */
  .nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* ── Nav links — hidden by default, slide down when open ── */
  .nav-links {
    display: none !important;
    flex-direction: column !important;
    width: 100%;
    order: 3;
    background: rgba(255,255,255,0.97);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    border-radius: 12px;
    padding: 10px 8px !important;
    margin-top: 4px;
    gap: 2px !important;
  }

  .nav-links.open {
    display: flex !important;
  }

  .nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: #0f172a;
    padding: 10px 14px;
    border-radius: 8px;
    border-bottom: none !important;
    white-space: nowrap;
  }

  .nav-links a:hover,
  .nav-links a.active {
    background: #f0f9ff;
    color: #0f4c81;
    transform: none;
  }

  /* Dropdown button */
  .dropdown {
    flex: 0 0 auto;
    padding-bottom: 0;
    position: relative;
  }

  .dropbtn {
    font-size: 13px;
    padding: 8px 13px;
    border-radius: 8px;
    background: #0f4c81;
    color: #fff;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .dropbtn:hover {
    background: #0891b2;
  }

  /* Dropdown menu */
  .dropdown-content {
    position: absolute;
    top: 100%;
    right: 0;
    left: auto;
    min-width: 160px;
    z-index: 9999;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    background: #ffffff;
  }

  .dropdown-content a {
    padding: 12px 16px;
    font-size: 14px;
    display: block;
    color: #0f172a;
    font-weight: 500;
  }

  .dropdown:hover .dropdown-content,
  .dropdown:focus-within .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  /* ── Scroll offset so sticky nav doesn't cover section headings ── */
  section {
    scroll-margin-top: 70px;
  }

  /* ── Hero: fix oversized text and broken vertical offset ── */
  .hero-content h1 {
    font-size: 3rem !important;
    margin-top: 0 !important;
    margin-bottom: 1rem !important;
  }

  .hero-content h3 {
    font-size: 0.95rem !important;
  }

  .hero-content p {
    font-size: 0.9rem !important;
    margin-top: 10px !important;
    margin-bottom: 20px !important;
  }

  .hero-content {
    transform: none !important;        /* remove the -60px offset that causes overflow */
    padding: 1.2rem !important;
  }

  .buttons {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem !important;
    margin-top: 20px;
  }

  .buttons a {
    width: 100%;
    max-width: 240px;
    display: block;
  }

  .buttons .secondary {
    width: 100%;
    max-width: 240px;
    padding: 12px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    text-align: center;
    border-radius: 40px;
    box-sizing: border-box;
  }

  /* ── 2. ABOUT SECTION ───────────────────────────────────── */
  #about.section {
    padding: 40px 5%;
    text-align: center;
  }

  #about.section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    text-align: center;
  }

  #about.section p {
    font-size: 1rem !important;
    line-height: 1.75;
    text-align: center !important;
    padding: 0 8px;
    max-width: 100% !important;
    margin: 0 auto !important;
    color: #334155;
  }

  /* ── 3. RESEARCH CARDS ──────────────────────────────────── */
  .research-box {
    padding: 30px 16px;
    border-radius: 18px;
    width: 100%;
  }

  .research-box h2 {
    font-size: 1.8rem;
  }

  .research-cards {
    grid-template-columns: 1fr !important;
    gap: 16px;
    margin-top: 20px;
  }

  .research-card {
    padding: 22px 18px;
    border-radius: 16px;
  }

  .research-card i {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .research-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .research-card p {
    font-size: 14px;
  }

  /* ── 4. INNOVATION SECTION ──────────────────────────────── */
  .innovation-box {
    padding: 16px 16px 30px;
    border-radius: 18px;
    width: 100%;
    box-sizing: border-box;
  }

  .innovation-box h2 {
    font-size: 1.8rem;
    margin-bottom: 4px;
  }

  .innovation-title {
    font-size: 1.4rem;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .qnebula-title {
    margin-top: 30px;
  }

  .innovation-para {
    font-size: 0.95rem !important;
    margin-top: 10px;
    margin-bottom: 16px;
    text-align: left;
  }

  .innovation-cards {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

  .innovation-card {
    padding: 22px 18px;
    border-radius: 16px;
  }

  .innovation-card i {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .innovation-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .innovation-card p {
    font-size: 14px;
    line-height: 1.6;
  }

  /* ── 5. IMPACT CARDS ────────────────────────────────────── */
  .impact-cards {
    grid-template-columns: 1fr !important;
    gap: 16px;
    margin-top: 20px;
  }

  .impact-card {
    padding: 24px 18px;
    border-radius: 16px;
  }

  .impact-card i {
    font-size: 2rem;
    margin-bottom: 12px;
  }

  .impact-card p {
    font-size: 15px;
  }

  /* ── 6. LEADERSHIP ──────────────────────────────────────── */
  #leadership.section {
    padding: 40px 5%;
  }

  #leadership.section h2 {
    font-size: 1.8rem;
  }

  .leadership-card {
    padding: 1.5rem 1.2rem;
    border-radius: 20px;
  }

  /* ── 7. CTA / COLLABORATE ───────────────────────────────── */
  .cta {
    padding: 50px 16px;
    border-radius: 28px;
    margin: 24px 4%;
  }

  .cta h2 {
    font-size: 1.6rem;
  }

  /* ── 8. GENERAL SECTION PADDING ─────────────────────────── */
  .section {
    padding: 40px 4%;
  }

}
@media (max-width: 768px) {

    .innovation-box {
        padding: 25px 15px;
    }

    .innovation-title {
        text-align: center;
        font-size: 22px;
    }

    .innovation-para {
        text-align: center;
        font-size: 15px;
        width: 100%;
        padding: 0 12px;
        margin: 15px auto;
        line-height: 1.7;
    }
}