/*
Theme Name: Future Creator
Theme URI: https://futurecreator.in
Author: Sudish World
Author URI: https://sudishworld.com
Description: This is my custom WordPress theme
Version: 1.0
Text Domain: my-custom-theme
*/


    /* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  margin-bottom: -2px;
}

body {
  overflow-x: hidden;
  background: #f5f7fb;
}

/* HEADER */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* CONTAINER */
.header-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 15px;
}



/* LOGO */
.logo img {
  height: 80px;
}

/* ===== MENU ===== */
.menu {
  display: flex;
  list-style: none;
  gap: 0px;
}

.menu li {
  position: relative;
}

.menu a {
  text-decoration: none;
  color: #000;
  font-weight: 600;
  padding: 20px;
  display: block;
}

/* ===== SUBMENU (DESKTOP) ===== */
.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  display: none;
  min-width: 200px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.submenu li {
  border-bottom: 1px solid #eee;
  list-style: none; 
}

.submenu a {
  padding: 10px 15px;
}

/* HOVER */
.has-submenu:hover .submenu {
  display: block;
}

/* ===== MOBILE ===== */
@media (max-width: 992px) {

  .menu {
    position: absolute;
    top: 90px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;

    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .menu.active {
    max-height: 600px; /* adjust kar sakte ho */
  }

  .menu li {
    width: 100%;
  }

  .menu a {
    padding: 8px 10px;
    border-bottom: 1px solid #eee;
  }

  /* SUBMENU */
  .submenu {
    position: static;
    display: none;
    box-shadow: none;
    padding-left: 10px;
  }

  .has-submenu.active .submenu {
    display: block;
  }
}
/* DEFAULT (DESKTOP) */
.menu-toggle {
  display: none;
  margin-left: auto;
}

/* MOBILE / TABLET */
@media (max-width: 992px) {
  .menu-toggle {
    display: block;
    font-size: 26px;
    cursor: pointer;
    margin-left: auto;
  }
}




/* HERO */
.hero{
display:flex;
align-items:center;
justify-content:space-between;
padding:60px 20px;
background:linear-gradient(135deg,#0d6efd,#6ea8fe);
color:white;
flex-wrap:wrap;
gap:30px;
}

.hero-text{max-width:500px;}

.hero-text h2{font-size:32px;margin-bottom:10px;}

.hero-text p{margin-bottom:15px;}

.btn{
background:#ffc107;
padding:10px 20px;
border-radius:5px;
text-decoration:none;
color:black;
font-weight:600;
}

.hero img{
max-width:100%;
height:auto;
}

/* SECTION */
.section{
padding:50px 10px;
text-align:center;
margin:auto;
}

.section h2{
color:#0d6efd;
margin-bottom:30px;
}

/* SERVICES */
.services-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;
}

.card{
background:white;
padding:20px;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,0.08);
transition:0.1s ease-in-out;
}

.card:hover{
transform:translateY(-6px);
box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

.card img{
width:60px;
margin-bottom:10px;
}


/* DEFAULT (BIG SCREEN) */
.course-grid,
.popular-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;
}

/* LAPTOP (1024px) â†’ 4 CARD */
@media(max-width:1200px){
    .course-grid,
    .popular-grid{
        grid-template-columns:repeat(4,1fr);
    }
}

/* TABLET */
@media(max-width:992px){
    .course-grid,
    .popular-grid{
        grid-template-columns:repeat(3,1fr);
    }
}

/* MOBILE */
@media(max-width:768px){
    .course-grid,
    .popular-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

/* SMALL MOBILE */
@media(max-width:480px){
    .course-grid,
    .popular-grid{
        grid-template-columns:1fr;
    }
}
/* CARD */
.card2{
text-decoration:none;
color:#000;
border-radius:12px;
overflow:hidden;
background:#fff;
box-shadow:0 5px 15px rgba(0,0,0,0.08);
transition:0.1s ease-in-out;
position:relative;
}

.card2 h3{
padding:12px;
font-size:15px;
margin:0;
}
.card2 h3 a {
  text-decoration: none;  /* underline remove */
  color: #0d6efd;
  font-weight: 600;
}

.card2 h3 a:hover {
  color: #0a58ca; /* hover effect */
}
/* IMAGE */
.img-box{
position:relative;
overflow:hidden;
}

.img-box img{
width:100%;
height:190px;
object-fit:fit;
transition:0.12s ease-in-out;
}

/* OVERLAY */
.overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
display:flex;
align-items:center;
justify-content:center;
opacity:0;
transition:0.12s ease-in-out;
}

.overlay span{
background:#ffc107;
padding:10px 18px;
border-radius:5px;
font-weight:600;
color:#000;
}

/* HOVER */
.card2:hover .overlay{opacity:1;}
.card2:hover img{transform:scale(1.08);}
.card2.active .overlay{opacity:1;}

/* TEXT */
.card-content{
padding:0 12px 12px;
font-size:13px;
line-height:1.4;
color:#000000;
text-align:justify;
}

/* PROCESS */
.process{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:15px;
}

.step{
background:#0d6efd;
color:white;
padding:15px;
border-radius:8px;
width:150px;
}

/* CTA */
.cta{
background:#198754;
color:white;
padding:40px 20px;
text-align:center;
}

/* FOOTER */
.footer{
background:#111;
color:#fff;
padding:50px 20px 20px;
}

.footer-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:25px;
max-width:1200px;
margin:auto;
}

.footer-box h3{
margin-bottom:15px;
color:#ffc107;
}

.footer-box p,
.footer-box a{
font-size:14px;
color:#ccc;
text-decoration:none;
display:block;
margin-bottom:8px;
}

.footer-box a:hover{
color:#fff;
}

.footer-bottom{
text-align:center;
margin-top:30px;
border-top:1px solid #333;
padding-top:15px;
font-size:14px;
}

/* ================= RESPONSIVE ================= */

/* BIG SCREEN */
@media(min-width:1400px){
.section{padding:30px 40px;}
}

/* LAPTOP */
@media(max-width:1200px){
.section{padding:30px 15px;}
}





/* SMALL MOBILE */
@media(max-width:480px){

.course-grid,
.popular-grid{
grid-template-columns:1fr;
}

.hero-text h2{font-size:24px;}
.card2 h3{font-size:14px;}
}

/* EXTRA SMALL */
@media(max-width:360px){
.section{padding:30px 10px;}
}

/* MARQUEE */
@keyframes scroll-left{
from{transform:translateX(100%);}
to{transform:translateX(-100%);}
}

.slider {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.slides {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.slide {
  min-width: 100%;
  position: relative;
  height: 500px; 
}

.slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: fill; /* 🔥 FIX (fill hatao) */
}

/* Text Overlay */
.caption {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  color: #fff;
}

.caption h1 {
  font-size: 40px;
}

.caption p {
  font-size: 18px;
}

.caption a {
  display: inline-block;
  background: #ffc107;
  padding: 10px 20px;
  color: #000;
  margin-top: 10px;
  text-decoration: none;
}

/* Arrows */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  padding: 10px;
  cursor: pointer;
}

.prev { left: 10px; }
.next { right: 10px; }
/* Tablet */
@media (max-width: 992px) {
  .slide {
    height: 400px; /* 👉 image nahi slide control karo */
  }

  .caption h1 {
    font-size: 28px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .slide {
    height: 200px; /* 👉 main fix */
  }

  .caption {
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
  }

  .caption h1 {
    font-size: 20px;
  }

  .caption p {
    font-size: 14px;
  }

  .caption a {
    padding: 6px 12px;
    font-size: 12px;
  }
}





.about-section {
  padding: 60px 0px;
  background: #f5f7fb;
}

.about-container {
  max-width: 1440px;
  margin: auto;
  padding: 0 20px;
}

/* Image + Text side by side */
.about-row {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

.about-img {
  flex: 0 0 33.33%;
  max-width: 33.33%;
}

.about-img img {
  width: 100%;
  border-radius: 10px;
}

/* Text parallel to image */
.about-content {
  flex: 0 0 calc(66.66% - 40px);
  max-width: calc(66.66% - 40px);
}

/* Extra text â€” full width niche */
.about-full-text {
  width: 100%;
  margin-top: 30px;
  font-size: 15px;
  color: #444;
  line-height: 1.7;
  text-align: justify;
}

@media (max-width: 768px) {
  .about-row {
    flex-direction: column;
  }
  .about-img,
  .about-content {
    flex: 0 0 100%;
    max-width: 100%;
  }
}




.contact-section{
  padding:60px 20px;
  background:#f5f7fb;
}

.contact-container{
  max-width:1200px;
  margin:auto;
  display:flex;
  gap:40px;
  flex-wrap:wrap;
}

.contact-form{
  flex:1;
  background:#fff;
  padding:25px;
  border-radius:10px;
}

.contact-form h2{
  margin-bottom:15px;
  color:#0d6efd;
}

.contact-form input,
.contact-form textarea{
  width:100%;
  padding:10px;
  margin-bottom:10px;
  border:1px solid #ddd;
  border-radius:5px;
}

.contact-form button{
  background:#0d6efd;
  color:#fff;
  border:none;
  padding:10px 20px;
  cursor:pointer;
  border-radius:5px;
}

/* RIGHT SIDE */
.contact-info{
  flex:1;
}

.contact-info h3{
  margin-bottom:10px;
}

.map iframe{
  width:100%;
  height:380px;
  border-radius:10px;
  margin-top:15px;
}

/* RESPONSIVE */
@media(max-width:768px){
  .contact-container{
    flex-direction:column;
  }
}


.branch-section{
  padding:50px 20px;
  text-align:center;
}

.branch-section h2{
  color:#0d6efd;
  margin-bottom:25px;
}

.branch-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
  max-width:1200px;
  margin:auto;
}

.branch-card{
  background:#fff;
  padding:20px;
  border-radius:10px;
  box-shadow:0 5px 15px rgba(0,0,0,0.08);
  transition:0.2s;
}

.branch-card:hover{
  transform:translateY(-5px);
}

.branch-card h3{
  margin-bottom:10px;
  color:#0d6efd;
}

.branch-card p{
  font-size:14px;
  color:#555;
  margin:5px 0;
}

/* RESPONSIVE */
@media(max-width:992px){
  .branch-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:576px){
  .branch-grid{
    grid-template-columns:1fr;
  }
}




.split-section{
  padding:40px 20px; /* thoda compact */
  background:#f5f7fb;
}

.split-container{
  max-width:1440px; /* ðŸ”¥ yahi main fix */
  margin:auto;
  display:grid;
  grid-template-columns:1fr 2fr;
  gap:25px;
  align-items:center;
}

/* IMAGE */
.split-image img{
  width:100%;
  height:320px; 
  object-fit:fill;
  border-radius:10px;
}

/* CONTENT */
.split-content h2{
  font-size:26px; /* thoda compact */
  color:#0d6efd;
  margin-bottom:10px;
}

.split-content p{
  font-size:14px;
  color:#000000;
  margin-bottom:8px;
}

.split-btn{
  display:inline-block;
  margin-top:10px;
  background:#ffc107;
  padding:8px 18px;
  border-radius:5px;
  text-decoration:none;
  color:#000;
  font-weight:600;
}

/* RESPONSIVE */
@media(max-width:768px){
  .split-container{
    grid-template-columns:1fr;
  }

  .split-image img{
    height:auto;
  }
}





/*Image*/
.image-section {
  padding: 50px 15px;
  background: #f9f9f9;
}

.gallery-title {
  text-align: center;
  color: #0d6efd;
  margin-bottom: 30px;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  max-width: 1200px;
  margin: auto;
}

.image-item img {
  width: 100%;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.image-item img:hover {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 992px) {
  .image-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .image-grid {
    grid-template-columns: 1fr;
  }
}

/* Lightbox */
#lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 35px;
  color: #fff;
  cursor: pointer;
}


/*Video*/
.video-section {
  padding: 50px 20px;
  max-width: 1200px;
  margin: auto;
}

.title {
  text-align: center;
  margin-bottom: 30px;
  color: #0d6efd;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.video-card {
  background: #fff;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 10px;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-card h3 {
  margin: 10px 0 5px;
}

.video-card p {
  font-size: 14px;
  color: #555;
}

/* Responsive */
@media (max-width: 992px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .video-grid {
    grid-template-columns: 1fr;
  }
}




/* MAIN FIX */

.custom-row {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: center;
  gap: 20px;           /* popular-grid ka gap same */
}

.custom-image {
  width: 33.33% !important;
  flex: 0 0 33.33% !important;
}

.custom-content {
  width: 65.00% !important;
  flex: 0 0 65.00% !important;
}

.custom-image img {
  width: 100%;
  height: 280px;
  object-fit: fill;
  border-radius: 12px;
}

/* Mobile fix */
@media (max-width: 768px) {
  .custom-row {
    flex-direction: column !important;
  }
  .custom-image,
  .custom-content {
    width: 100% !important;
    flex: 100% !important;
  }
}




/* POPUP BACKGROUND */
.popup-form {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

/* BOX */
.popup-content {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  position: relative;
}

/* CLOSE */
.close-popup {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 22px;
  cursor: pointer;
}

/* FORM */
.popup-content input {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.popup-content button {
  width: 100%;
  padding: 10px;
  background: #0d6efd;
  color: #fff;
  border: none;
  border-radius: 5px;
}







/* BUTTON SAME SIZE */
.card-buttons .apply-btn,
.card-buttons .view-btn {
  flex: 1;
  text-align: center;
}

/* GAP BETWEEN BUTTON */
.card-buttons .apply-btn {
  margin-right: 10px;
}
.card-buttons {
  display: flex;
  justify-content: space-between;
  padding: 7px;
}

/* APPLY BUTTON */
.apply-btn {
  background: #ffc107;
  padding: 8px 15px;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
}

/* VIEW BUTTON */
.view-btn {
  background: #0d6efd;
  color: #fff;
  padding: 8px 15px;
  border-radius: 5px;
  text-decoration: none;
}

/* HOVER */
.apply-btn:hover {
  background: #e0a800;
}

.view-btn:hover {
  background: #0a58ca;
}


/* ================= HEADER ================= */
.page-header {
  background: 
    linear-gradient(rgba(13, 110, 253, 0.75), rgba(110, 168, 254, 0.75)),
    url('https://futurecreator.in/wp-content/uploads/2026/04/app-development-sudish-world.jpg') 
    center center / cover no-repeat;
    
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}
.page-header h1 {
  font-size: 32px;
  margin-bottom: 10px;
}

.breadcrumb {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
}

.breadcrumb a {
  color: #fff;
  text-decoration: none;
}
/* ================= LAYOUT ================= */
.blog-wrapper {
  background: #f5f7fb;
  padding: 40px 15px;
}

.blog-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 25px;
}

/* ================= BLOG POST ================= */
.blog-post {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
}

.blog-post h1 {
  font-size: 20px;
  margin-bottom: 10px;
}

/* META */
.post-meta {
  font-size: 14px;
  color: #777;
  margin-bottom: 15px;
  display: flex;
  gap: 10px;
  align-items: center;
}

/* IMAGE */
.feature-image {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 20px;
}

/* CONTENT */
.post-content {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
}

/* ================= SIDEBAR ================= */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-widget {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
}

.sidebar-widget h3 {
  margin-bottom: 15px;
  color: #0d6efd;
}

/* ================= RECENT POSTS ================= */
.recent-posts {
  list-style: none;
}

.recent-item {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  align-items: center;
}

.recent-thumb {
  width: 60px;
  height: 60px;
  object-fit: fill;
  border-radius: 8px;
}

.recent-title {
  font-size: 14px;
  color: #000;
  text-decoration: none;
}

.recent-title:hover {
  color: #0d6efd;
}

/* ================= ADS ================= */

.sidebar-ad {
  position: relative; /* ðŸ‘ˆ main fix */
  display: block;
}

.sidebar-ad img {
  width: 100%;
  border-radius: 10px;
  transition: 0.3s;
}

.sidebar-ad img:hover {
  transform: scale(1.05);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .blog-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {

  .page-header h1 {
    font-size: 22px;
  }

  .blog-post h1 {
    font-size: 15px;
  }

  .recent-thumb {
    width: 50px;
    height: 50px;
  }
}
.ad-badge {
  position: absolute;
  top: 0px;
  left: 0px;
  
  color: white;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 600;
  letter-spacing: 0.5px;
}



