/* ===== GLOBAL ===== */
body{
    margin:0;
    font-family:Arial, sans-serif;
    background:#ffffff; /* White page background */
}

/* ===== HEADER ===== */
header{
    background: linear-gradient(90deg, #0a2a66, #1e90ff);
    color:white;
    padding:15px 20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    position:sticky;
    top:0;
    z-index:100;
    flex-wrap:wrap;
}

header img {
    height:50px;
    margin-right:15px;
}
header h2{
    margin:0;
    font-size:22px;
    color:white;
}
nav a{
    color:white;
    text-decoration:none;
    margin-left:15px;
    font-size:14px;
}
nav a:hover{color:#000;background:#ffcc00;padding:5px;border-radius:5px}

/* ===== HEADING ===== */
.big-heading{
    text-align:center;
    font-size:30px;
    font-weight:bold;
    margin:25px 10px;
    color:#004080;
}

/* ===== FILTER ===== */
.filter-bar{
    display:flex;
    justify-content:center;
    gap:10px;
    margin-bottom:20px;
    flex-wrap:wrap;
}
.filter-bar a{
    padding:10px 18px;
    background:#004080;
    color:white;
    text-decoration:none;
    border-radius:6px;
    font-weight:bold;
}
.filter-bar a:hover{background:#0066cc}

/* ===== JOB BOX ===== */
.job-box{
    width:90%;
    max-width:950px;
    margin:auto;
    background:white;
    padding:15px;
    border-radius:10px;
    box-shadow:0 4px 12px rgba(0,0,0,0.15);
}
.job-box h3{
    text-align:center;
    color:#004080;
    margin-bottom:10px;
}

h2,h3{color:#e53935;border-bottom:1px solid #e53935;padding-bottom:4px;}

/* ===== TABLE ===== */
table{width:100%;border-collapse:collapse}
th,td{border:1px solid #ccc;padding:10px;}
th{background:#004080;color:#ffffff;}
.apply{background:green;color:white;padding:6px 12px;text-decoration:none;border-radius:5px;}
.apply:hover{background:red}

/* ===== FAQ ===== */
.faq-box{
    width:90%;
    max-width:950px;
    margin:40px auto;
    background:white;
    padding:20px;
    border-radius:10px;
}
.faq-question{
    width:100%;
    padding:12px;
    background:#004080; /* Blue FAQ button */
    color:white;
    border:none;
    margin-bottom:5px;
    cursor:pointer;
    border-radius:5px;
}
.faq-answer{
    display:none;
    padding:10px;
    background:#ffffff;
    margin-bottom:10px;
}

/* ===== FOOTER ===== */
footer{
    background: linear-gradient(90deg, #1e90ff, #0a2a66);
    color:white;
    text-align:center;
    padding:15px;
    margin-top:40px;
}

footer a{
    color:white;
    font-weight:bold;
    text-decoration:none;
    margin:0 8px;
}

/* ===== TOP BUTTON ===== */
#topBtn{
    position:fixed;
    bottom:25px;
    right:25px;
    background:black;
    color:#ffcc00;
    border:none;
    border-radius:50%;
    width:45px;
    height:45px;
    font-size:20px;
    display:none;
    cursor:pointer;
}

/* ===== SHARE ===== */
.share-box{
    text-align:center;
    margin:30px 0;
}
.share-box button{
    background:#004080;
    color:white;
    border:none;
    padding:12px 20px;
    font-size:16px;
    font-weight:bold;
    border-radius:30px;
    cursor:pointer;
    box-shadow:0 4px 10px rgba(0,0,0,0.3);
}
.share-box button:hover{opacity:0.85}

/* ===== MOBILE RESPONSIVE ===== */
@media(max-width:768px){
    header{
        flex-direction:column;
        align-items:flex-start;
    }
    nav{
        margin-top:10px;
    }
    .big-heading{font-size:24px;}
    table, th, td{font-size:14px;}
}

/* ======== FREE AI === * /

/* =========================
   FREE AI PAGE (ONLY)
========================= */

/* ================================
   FREE AI PAGE – SCREENSHOT DESIGN
================================ */

.free-ai-page {
  background: #f2f4f7;
  color: #222;
}

/* Back Button */
.free-ai-page .back-btn {
  position: fixed;
  top: 25px;
  left: 25px;
  background: #000;
  color: #fff;
  padding: 10px 18px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  z-index: 999;
}


/* Header */
.free-ai-page .ai-header {
  background: linear-gradient(90deg, #0b2cff, #1e90ff);
   padding: 40px 20px 35px;
  text-align: center;
  color: #fff;
}
.free-ai-page .ai-header h1 {
  color: #ffffff;
}
.free-ai-page .ai-header p {
  color: #eaf1ff;
}

header {
  text-align: center;
}


.ai-header {
  text-align: center;
}

.free-ai-page .ai-header h1 {
  color: #0033cc;
  font-size: 36px;
  margin-bottom: 10px;
}

/* Layout */
.free-ai-page .container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
}

/* White Cards */
.free-ai-page .section {
  background: #ffffff;
  padding: 35px;
  border-radius: 16px;
  margin-bottom: 40px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* Titles */
.free-ai-page h2 {
  color: #0033cc;
}

/* Courses Grid */
.free-ai-page .courses {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* Course Card */
.free-ai-page .course {
  position: relative;
  padding-left: 28px;
}

.free-ai-page .course::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10%;
  width: 6px;
  height: 80%;
  background: #0a9f3c;
  border-radius: 6px;
}

.free-ai-page .course h3 {
  color: #d60000;
}

.free-ai-page .course a {
  color: #0033cc;
  font-weight: bold;
  text-decoration: none;
}

/* Footer */
.free-ai-page .ai-footer {
  background: linear-gradient(90deg, #1e90ff, #0b2cff);
  color: #ffffff;
  text-align: center;
  padding: 22px;
  font-weight: bold;
}

.free-ai-page .ai-header {
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.box-btn {
  display: block;
  margin: 10px auto;
  padding: 12px;
  background:#004080;
  color:#fff;
  text-decoration:none;
  border-radius:6px;
  font-size:16px;
  font-weight:bold;
  width:100%;
  text-align:center;
}

.breadcrumb{
  font-size:14px;
  padding:8px 12px;
  background:#f4f9ff;
  white-space:nowrap;
  overflow-x:auto;
}
.breadcrumb a{
  color:#1565c0;
  text-decoration:none;
}
.breadcrumb span{
  margin:0 6px;
  color:#777;
}
.breadcrumb .active{
  color:#e53935;
  font-weight:bold;
}

