* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

html{
  scroll-behavior: smooth;
}

/* -------- Header Top -------- */

/* ---------------------- Logo ---------------------- */
.logo img {
  width: 60px;
  height: auto;
  vertical-align: middle;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  padding: 15px 30px;
  background: #fff;
  border-bottom: 1px solid #ddd;
  z-index: 1000;
}

/* Logo text */
.logo {
  display: flex;
  align-items: center;
  font-size: 26px;
  font-weight: bold;
  color: #0b3c88;
}

.logo span {
  color: #ef3b2d;
  margin-right: 6px;
}

/* ---------------------- Top Menu ---------------------- */
.top-menu {
  display: flex;
  align-items: center;
  gap: 18px;
}

.top-menu a {
  text-decoration: none;
  color: #333;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.top-menu a:hover {
  color: #0b3c88;
}

.phone {
  font-size: 14px;
  color: #444;
}

select {
  padding: 5px 8px;
  font-size: 13px;
  border-radius: 4px;
  border: 1px solid #ccc;
}

/* Hamburger button (for mobile) */
.menu-toggle {
  display: none;
  font-size: 26px;
  background: none;
  border: none;
  cursor: pointer;
  color: #0b3c88;
}

/* ---------------------- Blue Strip ---------------------- */
.blue-strip {
  background: #3f5fbf;
  padding: 8px 40px;
  display: flex;
  gap: 25px;
  font-size: 14px;
  overflow-x: auto;   /* scroll in mobile */
}

.blue-strip a {
  color: #fff;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.blue-strip a:hover {
  color: #ffd700;
}

.blue-strip a::after {
  content: " ▼";
  font-size: 10px;
}

/* ---------------------- Hero Section ---------------------- */
.hero {
  height: 740px;
  background: url('image/e.jpg') no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  position: relative;
}

/* ---------------------- Hero Content ---------------------- */
.hero-content {
  width: 100%;
  height: 50vh;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 0 5%;
  box-sizing: border-box;
}

.head {
  text-align: right;
  max-width: 500px;
}

.head h2 {
  margin: 0 0 20px 0;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2;
}

.head h2 span {
  display: block;
  font-size: 42px;
  background: linear-gradient(90deg, #ff7eb3, #ff758c, #ffce00, #06b6d4, #7c3aed);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 8s linear infinite;
}

@keyframes shine {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

/* ---------------------- Search Box ---------------------- */
.search-container {
  position: relative;
  display: flex;
  justify-content: flex-end;
  margin-top: 12px;
}

.search-box {
  width: 100%;
  max-width: 450px;
  padding: 12px 40px;
  border-radius: 30px;
  border: none;
  outline: none;
  font-size: 16px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.15);
}

.search-icon {
  position: absolute;
  left: 15px;
  color: #888;
  font-size: 18px;
}

.clear-btn {
  position: absolute;
  right: 15px;
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: #888;
  transition: color 0.2s ease;
}

.clear-btn:hover {
  color: #333;
}

/* ---------------------- Suggestions ---------------------- */
.suggestions {
  position: absolute;
  top: 105%;
  width: 100%;
  max-width: 450px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.15);
  display: none;
  z-index: 1000;
  overflow: hidden;
}

.suggestions div {
  padding: 12px 15px;
  font-size: 15px;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease;
  color: #000;   /* ✅ Black text */
}

.suggestions div:hover {
  background: #f4f4f4;
  color: #0b3c88;  /* Hover पर blue highlight */
  transform: translateX(3px);
}

/* ---------------------- Responsive ---------------------- */
@media (max-width: 768px) {
  .top-menu {
    position: absolute;
    top: 65px;
    right: 0;
    width: 220px;
    flex-direction: column;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    display: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }

  .top-menu.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
  .suggestions {
    max-width: 100%;     /* ✅ Mobile में पूरी width */
    font-size: 14px;     /* Text थोड़ा छोटा */
  }

  .suggestions div {
    padding: 10px 12px;  /* Padding mobile friendly */
    font-size: 14px;
    text-align: center;    /* ✅ Mobile पर left aligned better दिखेगा */
  }

}


/*-------------------- Video Call Section ------------------------------------> */
.video-call {
  margin-top: 50px; /* small gap from search box */
  text-align: center;
}

.call-text {
  font-size: 18px;
  margin-bottom: 8px;
  color: rgb(245, 244, 242);
  font-family: 'Poppins', sans-serif; 
  /* font-weight: bold; */
   text-shadow: 2px 2px 5px rgba(234, 247, 51, 0.5);
}

.join-call-btn {
  background: #0062c5;
  color: white;
  padding: 12px 25px;
  font-size: 16px;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.join-call-btn:hover {
  background: #005bb5;
}


@media (max-width: 768px) {

.video-call {
  margin-top: 60px; /* small gap from search box */
  text-align: center;
}

.call-text {
  font-size: 18px;
  margin-bottom: 8px;
  color: rgb(221, 122, 17);

}
}

/* --------------------------------------------card---------------------------------------------- */



 .options {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.option-card {
  width: 220px;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 25px 15px;
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
  background: #fff;
}

.option-card img {
  width: 60px;
  margin-bottom: 12px;
}

.option-card p {
  font-size: 15px;
  font-weight: bold;
  color: #333;
}

.option-card:hover {
  border-color: #1a237e;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}


#header {
  width: 100%;
  height: 100vh;
  background-image: url(file:///C:/Users/LENOVO/Downloads/view-professional-business-people-working-together.jpg);
  background-size: cover;
  background-position: center;

}


/* Mobile view */
@media (max-width: 768px) {
  .header {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .contact {
    margin-top: 10px;
  }
}

/* <!------------------------------- About Us----------------------------------> */

.hero4 {
  height: 780px; /* auto means fixed height हटाया */
  background: url('image/o.webp') no-repeat center center/cover;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
}

/* --- About Section -- */
.about-section {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.about-section h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #f1f3f5;
}

.about-section p {
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
  font-size: 1.1rem;
  color: #e9ecef;
}

.highlight {
  color: #ffd700;
  font-weight: bold;
}

/* --- Cards --- */
.about-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  background: rgba(0, 0, 0, 0.6);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  width: 280px;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card h3 {
  margin-bottom: 10px;
  color: #00bfff;
  font-size: 1.3rem;
}

.card p {
  font-size: 1rem;
  color: #f8f9fa;
}

/* -- Responsive -- */
@media (max-width: 992px) {
  .about-section h1 {
    font-size: 2rem;
  }
  .about-section p {
    font-size: 1rem;
    padding: 0 10px;
  }
}

@media (max-width: 768px) {
  .hero4 {
    padding: 40px 15px;
  }
  .about-section h1 {
    font-size: 1.8rem;
  }
  .about-section p {
    font-size: 0.95rem;
  }
  .card {
    width: 100%;
    max-width: 350px;
  }
}

@media (max-width: 480px) {
  .about-section h1 {
    font-size: 1.6rem;
  }
  .about-section p {
    font-size: 0.9rem;
  }
  .card {
    width: 100%;
    padding: 15px;
  }
  .card h3 {
    font-size: 1.1rem;
  }
  .card p {
    font-size: 0.9rem;
  }
}


/*-------------------------------- services------------------------------ */
.hero1 {
  min-height: 780px;
  background: url('image/l.jpg') no-repeat center center/cover;
  position: relative;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  flex-direction: column;
}

.sub-title {
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 40px;
  color: #faf7f7;
}

/* ---Services List --- */
.services-list {
  display: grid;
  justify-content: center;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-top: 20px;
  width: 100%;
  max-width: 1100px;
}

.services-list div {
  background: rgba(0, 0, 0, 0.6);
  padding: 30px;
  font-size: 14px;
  font-weight: 400;
  border-radius: 12px;
  transition: all 0.3s ease;
  text-align: center;
}

.services-list div img {
  margin-bottom: 15px;
  width: 50px;
  height: 50px;
}

.services-list div h2 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #ffd700;
}

.services-list div p {
  font-size: 14px;
  line-height: 1.5;
  color: #f1f1f1;
}

.services-list div:hover {
  background: #ff004f;
  transform: translateY(-8px);
}

/* ---- Services Links (bottom buttons) --- */
.services-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.services-links a {
  text-decoration: none;
  background: #007bff;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 500;
  transition: background 0.3s ease, transform 0.2s ease;
}

.services-links a:hover {
  background: #0056b3;
  transform: translateY(-3px);
}

/* ---------------- Responsive ---------------- */
@media (max-width: 992px) {
  .sub-title {
    font-size: 30px;
  }
  .services-list div h2 {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .hero1 {
    padding: 40px 15px;
  }
  .sub-title {
    font-size: 26px;
    margin-bottom: 30px;
  }
  .services-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .services-list div {
    padding: 20px;
  }
  .services-links {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .services-links a {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .sub-title {
    font-size: 22px;
  }
  .services-list div h2 {
    font-size: 18px;
  }
  .services-list div p {
    font-size: 13px;
  }
  .services-links a {
    font-size: 12px;
    padding: 6px 12px;
  }
}



/* -------------------------------Career Counseller -----------------------------*/

.hero2 {
  min-height: auto; /* Fixed height हटाया */
  background: url('image/t.jpg') no-repeat center center/cover;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  flex-direction: column;
}

#portfolio {
  padding: 50px 0;
}

.sub-title {
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 40px;
  color: #faf7f7;
}

/* ---------------- Work List ---------------- */
.work-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 20px;
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.work {
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.work img {
  width: 100%;
  border-radius: 12px;
  display: block;
  transition: transform 0.5s;
}

.layer {
  width: 100%;
  height: 0%;
  background: linear-gradient(rgba(0, 0, 0, 0.6), #ff004f);
  border-radius: 12px;
  position: absolute;
  left: 0;
  bottom: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0 20px;
  text-align: center;
  font-size: 14px;
  transition: height 0.5s;
}

.layer a img {
  width: 20px;
  height: 20px;
  margin-top: 20px;
  background: #fff;
  border-radius: 50%;
  padding: 5px;
}

.layer h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 18px;
}

.work:hover img {
  transform: scale(1.1);
}

.work:hover .layer {
  height: 100%;
}

/* ---------------- Button ---------------- */
.btn {
  display: block;
  margin: 40px auto 0;
  width: fit-content;
  border: 1px solid #ff004f;
  padding: 12px 30px;
  border-radius: 6px;
  text-decoration: none;
  color: white;
  transition: background 0.5s;
  font-size: 14px;
}

.btn:hover {
  background: #ff004f;
}

/* ---------------- Responsive ---------------- */
@media (max-width: 992px) {
  .sub-title {
    font-size: 30px;
  }
  .layer h3 {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .hero2 {
    padding: 40px 15px;
  }

  .sub-title {
    font-size: 26px;
    margin-bottom: 30px;
  }

  /* 📱 Mobile पर work-list vertical */
  .work-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .layer {
    font-size: 13px;
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .sub-title {
    font-size: 22px;
  }

  .layer h3 {
    font-size: 15px;
  }

  .layer p {
    font-size: 12px;
    line-height: 1.4;
  }

  .btn {
    font-size: 12px;
    padding: 10px 20px;
  }
  .btn:hover {
  background: #ff004f;
}
}


/*----------------------------- Contact -----------------------------------*/

.hero3 {
  background: url('image/r.png') no-repeat center center/cover;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px; /* margin-top ke jagah padding */
}

#msg {
  color: white;
  margin-top: 10px;
  display: block;
  font-weight: bold;
}

.row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  width: 100%;
  max-width: 1100px;
}

.contact-left {
  flex-basis: 35%;
}

.contact-right {
  flex-basis: 60%;
}

.contact-left p {
  margin-top: 20px;
  font-size: 16px;
  display: flex;
  align-items: center;
}

.contact-left p img {
  width: 20px;
  height: 20px;
  margin-right: 12px;
}

.social-icon {
  margin-top: 25px;
}

.social-icon a {
  color: white;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.social-icon a img {
  width: 22px;
  height: 22px;
  transition: transform 0.4s;
}

.social-icon a:hover img {
  transform: translateY(-4px);
}

.btn.btn2 {
  display: inline-block;
  background: #ff004f;
  color: #fff;
  border: none;
}

.contact-right form {
  width: 100%;
}

form input,
form textarea {
  width: 100%;
  border: 0;
  outline: none;
  background: #262626;
  padding: 14px;
  margin: 12px 0;
  color: #fff;
  font-size: 16px;
  border-radius: 6px;
}

form .btn2 {
  padding: 12px 40px;
  font-size: 16px;
  margin-top: 10px;
  cursor: pointer;
}

.copyright {
  width: 100%;
  text-align: center;
  padding: 20px 10px;
  margin-top: 20px;
  font-size: 14px;
}

.copyright p img {
  width: 16px;
  height: 16px;
}

/* 📱 Mobile Responsive */
@media (max-width: 768px) {
  .row {
    flex-direction: column;
    gap: 30px;
  }

  .contact-left,
  .contact-right {
    flex-basis: 100%;
  }

  .contact-left p {
    font-size: 14px;
  }

  form input,
  form textarea {
    font-size: 14px;
    padding: 12px;
  }

  form .btn2 {
    width: 100%; /* button full width */
    padding: 12px;
  }

  .social-icon a {
    font-size: 14px;
  }
}



