* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #fff;
}

/* HEADER */

/* HEADER */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}


/* HEADER */

.header {
  width: 100%;
  background: #f6f7fb;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 999;
}


.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}


.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 75px;
}


/* LOGO */

.logo-area img {
  height: 42px;
  width: auto;
  object-fit: contain;
}

/* TEXT LOGO */

.logo-text {
  font-size: 22px;
  font-weight: 700;
  text-decoration: none;
  color: #1e293b;
}

.logo-text span {
  color: #4a57d4;
}

/* NAVIGATION */

.nav {
  display: flex;
  gap: 35px;
}

.nav a {
  text-decoration: none;
  color: #333;
  font-size: 15px;
  font-weight: 500;
  transition: .3s;
}

.nav a:hover {
  color: #4a57d4;
}


/* ACTION AREA */

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}


/* CALL BUTTON */

.call-btn {
  /* background:#22c55e;
color:#fff; */

  padding: 9px 14px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: .3s;
}

.call-btn:hover {
  background: #16a34a;
  color: white;
}


/* APPLY BUTTON */

.apply-btn {
  background: #4a57d4;
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: .3s;
}

.apply-btn:hover {
  background: #3b46b3;
}


/* MENU TOGGLE */

.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
}


/* MOBILE NAV */
@media (max-width:768px) {

  .nav {
    position: fixed;
    top: 75px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 30px 0;
    display: none;
    z-index: 1000;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  }

  .nav.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .call-btn,
  .apply-btn {
    display: none;
  }

}

.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

@media(max-width:768px) {
  .menu-toggle {
    display: block;
  }
}


/* FLOATING CALL BUTTON */

.mobile-call {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(144deg, rgb(0 181 235 / 95%) 0%, rgb(0 0 0 / 88%) 40%, rgb(0 0 0 / 45%) 75%);
  color: #fff;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
  z-index: 999;
}

@media (min-width:769px) {
  .mobile-call {
    display: none;
  }
}


/* HERO */

/* HERO */

/* HERO */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
  background: #0f172a;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      rgba(15, 23, 42, 0.9) 0%,
      rgba(15, 23, 42, 0.6) 50%,
      rgba(15, 23, 42, 0.3) 100%);
  z-index: 1;
}

.hero-bottom-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to top, #ffffff, transparent);
  z-index: 2;
}

.hero-grid {
  position: relative;
  z-index: 3;
}

.hero-content {
  max-width: 700px;
}

.hero-badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.hero-content h1 {
  font-size: clamp(40px, 5vw, 64px);
  color: #fff;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 24px;
}

.hero-content h1 span {
  color: #ff7a18;
  display: block;
}

.hero-content p {
  font-size: clamp(16px, 2vw, 20px);
  color: #cbd5e1;
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.apply-btn-yellow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ff7a18;
  color: #fff;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(255, 122, 24, 0.3);
}

.apply-btn-yellow:hover {
  background: #f97316;
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(255, 122, 24, 0.4);
}

.call-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #fff;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.call-btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item h3 {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 4px;
}

.stat-item p {
  color: #94a3b8;
  font-size: 14px;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .hero {
    padding: 100px 0 60px;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
    gap: 32px;
  }

  .hero-badge {
    margin: 0 auto 24px;
  }
}

/* why choose section */

.why-section {
  padding: 90px 0;
  background: #f8f9fb;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
}

.section-title p {
  color: #555;
  max-width: 650px;
  margin: auto;
}

/* GRID */

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* CARD */

.why-card {
  background: white;
  padding: 35px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: all .35s ease;
  text-align: left;
}

.why-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

/* ICON BOX */
.icon-box {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-size: 26px;
  margin-bottom: 18px;

  /* new gradient */

  background: linear-gradient(135deg, #ff7a18, #ffb347);
  color: white;
}

.why-card:hover .icon-box {
  transform: rotate(6deg) scale(1.1);
  transition: 0.3s;
}

.icon-box i {
  font-size: 28px;
  color: white;
  line-height: 1;
}

/* TITLE */

.why-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

/* TEXT */

.why-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* RESPONSIVE */

@media(max-width:1024px) {

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media(max-width:600px) {

  .why-grid {
    grid-template-columns: 1fr;
  }

  .section-title h2 {
    font-size: 28px;
  }

}


/* betech program */
/* 
.programs-section{

background:#f8f9fb;
padding:90px 0;

}

.program-grid{

display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
margin-top:50px;

}

.program-card{

background:white;
padding:30px;
border-radius:12px;
border:1px solid #e6e6e6;
transition:0.3s;

}

.program-card:hover{

transform:translateY(-6px);
box-shadow:0 10px 25px rgba(0,0,0,0.08);

}

.program-icon{

width:50px;
height:50px;
background:#eef2ff;
display:flex;
align-items:center;
justify-content:center;
border-radius:10px;
font-size:22px;
margin-bottom:15px;

}

.program-card h3{

font-size:18px;
margin-bottom:6px;

}

.duration{

font-size:13px;
color:#666;
display:block;
margin-bottom:10px;

}

.program-desc{

font-size:14px;
color:#555;
margin-bottom:20px;

}

.career h4{

font-size:12px;
text-transform:uppercase;
color:#777;
margin-bottom:8px;

}

.career ul{

padding-left:16px;
font-size:13px;
color:#444;
line-height:1.7;

}

.learn-more{

display:inline-block;
margin-top:15px;
font-size:14px;
color:#4a57d4;
font-weight:500;
cursor:pointer;

}

@media(max-width:1024px){

.program-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:600px){

.program-grid{
grid-template-columns:1fr;
}

} */


.programs-section {
  background: #f8f9fb;
  padding: 0px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-size: 34px;
  margin-bottom: 10px;
}

.section-title p {
  color: #666;
  font-size: 15px;
}

/* Tabs */

.program-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
}

.tab-btn {
  padding: 10px 24px;
  border: none;
  background: #eee;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 500;
  transition: 0.3s;
}

.tab-btn.active {
  background: linear-gradient(135deg, #ff7a18, #ffb347);
  color: white;
}

/* Grid */

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* Cards */

.program-card {
  background: white;
  padding: 28px;
  border-radius: 12px;
  border: 1px solid #e6e6e6;
  transition: 0.3s;
}

.program-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.program-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #ff7a18, #ffb347);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-bottom: 12px;
  color: white;
  font-size: 22px;
  transition: .35s;
}

.program-card:hover .program-icon {
  transform: rotate(10deg) scale(1.1);
  box-shadow: 0 8px 20px rgba(255, 122, 24, 0.4);
}

.program-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.program-card p {
  font-size: 14px;
  color: #555;
}

/* more card */

.more-card {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  color: #5c6cff;
  cursor: pointer;
  border: 2px dashed #d4d9ff;
}

/* tab content */

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* responsive */

@media(max-width:1024px) {
  .program-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:600px) {
  .program-grid {
    grid-template-columns: 1fr;
  }
}

.program-card {
  background: white;
  padding: 22px;
  border-radius: 12px;
  border: 1px solid #e6e6e6;
  transition: all .35s ease;
}

.program-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* .program-icon{
width:48px;
height:48px;
background:linear-gradient(135deg,#5c6cff,#7d8cff);
display:flex;
align-items:center;
justify-content:center;
border-radius:10px;
margin-bottom:12px;
color:white;
font-size:22px;
transition:.35s;
} */

.program-card:hover .program-icon {
  transform: rotate(10deg) scale(1.1);
}

/* campus */


/* placement highlight  */

/* .placement-section{

padding:100px 0;

background:linear-gradient(135deg,#2c3ea8,#3c47b5);

color:white;

text-align:center;

}

.placement-title h2{

font-size:36px;
margin-bottom:10px;

}

.placement-title p{

color:#d0d6ff;

}

.placement-grid{

display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;

margin-top:50px;

}

.placement-card{

background:rgba(255,255,255,0.08);

padding:35px;

border-radius:16px;

backdrop-filter:blur(6px);

}

.placement-icon{

width:55px;
height:55px;

background:#ffd23f;

border-radius:12px;

display:flex;
align-items:center;
justify-content:center;

margin:auto;

font-size:22px;

margin-bottom:15px;

}

.placement-card h3{

font-size:36px;
margin-bottom:5px;

}

.placement-card span{

color:#dbe0ff;

font-size:14px;

}

/* recruiters */

/* .recruiters{

margin-top:50px;

}

.recruiter-list{

margin-top:20px;

display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;

} */
/* 
.recruiter-list span{

background:rgba(255,255,255,0.12);

padding:10px 18px;

border-radius:8px;

font-size:14px;

}
@media(max-width:900px){

.placement-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:500px){

.placement-grid{
grid-template-columns:1fr;
}

} */


.placement-section {
  padding: 20px 0;
  background: linear-gradient(144deg, rgb(0 181 235 / 95%) 0%, rgba(35, 186, 197, 0.88) 40%, rgb(0 0 0 / 45%) 75%);
  color: white;
  text-align: center;
  overflow: hidden;
}

.placement-title h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.placement-title p {
  color: black;
  font-size: 16px;
}

.placement-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
}

/* CARD */

.placement-card {
  background: rgba(255, 255, 255, 0.08);
  padding: 40px 25px;
  border-radius: 18px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all .35s ease;
  position: relative;
}

.placement-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.12);
}

/* ICON */

.placement-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff7a18, #ffb347);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  font-size: 26px;
  margin-bottom: 18px;
  color: #2c3ea8;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* NUMBER */

.placement-card h3 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 6px;
}

.placement-card span {
  color: black;
  font-size: 15px;
}

/* Recruiters */

.recruiters {
  margin-top: 70px;
}

.recruiters p {
  color: black;
  margin-bottom: 25px;
}

.recruiter-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.recruiter-list span {
  background: rgba(255, 255, 255, 0.12);
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 14px;
  transition: 0.3s;
}

.recruiter-list span:hover {
  background: white;
  color: #2c3ea8;
  cursor: pointer;
}

/* RESPONSIVE */

@media(max-width:992px) {

  .placement-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media(max-width:600px) {

  .placement-grid {
    grid-template-columns: 1fr;
  }

  .placement-title h2 {
    font-size: 32px;
  }

}



/* testomonial */

.testimonial-section {

  padding: 50px 0;
  background: #f8f9fb;

}

.testimonial-grid {

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;

}

.testimonial-card {

  background: white;
  padding: 35px;
  border-radius: 16px;

  border-left: 4px solid #ff7a18;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);

  position: relative;

  /* STUDENT SUCCESS STORIES (TESTIMONIALS) */
}

s .testimonial-section {
  padding: 100px 0;
  background: #ffffff;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.testimonial-card {
  background: #f8fafc;
  padding: 40px;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  border-color: #ff7a18;
}

.success-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: #ff7a18;
  color: #fff;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(255, 122, 24, 0.3);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.user-avatar {
  width: 54px;
  height: 54px;
  background: #e2e8f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #64748b;
}

.testimonial-header h4 {
  font-size: 18px;
  color: #0f172a;
  margin-bottom: 2px;
}

.testimonial-header span {
  font-size: 14px;
  color: #64748b;
}

.stars {
  color: #f59e0b;
  font-size: 18px;
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 15px;
  color: #334155;
  line-height: 1.7;
  font-style: italic;
  flex-grow: 1;
}

.quote-icon {
  margin-top: 24px;
  font-size: 32px;
  color: #e2e8f0;
  align-self: flex-end;
}

@media (max-width: 1024px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-section {
    padding: 60px 0;
  }
}

@media(max-width:900px) {

  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media(max-width:600px) {

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

}

/* faq */

/* ABOUT US SECTION */

.about-section {
  padding: 100px 0;
  background: #f8fafc;
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
}

.experience-badge {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: #ff7a18;
  color: #fff;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 15px 30px rgba(255, 122, 24, 0.3);
}

.experience-badge h3 {
  font-size: 36px;
  line-height: 1;
  margin-bottom: 5px;
}

.experience-badge p {
  font-size: 14px;
  margin: 0;
  opacity: 0.9;
}

.section-tag {
  color: #ff7a18;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 16px;
}

.about-content h2 {
  font-size: clamp(32px, 4vw, 44px);
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 24px;
  font-weight: 800;
}

.about-content h2 span {
  color: #ff7a18;
}

.about-content p {
  color: #475569;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.about-features {
  list-style: none;
  margin: 30px 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #1e293b;
  font-weight: 500;
  font-size: 15px;
}

.about-features li i {
  color: #22c55e;
  font-size: 20px;
}

@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 80px;
  }

  .experience-badge {
    bottom: -20px;
    right: 20px;
  }
}

/* FAQ SECTION REDESIGN */

.faq-section {
  padding: 100px 0;
  background: #ffffff;
}

.faq-container {
  max-width: 800px;
  margin: 50px auto 0;
}

.faq-item {
  background: #f8fafc;
  border-radius: 16px;
  margin-bottom: 16px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #ff7a18;
  background: #ffffff;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.05);
}

.faq-question {
  width: 100%;
  padding: 24px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 20px;
}

.faq-question span {
  font-size: 18px;
  font-weight: 600;
  color: #0f172a;
  transition: all 0.3s ease;
}

.faq-question i {
  font-size: 24px;
  color: #64748b;
  transition: all 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.answer-content {
  padding: 0 30px 24px;
}

.answer-content p {
  font-size: 16px;
  color: #475569;
  line-height: 1.7;
  margin: 0;
}

/* Active State for FAQ (to be toggled via JS if needed, but we use max-height) */
.faq-item.active {
  border-color: #ff7a18;
  background: #ffffff;
}

.faq-item.active .faq-question span {
  color: #ff7a18;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
  color: #ff7a18;
}

@media (max-width: 640px) {
  .faq-question {
    padding: 20px;
  }

  .faq-question span {
    font-size: 16px;
  }

  .answer-content {
    padding: 0 20px 20px;
  }
}

/* cta */
.cta-section {
  padding: 50px 0;
  background: #f8f9fb;
}

/* CARD */

.cta-card {
  max-width: 700px;
  margin: auto;
  background: linear-gradient(144deg, rgb(0 181 235 / 95%) 0%, rgba(35, 186, 197, 0.88) 40%, rgb(0 0 0 / 45%) 75%);
  color: white;
  padding: 50px 40px;
  border-radius: 16px;
  text-align: center;
  color: white;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* TITLE */

.cta-card h2 {
  font-size: 28px;
  margin-bottom: 12px;
}

/* TEXT */

.cta-card p {
  opacity: .9;
  margin-bottom: 28px;
  font-size: 15px;
}

/* BUTTONS */

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* BUTTON */

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: #4a57d4;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: .3s;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* WHATSAPP */

.whatsapp-btn {
  background: #25D366;
  color: white;
}

.whatsapp-btn:hover {
  background: #20bd5a;
}

/* RESPONSIVE */

@media(max-width:600px) {

  .cta-card {
    padding: 40px 25px;
  }

  .cta-card h2 {
    font-size: 22px;
  }

}

/* footer */
.footer {
  background: #0f1a2c;
  color: #cbd3e4;
  padding-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 40px;
}

.footer-logo img {
  height: 55px;
  margin-bottom: 15px;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-col h4 {
  margin-bottom: 15px;
  color: white;
  font-size: 16px;
}

/* links */

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col a {
  color: #cbd3e4;
  text-decoration: none;
  font-size: 14px;
}

.footer-col a:hover {
  color: white;
}

/* social */

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a {
  width: 36px;
  height: 36px;
  background: #1e2a44;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  text-decoration: none;
  transition: .3s;
}

.social-icons a:hover {
  background: #4a57d4;
}

/* contact */

.footer-col p {
  font-size: 14px;
  margin-bottom: 10px;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

/* bottom */

.footer-bottom {
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  flex-wrap: wrap;
}

.disclaimer {
  opacity: .7;
}

/* responsive */

@media(max-width:900px) {

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

}

@media(max-width:600px) {

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

}



/* get in touch */
.contact-section {

  padding: 90px 0;
  background: #f8f9fb;

}

.contact-grid {

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;

}

.contact-info h3 {

  margin-bottom: 20px;

}

.contact-item {

  display: flex;
  gap: 15px;
  margin-bottom: 18px;

}

.contact-icon {

  background: #e9edff;
  width: 40px;
  height: 40px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 8px;

}

.contact-item h4 {

  font-size: 15px;

}

.contact-item p {

  font-size: 14px;
  color: #666;

}

.contact-map {

  margin-top: 20px;
  border-radius: 12px;
  overflow: hidden;

}

.contact-form-card {

  background: white;
  padding: 35px;

  border-radius: 14px;

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);

}

.contact-form-card h3 {

  margin-bottom: 20px;

}

.contact-form-card form {

  display: flex;
  flex-direction: column;
  gap: 15px;

}

.form-row {

  display: flex;
  gap: 15px;

}

.contact-form-card input,
.contact-form-card textarea {

  padding: 12px;

  border: 1px solid #ddd;

  border-radius: 6px;

  font-size: 14px;

}

.contact-form-card textarea {

  height: 120px;
  resize: none;

}

.contact-form-card button {

  background: linear-gradient(135deg, #3b4fd6, #4f6df0);

  border: none;

  color: white;

  padding: 12px;

  border-radius: 8px;

  cursor: pointer;

  font-weight: 500;

}

@media(max-width:900px) {

  .contact-grid {

    grid-template-columns: 1fr;

  }

  .form-row {

    flex-direction: column;

  }

}