.main-header {
  background: white;
  padding: 18px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 999;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 700;
  font-size: 20px;
  color: #1a124b;
}

.logo span {
  color: #6a00ff;
}

nav {
  display: flex;
  gap: 30px;
}

.nav-link {
  text-decoration: none;
  font-weight: 500;
  color: #333;
  padding: 6px 16px;
  border-radius: 30px;
  transition: 0.3s ease;
}

.nav-link:hover {
  color: #6a00ff;
}

/* ACTIVE BUTTON */
.nav-link.active {
  background: linear-gradient(90deg,#4c00ff,#8a00ff);
  color: white;
}


/* ================= PREMIUM GLOBAL CTA ================= */

.global-cta {
  padding: 120px 0;
  background: #f4f4f8;
}

.cta-box {
  max-width: 1200px;
  margin: auto;
  background: linear-gradient(90deg,#c43bff,#3d39ff);
  border-radius: 60px;              /* more rounded */
  padding: 55px 70px;               /* less height, more premium */
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  box-shadow: 0 20px 60px rgba(120,0,255,0.35);
  transition: 0.4s ease;
}

.cta-box:hover {
  transform: translateY(-4px);
}

/* Heading */

.cta-box h2 {
  font-size: 38px;
  font-weight: 600;
  margin: 0;
}

/* Button */

.cta-btn {
  background: #ffffff;
  color: #1a124b;
  padding: 14px 45px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: 0.3s ease;
}

.cta-btn:hover {
  background: #f2f2f2;
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 992px) {
  .cta-box {
    flex-direction: column;
    gap: 25px;
    text-align: center;
    border-radius: 30px;
  }

  .cta-box h2 {
    font-size: 26px;
  }
}

/* homepagecss */


:root{
  --primary:#7b2cff;
  --secondary:#3046ff;
  --dark:#0b0620;
  --light:#f5f6fa;
  --gradient: linear-gradient(135deg,#b14bff,#3040ff);
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Poppins',sans-serif;
  background:var(--light);
  color:#1b1b2f;
}

.container{
  max-width:1200px;
  margin:auto;
  padding:0 20px;
}

/* ================= HERO ================= */

/* .hero-bg{
  height:100vh;
  background-image:url("hero.jpg");
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  position:relative;
} */
.hero-bg{
  height:100vh;
  background-image:url("hero.jpg");
  background-size:cover;
  background-position:center center;
  background-repeat:no-repeat;
  position:relative;
  display:flex;
  align-items:center;
}

.hero-overlay{
  background:linear-gradient(
    rgba(15,5,40,0.75),
    rgba(15,5,40,0.75)
  );
  height:100%;
  width:100%;
  display:flex;
  align-items:center;
}

.hero-content{
  color:#fff;
  max-width:900px;
}

.hero-content h1{
  font-size:64px;
  font-weight:800;
  line-height:1.1;
}

.hero-content p{
  margin-top:25px;
  font-size:20px;
  opacity:.9;
  max-width:750px;
}

/* ================= CUSTOMER SECTION ================= */

.customer-section{
  padding:120px 0;
}

.customer-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
}

.customer-image img{
  width:100%;
  border-radius:60px 0 60px 0;
  box-shadow:0 20px 40px rgba(0,0,0,0.2);
}

.customer-content h2{
  font-size:42px;
  margin-bottom:25px;
}

.customer-content p{
  opacity:.8;
  line-height:1.7;
}

.stats{
  display:flex;
  gap:60px;
  margin-top:40px;
}

.stats h3{
  font-size:60px;
  color:#111;
}

.label{
  font-weight:600;
  margin-bottom:10px;
}

/* ================= SERVICES ================= */

.services{
  background:#09031d;
  padding:140px 0;
  color:#fff;
}

.services-title{
  text-align:center;
  font-size:48px;
  margin-bottom:20px;
}

.services-desc{
  text-align:center;
  max-width:900px;
  margin:0 auto 80px auto;
  opacity:.8;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:50px;
}

.premium-card{
  perspective:1000px;
}

.premium-inner{
  position:relative;
  width:100%;
  height:320px;
  transform-style:preserve-3d;
  transition:transform .8s;
}

.premium-card:hover .premium-inner{
  transform:rotateY(180deg);
}

.premium-front,
.premium-back{
  position:absolute;
  width:100%;
  height:100%;
  backface-visibility:hidden;
  border-radius:25px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:40px;
}

.premium-front{
  background:linear-gradient(135deg,#c64cff,#2e4cff);
  box-shadow:0 20px 50px rgba(0,0,0,.4);
}

.premium-front h4{
  font-size:24px;
  font-weight:600;
}

.premium-back{
  background:linear-gradient(135deg,#2e4cff,#c64cff);
  transform:rotateY(180deg);
  font-size:16px;
}

/* ================= OFFER SECTION ================= */

.offer-section{
  padding:120px 0;
  background:#f4f4f8;
}

.offer-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.offer-left h2{
  font-size:44px;
  color:#1a124b;
  margin-bottom:20px;
}

.offer-left p{
  color:#555;
  line-height:1.8;
  margin-bottom:30px;
}

.primary-btn{
  display:inline-block;
  padding:14px 35px;
  background:linear-gradient(90deg,#4c00ff,#7a00ff);
  color:white;
  border-radius:30px;
  text-decoration:none;
  font-weight:600;
  transition:0.3s ease;
}

.primary-btn:hover{
  transform:translateY(-3px);
  box-shadow:0 10px 25px rgba(76,0,255,0.4);
}

.offer-right{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:25px;
}

.offer-img{
  height:260px;
  border-radius:30px;
  background-size:cover;
  background-position:center;
  transition:0.4s ease;
}

.offer-img:hover{
  transform:scale(1.05);
}

.img1{ background-image:url("offer1.jpg"); }
.img2{ background-image:url("offer2.jpg"); }
.img3{ background-image:url("offer3.jpg"); }
.img4{ background-image:url("offer4.jpg"); }

/* ================= FAQ ================= */

.faq-section{
  padding:120px 0;
  background:#ffffff;
}

.faq-title{
  text-align:center;
  font-size:48px;
  margin-bottom:60px;
  color:#1a124b;
}

.faq-container{
  max-width:1000px;
  margin:auto;
}

.faq-item{
  background:#1c114b;
  margin-bottom:15px;
  border-radius:6px;
  overflow:hidden;
  transition:0.3s ease;
}

.faq-item summary{
  padding:20px 25px;
  cursor:pointer;
  list-style:none;
  display:flex;
  align-items:center;
  gap:20px;
  color:white;
  font-weight:600;
  font-size:16px;
}

.faq-answer{
  padding:0 25px 20px 65px;
  color:#f5e8e8;
  line-height:1.7;
}

.faq-item:hover{
  background:#24175f;
}

/* ================= RESPONSIVE ================= */

@media(max-width:1000px){
  .customer-grid,
  .offer-grid{
    grid-template-columns:1fr;
  }

  .services-grid{
    grid-template-columns:1fr;
  }

  .stats{
    flex-direction:column;
    gap:30px;
  }
}



footer{
  background:var(--dark);
  color:#fff;
  padding:100px 0 40px 0;
}

.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:50px;
}

footer h4{
  margin-bottom:20px;
}

footer p{
  opacity:.8;
  margin-bottom:10px;
}

footer a{
  color:#fff;
  text-decoration:none;
  opacity:.8;
}

footer a:hover{
  opacity:1;
}

.copyright{
  text-align:center;
  margin-top:60px;
  opacity:.6;
  font-size:14px;
}


/* aboutpage  */
/* ================= ABOUT WRAPPER ================= */

/* ================= ABOUT PAGE ONLY ================= */

.about-page {
  background: #ffffff;
}

/* HERO */

.about-page .page-hero {
  position: relative;
  background: linear-gradient(135deg,#3d2c8d,#7a5cff);
  padding: 100px 0;
  color: white;
}

.about-page .page-hero-content {
  position: relative;
  z-index: 2;
}

.about-page .page-hero-text {
  max-width: 900px;
}

.about-page .page-hero-text h1 {
  font-size: 42px;
  line-height: 1.3;
  margin-bottom: 25px;
}

.about-page .page-hero-text p {
  font-size: 18px;
  line-height: 1.8;
  opacity: 0.95;
}

/* GROW SECTION */

.about-page .grow-section {
  padding: 120px 0;
  background: #050018;
  color: white;
}

.about-page .grow-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-page .grow-img img {
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 0 40px rgba(140,47,255,0.6);
}

.about-page .grow-content h2 {
  font-size: 36px;
  margin-bottom: 25px;
}

.about-page .grow-content p {
  margin-bottom: 18px;
  line-height: 1.8;
  opacity: 0.9;
}

/* MISSION */

.about-page .mission-section {
  padding: 120px 0;
  background: #f4f1fa;
}

.about-page .mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-page .mission-content h2 {
  font-size: 36px;
  margin-bottom: 30px;
}

.about-page .mv-block {
  margin-bottom: 25px;
}

.about-page .mv-block h4 {
  font-weight: 600;
  margin-bottom: 10px;
  color: #5a28ff;
}

.about-page .mission-img img {
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 0 40px rgba(156,39,255,0.5);
}

/* WHY SECTION */

.about-page .why-section {
  padding: 120px 0;
  background: #070014;
  color: white;
  text-align: center;
}

.about-page .why-title {
  font-size: 40px;
  margin-bottom: 60px;
}

.about-page .why-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.about-page .flip-card {
  width: 260px;
  height: 330px;
  perspective: 1000px;
}

.about-page .flip-inner {
  width: 100%;
  height: 100%;
  transition: transform 0.8s ease;
  transform-style: preserve-3d;
  position: relative;
}

.about-page .flip-card:hover .flip-inner {
  transform: rotateY(180deg);
}

.about-page .flip-front,
.about-page .flip-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
  text-align: center;
  backface-visibility: hidden;
}

.about-page .flip-front {
  background: linear-gradient(135deg,#a100ff,#0033ff);
}

.about-page .flip-back {
  background: white;
  color: #333;
  transform: rotateY(180deg);
}

/* RESPONSIVE */

@media(max-width: 992px) {
  .about-page .grow-grid,
  .about-page .mission-grid {
    grid-template-columns: 1fr;
  }
}


/* ================= SERVICES PAGE ================= */

.services-page .services-hero-small {
  height: 45vh;
  min-height: 350px;
  background-image: url("https://images.unsplash.com/photo-1580281658629-7d8f6d9d1d8b");
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}

.services-page .services-overlay {
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(15,5,60,0.8), rgba(45,0,120,0.85));
  display: flex;
  align-items: center;
}

.services-page .services-hero-content h1 {
  color: #fff;
  font-size: 42px;
  font-weight: 700;
}

.services-page .services-hero-content p {
  color: #fff;
  margin-top: 15px;
}

/* INTRO */

.services-page .services-intro {
  padding: 120px 0;
  background: #f4f4f8;
}

.services-page .intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.services-page .intro-image {
  height: 400px;
  border-radius: 30px;
  background-image: url("service.jpg");
  background-size: cover;
  background-position: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* CARDS */

.services-page .services-cards-section {
  padding: 120px 0;
  background: #0f0428;
}

.services-page .cards-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 40px;
}

.services-page .flip-card {
  perspective: 1000px;
  height: 280px;
}

.services-page .flip-card-inner {
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
  position: relative;
}

.services-page .flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.services-page .flip-card-front,
.services-page .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
  color: white;
}

.services-page .flip-card-front {
  background: linear-gradient(145deg,#4c00ff,#8a00ff);
}

.services-page .flip-card-back {
  background: linear-gradient(145deg,#1b003f,#3a008c);
  transform: rotateY(180deg);
}

.services-page .card-icon {
  font-size: 45px;
  margin-bottom: 20px;
}

/* ================= SERVICES INTRO IMPROVED ================= */

.services-page .intro-grid h2 {
  font-size: 48px;          /* bigger heading */
  font-weight: 700;
  margin-bottom: 30px;      /* space below heading */
  line-height: 1.2;
  color: #1a124b;
}

.services-page .intro-grid p {
  font-size: 18px;          /* slightly bigger text */
  color: #555;
  line-height: 1.9;
  margin-bottom: 20px;      /* spacing between paragraphs */
  max-width: 600px;         /* better text width */
}


/* RESPONSIVE */

@media (max-width: 1024px) {
  .services-page .cards-grid {
    grid-template-columns: repeat(2,1fr);
  }
  .services-page .intro-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .services-page .cards-grid {
    grid-template-columns: 1fr;
  }
}



/* ================= CONTACT PAGE ================= */

.contact-page {
  font-family: 'Poppins', sans-serif;
}

/* HERO SECTION */

.contact-page .contact-hero {
  background: linear-gradient(rgba(20,10,60,0.85), rgba(45,0,120,0.85)),
              url("assets/contact-hero.jpg") center/cover no-repeat;
  height: 420px;
  display: flex;
  align-items: center;
   justify-content: center;   /* center horizontally */
  text-align: center; 
  color: #fff;
}

.contact-page .contact-hero .container {
  max-width: 900px;
}

.contact-page .contact-hero h1 {
  font-size: 46px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.contact-page .contact-hero p {
  font-size: 18px;
  opacity: 0.9;
  line-height: 1.7;
}

/* CONTACT SECTION */

.contact-page .contact-section {
  display: flex;
  gap: 80px;
  padding: 140px 0;
}

.contact-page .contact-left,
.contact-page .contact-right {
  flex: 1;
}

.contact-page .contact-left h2,
.contact-page .contact-right h2 {
  font-size: 30px;
  margin-bottom: 30px;
}

.contact-page .contact-info p {
  margin-bottom: 18px;
  font-size: 17px;
  color: #444;
}

/* FORM */

.contact-page .contact-form input,
.contact-page .contact-form textarea {
  width: 100%;
  padding: 16px 22px;
  border-radius: 30px;
  border: 1px solid #ddd;
  margin-bottom: 22px;
  font-size: 15px;
  transition: 0.3s ease;
}

.contact-page .contact-form input:focus,
.contact-page .contact-form textarea:focus {
  border-color: #6a11cb;
  outline: none;
  box-shadow: 0 0 0 3px rgba(106,17,203,0.15);
}

.contact-page .contact-form textarea {
  border-radius: 20px;
  height: 130px;
  resize: none;
}

.contact-page .row {
  display: flex;
  gap: 20px;
}

/* CHECKBOX */

.contact-page .checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 25px;
}

.contact-page .checkbox-row input {
  margin-top: 5px;
  width: 16px;
  height: 16px;
}

.contact-page .checkbox-row label {
  font-size: 14px;
  line-height: 1.5;
  max-width: 320px;
}

/* BUTTON */

.contact-page .contact-form button {
  background: linear-gradient(90deg,#6a11cb,#2575fc);
  border: none;
  padding: 14px 45px;
  border-radius: 30px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-page .contact-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(106,17,203,0.4);
}

/* WHY SECTION */

.contact-page .why-section {
  background: #f3f0ff;
  padding: 120px 0;
  text-align: center;
}

.contact-page .why-section h2 {
  font-size: 38px;
  margin-bottom: 20px;
}

.contact-page .why-sub {
  margin-bottom: 35px;
  color: #555;
}

.contact-page .why-section ul {
  list-style: none;
  max-width: 850px;
  margin: auto;
  text-align: left;
}

.contact-page .why-section li {
  margin-bottom: 18px;
  font-size: 16px;
  line-height: 1.7;
  position: relative;
  padding-left: 25px;
}

.contact-page .why-section li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #6a11cb;
  font-weight: bold;
}

/* FAQ */

.contact-page .faq-section {
  padding: 120px 0;
    /* background: #ffffff; */
}

.contact-page .faq-section h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 36px;
}

.contact-page .faq-item {
  border-radius: 12px;
  margin-bottom: 18px;
  overflow: hidden;
  border: 1px solid #eee;
}

.contact-page .faq-question {
  padding: 20px 25px;
  background: #f3f3f7;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.contact-page .faq-answer {
  padding: 20px 25px;
  background: #fff;
  display: none;
  color: #555;
}

/* MAP */

.contact-page .map-section {
  margin-top: 80px;
}

/* RESPONSIVE */

@media(max-width: 992px) {
  .contact-page .contact-section {
    flex-direction: column;
  }

  .contact-page .row {
    flex-direction: column;
  }

  .contact-page .contact-hero h1 {
    font-size: 32px;
  }
}



/* ================= REGISTER VACANCY PAGE ================= */


/* ================= VACANCY HERO ================= */
/* ================= VACANCY PAGE ================= */

.vacancy-page .vacancy-hero {
  height: 420px;
  background: url("assets/hero.jpg") center/cover no-repeat;
  position: relative;
}

.vacancy-page .vacancy-overlay {
  background: linear-gradient(rgba(20,0,60,0.8), rgba(30,0,80,0.85));
  height: 100%;
  display: flex;
  align-items: center;
}

.vacancy-page .hero-center {
  text-align: center;
  color: white;
  max-width: 900px;
}

.vacancy-page .hero-center h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

/* ================= INTRO ================= */

.vacancy-page .vacancy-intro {
  padding: 100px 0;
  background: #f5f5f9;
}

.vacancy-page .intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.vacancy-page .intro-text h2 {
  font-size: 40px;
  margin-bottom: 20px;
}

.vacancy-page .intro-image {
  height: 420px;
  border-radius: 40px;
  background: url("register.jpg") center/cover no-repeat;
  box-shadow: 0 0 40px #a200ff;
}

/* ================= FORM ================= */

.vacancy-page .vacancy-form-section {
  padding: 100px 0;
  background: #fafafa;
}

.vacancy-page .form-title {
  text-align: center;
  font-size: 42px;
}

.vacancy-page .form-sub {
  text-align: center;
  margin-bottom: 60px;
}

.vacancy-page .form-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 30px;
  margin-bottom: 30px;
}

.vacancy-page .vacancy-form input,
.vacancy-page .vacancy-form select,
.vacancy-page .vacancy-form textarea {
  padding: 15px 20px;
  border-radius: 30px;
  border: 1px solid #ccc;
  font-size: 15px;
}

.vacancy-page .vacancy-form textarea {
  width: 100%;
  height: 150px;
  border-radius: 20px;
  margin-bottom: 25px;
}

.vacancy-page .btn-primary {
  background: linear-gradient(90deg,#6a11cb,#2575fc);
  border: none;
  padding: 14px 45px;
  border-radius: 30px;
  color: white;
  cursor: pointer;
}

/* ================= WHY SECTION ================= */

.vacancy-page .why-dark {
  background: #090022;
  padding: 120px 0;
  color: white;
  text-align: center;
}

.vacancy-page .why-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 40px;
  margin-top: 60px;
}

/* ================= FLIP CARD ================= */

.vacancy-page .flip-card {
  perspective: 1200px;
  height: 320px;
}

.vacancy-page .flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.7s ease;
  transform-style: preserve-3d;
}

.vacancy-page .flip-card:hover .flip-inner {
  transform: rotateY(180deg);
}

.vacancy-page .flip-front,
.vacancy-page .flip-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
}

.vacancy-page .flip-front {
  background: linear-gradient(145deg,#a200ff,#003cff);
  color: white;
}

.vacancy-page .flip-back {
  background: linear-gradient(145deg,#003cff,#a200ff);
  color: white;
  transform: rotateY(180deg);
}

/* ================= WHAT SECTION ================= */

.vacancy-page .what-section {
  padding: 100px 0;
  background: #f5f5f9;
}

.vacancy-page .what-section ul {
  margin-top: 30px;
}

.vacancy-page .what-section li {
  margin-bottom: 15px;
}

/* ================= FAQ ================= */

.vacancy-page .faq-section {
  padding: 100px 0;
}

.vacancy-page .faq-item {
  margin-bottom: 20px;
}

.vacancy-page .faq-question {
  width: 100%;
  padding: 20px;
  background: #e9e9f2;
  color: rgb(16, 16, 16);
  border: none;
  text-align: left;
  font-size: 18px;
  border-radius: 8px;
  cursor: pointer;
}

.vacancy-page .faq-answer {
  /* display: none; */
  padding: 20px;
  background: #fbfbfb;
  color: #050018;
}

.vacancy-page .faq-item.active .faq-answer {
  display: block;
}

/* ================= RESPONSIVE ================= */

@media(max-width:1024px){
  .vacancy-page .intro-grid,
  .vacancy-page .form-grid,
  .vacancy-page .why-grid {
    grid-template-columns: 1fr;
  }
}

/* ===================================================
   SUBMIT CV PAGE (FULLY SCOPED)
=================================================== */

.submitcv-page .submitcv-hero {
  height: 420px;
  background: url("assets/hero.jpg") center/cover no-repeat;
  position: relative;
}

.submitcv-page .submitcv-overlay {
  background: linear-gradient(rgba(20,0,60,0.8), rgba(30,0,80,0.85));
  height: 100%;
  display: flex;
  align-items: center;
}

.submitcv-page .hero-content {
  text-align: left;
  color: white;
  max-width: 900px;
}

.submitcv-page .hero-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

/* FORM SECTION */
/* ================= SUBMIT CV FORM FIXED ================= */

.submitcv-page .submitcv-form-section {
  padding: 120px 0;
  background: #f3f1f8;
}

.submitcv-page .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start; /* FIX: image now aligns with heading */
}

/* LEFT CONTENT */

.submitcv-page .form-left h2 {
  font-size: 42px;
  margin-bottom: 25px; /* FIX: proper spacing */
}

.submitcv-page .form-left p {
  margin-bottom: 40px; /* FIX: paragraph spacing */
  line-height: 1.7;
  max-width: 600px;
}

/* FORM INPUTS */

.submitcv-page .submitcv-form input,
.submitcv-page .submitcv-form textarea {
  width: 100%;
  padding: 18px 25px;
  border-radius: 40px;
  border: 1px solid #d4d4d4;
  margin-bottom: 22px;
  font-size: 15px;
  background: #f7f7f7;
}

.submitcv-page .submitcv-form textarea {
  height: 130px;
  border-radius: 25px;
}

/* BUTTON */

/* FORCE GRADIENT BUTTON */

.submitcv-page .btn-gradient {
  display: inline-block;
  background: linear-gradient(90deg,#8a2be2,#003cff);
  border: none;
  padding: 16px 50px;
  border-radius: 40px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submitcv-page .btn-gradient:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(138,43,226,0.4);
}


/* RIGHT IMAGE FIX */

.submitcv-page .form-right {
  display: flex;
  align-items: flex-start; /* FIX: image moves up */
  justify-content: center;
    padding-top: 40px; 
}

.submitcv-page .image-card {
  height: 520px;   /* Slightly taller like original */
  width: 100%;
  border-radius: 45px;
  background: url("cvregister.jpg") center/cover no-repeat;
  box-shadow: 0 0 60px rgba(162,0,255,0.6);
}

/* EXPECT SECTION */

.submitcv-page .expect-section {
  padding: 120px 0;
  background: #050018;
  color: white;
  text-align: center;
}

.submitcv-page .expect-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 40px;
  margin-top: 60px;
}

/* FLIP CARD */

.submitcv-page .flip-card {
  perspective: 1200px;
  height: 340px;
}

.submitcv-page .flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.7s ease;
  transform-style: preserve-3d;
}

.submitcv-page .flip-card:hover .flip-inner {
  transform: rotateY(180deg);
}

.submitcv-page .flip-front,
.submitcv-page .flip-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
}

.submitcv-page .flip-front {
  background: linear-gradient(145deg,#a200ff,#003cff);
}

.submitcv-page .flip-back {
  background: linear-gradient(145deg,#003cff,#a200ff);
  transform: rotateY(180deg);
}

/* FAQ */

.submitcv-page .submitcv-faq {
  padding: 100px 0;
  background: #f3f1f8;
}

.submitcv-page .faq-item {
  margin-bottom: 20px;
}

.submitcv-page .faq-question {
  width: 100%;
  padding: 20px;
  background: #e9e9f2;
  border: none;
  text-align: left;
  font-size: 18px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
}

.submitcv-page .faq-answer {
  /* display: none; */
  padding: 20px;
  background: white;
  color: black;
}

.submitcv-page .faq-item.active .faq-answer {
  display: block;
}

/* RESPONSIVE */

@media(max-width:1024px){
  .submitcv-page .form-grid,
  .submitcv-page .expect-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Success Popup ===== */

.popup-overlay{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

.popup-box{
    background: white;
    padding: 40px 50px;
    border-radius: 20px;
    text-align: center;
    width: 400px;
    animation: scaleIn 0.3s ease;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.popup-checkmark{
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(45deg,#00c853,#64dd17);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
}

.popup-box h3{
    margin-bottom: 10px;
    font-size: 24px;
}

.popup-box p{
    margin-bottom: 25px;
    font-size: 16px;
}

.popup-btn{
    padding: 10px 30px;
    border: none;
    border-radius: 30px;
    background: linear-gradient(90deg,#6a11cb,#2575fc);
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

.popup-btn:hover{
    opacity: 0.9;
}

@keyframes fadeIn{
    from{opacity:0;}
    to{opacity:1;}
}

@keyframes scaleIn{
    from{transform:scale(0.8);}
    to{transform:scale(1);}
}

