@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Inter',sans-serif;
  background:#f4f7fb;
  color:#111827;
  overflow-x:hidden;
}

/* HEADER */

header{
  position:fixed;
  top:0;
  left:0;

  width:100%;

  background:#000;

  padding:14px 5%;

  display:flex;
  justify-content:space-between;
  align-items:center;

  z-index:1000;

  box-shadow:
  0 5px 25px rgba(0,0,0,0.25);
}

/* LOGO AREA */

.logo-area{
  display:flex;
  align-items:center;
  gap:14px;
}

.logo{
  width:58px;
  height:58px;
  object-fit:contain;

  border-radius:12px;

  background:white;

  padding:6px;
}

.company-text{
  display:flex;
  flex-direction:column;
}

.company-main{
  color:white;

  font-size:24px;

  font-weight:800;

  letter-spacing:2px;

  line-height:1;
}

.company-sub{
  color:#cbd5e1;

  font-size:11px;

  letter-spacing:3px;

  margin-top:5px;
}

/* MENU TOGGLE */

.menu-toggle{
  display:none;

  font-size:30px;

  color:white;

  cursor:pointer;
}

/* NAVBAR */

nav{
  display:flex;
  gap:14px;
}

nav a{
  background:white;

  color:#111827;

  text-decoration:none;

  padding:10px 18px;

  border-radius:10px;

  font-size:14px;

  font-weight:600;

  transition:0.3s;
}

nav a:hover{
  background:#2563eb;
  color:white;

  transform:translateY(-2px);

  box-shadow:
  0 10px 25px rgba(37,99,235,0.3);
}

/* HERO */

.hero{
  min-height:100vh;

  background:
  linear-gradient(
    rgba(0,0,0,0.45),
    rgba(0,0,0,0.55)
  ),
  url('images/hero.jpg.jpeg');

  background-size:cover;
  background-position:center;

  display:flex;
  justify-content:center;
  align-items:center;

  text-align:center;

  padding:140px 20px 80px;
}

.hero-content{
  max-width:900px;

  animation:
  heroFade 1.5s ease;
}

.hero h1{
  font-size:68px;
  line-height:1.1;

  margin-bottom:24px;

  color:white;

  font-weight:800;
}

.hero p{
  font-size:20px;

  color:#f1f5f9;

  line-height:1.8;

  margin-bottom:40px;
}

/* HERO ANIMATION */

@keyframes heroFade{

  from{
    opacity:0;
    transform:translateY(40px);
  }

  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* BUTTONS */

.hero-buttons{
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
}

.btn{
  display:inline-block;

  padding:15px 32px;

  border-radius:12px;

  text-decoration:none;

  font-weight:600;

  transition:0.3s;

  font-size:15px;
}

.btn:first-child{
  background:#2563eb;
  color:white;
}

.btn:last-child{
  background:white;
  color:#111827;
}

.btn:hover{
  transform:translateY(-4px);

  box-shadow:
  0 15px 35px rgba(37,99,235,0.35);
}

/* SECTION */

.section{
  padding:100px 7%;
}

.container{
  max-width:1200px;
  margin:auto;
}

.section-title{
  text-align:center;

  font-size:46px;

  margin-bottom:25px;

  color:#0f172a;

  font-weight:800;
}

.section-text{
  text-align:center;

  color:#4b5563;

  font-size:18px;

  line-height:1.9;

  max-width:950px;

  margin:auto;
}

/* SERVICES */

.services{
  padding:100px 7%;
}

.service-grid{
  display:grid;

  grid-template-columns:
  repeat(auto-fit,minmax(320px,1fr));

  gap:30px;

  margin-top:60px;
}

.service-card{
  background:white;

  border-radius:24px;

  overflow:hidden;

  transition:0.4s;

  box-shadow:
  0 12px 35px rgba(0,0,0,0.08);
}

.service-card:hover{
  transform:
  translateY(-10px);

  box-shadow:
  0 20px 45px rgba(0,0,0,0.15);
}

.service-image{
  width:100%;
  height:240px;
  object-fit:cover;
}

.service-card h3{
  font-size:24px;

  margin:24px 24px 14px;

  color:#0f172a;

  font-weight:700;
}

.service-card p{
  color:#4b5563;

  line-height:1.8;

  padding:0 24px 30px;
}

/* WHY CHOOSE US */

.dark-section{
  background:
  linear-gradient(
    135deg,
    #eff6ff,
    #dbeafe
  );
}

.features{
  display:grid;

  grid-template-columns:
  repeat(4,1fr);

  gap:25px;

  margin-top:70px;

  align-items:start;
}

/* FEATURE BOX */

.feature-box{
  position:relative;

  padding:40px 28px;

  border-radius:28px;

  overflow:hidden;

  transition:0.4s;

  color:white;

  min-height:320px;

  display:flex;
  flex-direction:column;
  justify-content:flex-start;
}

/* BOX COLORS */

.feature-box:nth-child(1){

  background:
  linear-gradient(
    135deg,
    #2563eb,
    #60a5fa
  );
}

.feature-box:nth-child(2){

  background:
  linear-gradient(
    135deg,
    #0f172a,
    #334155
  );
}

.feature-box:nth-child(3){

  background:
  linear-gradient(
    135deg,
    #7c3aed,
    #a78bfa
  );
}

/* LAST BOX DOWN */

.feature-box:nth-child(4){

  background:
  linear-gradient(
    135deg,
    #059669,
    #34d399
  );

  margin-top:50px;
}

/* HOVER */

.feature-box:hover{

  transform:
  translateY(-12px)
  scale(1.03);

  box-shadow:
  0 25px 50px rgba(0,0,0,0.2);
}

/* ICON */

.feature-icon{
  width:85px;
  height:85px;

  border-radius:24px;

  display:flex;
  justify-content:center;
  align-items:center;

  background:rgba(255,255,255,0.18);

  backdrop-filter:blur(10px);

  font-size:38px;

  margin-bottom:28px;
}

/* FEATURE TEXT */

.feature-box h3{
  font-size:28px;

  margin-bottom:18px;

  font-weight:700;

  line-height:1.3;
}

.feature-box p{
  line-height:1.9;

  font-size:16px;

  color:rgba(255,255,255,0.92);
}

/* PAGE HERO */

.page-hero{
  min-height:55vh;

  background:
  linear-gradient(
    rgba(0,0,0,0.45),
    rgba(0,0,0,0.55)
  ),
  url('images/team.jpg.jpeg');

  background-size:cover;
  background-position:center;

  display:flex;
  flex-direction:column;

  justify-content:center;
  align-items:center;

  text-align:center;

  padding:140px 20px 70px;
}

.page-hero h1{
  font-size:58px;
  color:white;
  margin-bottom:20px;
  font-weight:800;
}

.page-hero p{
  font-size:20px;
  color:#f1f5f9;
  max-width:700px;
}

/* CONTACT */

.contact-grid{
  display:grid;

  grid-template-columns:
  repeat(auto-fit,minmax(280px,1fr));

  gap:30px;

  margin-top:60px;
}

.contact-card{
  background:white;

  border-radius:24px;

  padding:40px 30px;

  text-align:center;

  transition:0.4s;

  box-shadow:
  0 12px 35px rgba(0,0,0,0.08);
}

.contact-card:hover{
  transform:translateY(-10px);
}

.contact-icon-box{
  width:72px;
  height:72px;

  margin:auto auto 24px;

  border-radius:50%;

  display:flex;
  justify-content:center;
  align-items:center;

  background:#2563eb;

  color:white;

  font-size:28px;
}

.contact-card h3{
  font-size:24px;

  margin-bottom:18px;

  color:#0f172a;
}

.contact-card p{
  color:#4b5563;

  line-height:2;

  font-size:16px;
}

/* FORMS */

form{
  width:92%;
  max-width:650px;

  margin:80px auto;

  background:white;

  padding:40px;

  border-radius:24px;

  box-shadow:
  0 12px 35px rgba(0,0,0,0.08);
}

form h2{
  text-align:center;

  margin-bottom:30px;

  font-size:34px;

  color:#0f172a;

  font-weight:800;
}

input,
textarea{
  width:100%;

  padding:16px;

  margin-bottom:20px;

  border:
  1px solid #d1d5db;

  border-radius:14px;

  background:#f9fafb;

  font-size:16px;

  outline:none;

  transition:0.3s;
}

input:focus,
textarea:focus{
  border-color:#2563eb;

  box-shadow:
  0 0 0 4px rgba(37,99,235,0.1);
}

textarea{
  min-height:140px;
}

button{
  width:100%;

  padding:16px;

  border:none;

  border-radius:14px;

  background:#2563eb;

  color:white;

  font-size:17px;

  font-weight:600;

  cursor:pointer;
}

button:hover{
  background:#1d4ed8;
}

/* FOOTER */

footer{
  background:#000;

  color:white;

  text-align:center;

  padding:28px;

  font-size:15px;
}

/* MOBILE */

@media(max-width:992px){

  .features{
    grid-template-columns:
    repeat(2,1fr);
  }

  .feature-box:nth-child(4){
    margin-top:0;
  }
}

@media(max-width:768px){

  .menu-toggle{
    display:block;
  }

  nav{
    position:absolute;

    top:100%;
    left:0;

    width:100%;

    background:#000;

    flex-direction:column;

    padding:20px;

    display:none;
  }

  nav.active{
    display:flex;
  }

  nav a{
    width:100%;
    text-align:center;
  }

  .hero{
    padding-top:160px;
  }

  .hero h1{
    font-size:40px;
  }

  .hero p{
    font-size:16px;
  }

  .page-hero h1{
    font-size:34px;
  }

  .section-title{
    font-size:34px;
  }

  .features{
    grid-template-columns:1fr;
  }

  .feature-box:nth-child(4){
    margin-top:0;
  }

  .feature-box{
    min-height:auto;
  }
}

@media(max-width:480px){

  .logo{
    width:46px;
    height:46px;
  }

  .company-main{
    font-size:18px;
  }

  .company-sub{
    font-size:8px;
    letter-spacing:2px;
  }

  .hero h1{
    font-size:32px;
  }

  .hero p{
    font-size:15px;
  }

  .btn{
    width:100%;
  }
}
.about-banner{
  position:relative;

  min-height:70vh;

  background:
  url('images/team.jpg.jpeg');

  background-size:cover;
  background-position:center;

  display:flex;
  justify-content:center;
  align-items:center;

  text-align:center;

  overflow:hidden;
}

.about-overlay{
  position:absolute;

  width:100%;
  height:100%;

  background:
  linear-gradient(
    rgba(0,0,0,0.7),
    rgba(0,0,0,0.7)
  );
}

.about-content{
  position:relative;
  z-index:2;

  padding:120px 20px 60px;
}

.about-content h1{
  color:white;

  font-size:72px;

  font-weight:800;

  margin-bottom:20px;
}

.about-content p{
  color:#e2e8f0;

  font-size:22px;
}

.company-about{
  background:white;
}

.about-box{
  background:
  linear-gradient(
    135deg,
    #0f172a,
    #1e293b
  );

  color:white;

  padding:60px;

  border-radius:30px;

  box-shadow:
  0 20px 50px rgba(0,0,0,0.15);
}

.about-box h2{
  font-size:42px;

  margin-bottom:25px;
}

.about-box p{
  line-height:2;

  color:#e2e8f0;

  font-size:18px;
}

/* LEADERS */

.leadership-section{
  background:#f8fafc;
}

.leaders-grid{
  display:grid;

  grid-template-columns:
  repeat(auto-fit,minmax(320px,1fr));

  gap:35px;
}

.leader-card{
  background:white;

  border-radius:30px;

  overflow:hidden;

  transition:0.4s;

  box-shadow:
  0 15px 40px rgba(0,0,0,0.08);
}

.leader-card:hover{
  transform:
  translateY(-10px);

  box-shadow:
  0 25px 55px rgba(0,0,0,0.16);
}

.leader-img{
  width:100%;

  height:420px;

  object-fit:cover;
}

.leader-info{
  padding:35px 30px;
}

.leader-info h3{
  font-size:30px;

  color:#0f172a;

  margin-bottom:10px;

  font-weight:800;
}

.leader-info span{
  display:inline-block;

  background:#2563eb;

  color:white;

  padding:8px 18px;

  border-radius:30px;

  margin-bottom:22px;

  font-size:14px;

  font-weight:600;
}

.leader-info p{
  line-height:1.9;

  color:#475569;
}

/* STRENGTH */

.strength-section{
  background:
  linear-gradient(
    135deg,
    #eff6ff,
    #dbeafe
  );
}

.strength-grid{
  display:grid;

  grid-template-columns:
  repeat(auto-fit,minmax(240px,1fr));

  gap:25px;

  margin-top:60px;
}

.strength-card{
  background:white;

  padding:40px 25px;

  border-radius:24px;

  text-align:center;

  transition:0.3s;

  box-shadow:
  0 12px 35px rgba(0,0,0,0.08);
}

.strength-card:hover{
  transform:translateY(-8px);
}

.strength-icon{
  font-size:42px;

  margin-bottom:20px;
}

.strength-card h3{
  font-size:24px;

  margin-bottom:14px;

  color:#0f172a;
}

.strength-card p{
  color:#475569;

  line-height:1.8;
}

/* CONTACT STRIP */

.contact-strip{
  background:#020617;

  color:white;

  padding:60px 7%;
}

.contact-strip-inner{
  display:flex;
  justify-content:space-between;
  gap:50px;
  flex-wrap:wrap;
}

.contact-strip h2{
  font-size:38px;

  margin-bottom:12px;
}

.contact-strip p{
  color:#cbd5e1;

  line-height:2;
}

/* MOBILE */

@media(max-width:768px){

  .about-content h1{
    font-size:42px;
  }

  .about-content p{
    font-size:18px;
  }

  .about-box{
    padding:35px 25px;
  }

  .about-box h2{
    font-size:32px;
  }

  .leader-img{
    height:340px;
  }

  .contact-strip h2{
    font-size:30px;
  }
}
/* ADVISOR SECTION */

.advisor-section{
  background:
  linear-gradient(
    135deg,
    #f8fafc,
    #eef4ff
  );

  padding:120px 7%;
}

.advisor-container{
  max-width:1300px;

  margin:auto;

  display:grid;

  grid-template-columns:
  520px 1fr;

  gap:70px;

  align-items:center;
}

/* IMAGE SIDE */

.advisor-image-box{
  position:relative;
}

.advisor-image{

  width:100%;

  height:650px;

  object-fit:cover;

  border-radius:32px;

  box-shadow:
  0 25px 60px rgba(0,0,0,0.18);

  transition:0.4s;
}

.advisor-image:hover{

  transform:
  scale(1.02);
}

/* CONTENT */

.advisor-content{
  padding-right:30px;
}

.advisor-tag{
  display:inline-block;

  background:
  linear-gradient(
    135deg,
    #2563eb,
    #3b82f6
  );

  color:white;

  padding:12px 24px;

  border-radius:40px;

  font-size:14px;

  font-weight:700;

  margin-bottom:28px;

  box-shadow:
  0 10px 25px rgba(37,99,235,0.25);
}

.advisor-content h2{

  font-size:64px;

  line-height:1.05;

  color:#0f172a;

  margin-bottom:18px;

  font-weight:800;
}

.advisor-content h3{

  font-size:30px;

  color:#2563eb;

  margin-bottom:30px;

  font-weight:700;
}

.advisor-content p{

  color:#475569;

  line-height:2;

  font-size:18px;

  margin-bottom:24px;
}

/* BUTTON */

.advisor-content .btn{

  margin-top:10px;

  display:inline-flex;

  align-items:center;

  justify-content:center;
}

/* MOBILE */

@media(max-width:1100px){

  .advisor-container{

    grid-template-columns:1fr;

    gap:45px;
  }

  .advisor-image{

    height:520px;
  }

  .advisor-content{

    padding-right:0;
  }

  .advisor-content h2{

    font-size:48px;
  }
}

@media(max-width:768px){

  .advisor-section{

    padding:90px 6%;
  }

  .advisor-image{

    height:300px;
  }

  .advisor-content h2{

    font-size:36px;
  }

  .advisor-content h3{

    font-size:24px;
  }

  .advisor-content p{

    font-size:16px;

    line-height:1.9;
  }
}

@media(max-width:480px){

  .advisor-image{

    height:340px;

    border-radius:24px;
  }

  .advisor-content h2{

    font-size:30px;
  }

  .advisor-content h3{

    font-size:20px;
  }

  .advisor-tag{

    font-size:12px;

    padding:10px 18px;
  }
}
/* HIRING FORM */

.hire-form{
  max-width:1000px;

  margin:auto;

  background:white;

  padding:50px;

  border-radius:32px;

  box-shadow:
  0 20px 60px rgba(0,0,0,0.08);
}

.form-title{
  text-align:center;

  margin-bottom:50px;
}

.form-title h2{
  font-size:42px;

  color:#0f172a;

  margin-bottom:14px;

  font-weight:800;
}

.form-title p{
  color:#64748b;

  font-size:18px;
}

.form-section{
  margin-bottom:45px;
}

.form-section h3{
  font-size:26px;

  color:#2563eb;

  margin-bottom:25px;

  font-weight:700;
}

.form-grid{
  display:grid;

  grid-template-columns:
  repeat(auto-fit,minmax(280px,1fr));

  gap:22px;
}

.hire-form input,
.hire-form select,
.hire-form textarea{

  width:100%;

  padding:18px;

  border:
  1px solid #dbe2ea;

  border-radius:16px;

  background:#f8fafc;

  font-size:16px;

  outline:none;

  transition:0.3s;
}

.hire-form input:focus,
.hire-form select:focus,
.hire-form textarea:focus{

  border-color:#2563eb;

  background:white;

  box-shadow:
  0 0 0 4px rgba(37,99,235,0.1);
}

.hire-form textarea{
  min-height:150px;
}

.checkbox{
  display:flex;

  gap:12px;

  align-items:flex-start;

  color:#475569;

  line-height:1.7;
}

.checkbox input{
  width:auto;
  margin-top:4px;
}

.hire-form button{

  width:100%;

  padding:18px;

  border:none;

  border-radius:18px;

  background:
  linear-gradient(
    135deg,
    #2563eb,
    #3b82f6
  );

  color:white;

  font-size:18px;

  font-weight:700;

  cursor:pointer;

  transition:0.3s;
}

.hire-form button:hover{

  transform:translateY(-3px);

  box-shadow:
  0 15px 35px rgba(37,99,235,0.3);
}

/* MOBILE */

@media(max-width:768px){

  .hire-form{
    padding:35px 22px;
  }

  .form-title h2{
    font-size:32px;
  }

  .form-section h3{
    font-size:22px;
  }
}
/* COMPANY HIRING FORM */

.hire-company-form{
  max-width:1000px;

  margin:auto;

  background:white;

  padding:55px;

  border-radius:32px;

  box-shadow:
  0 20px 60px rgba(0,0,0,0.08);
}

.form-title{
  text-align:center;

  margin-bottom:50px;
}

.form-title h2{
  font-size:46px;

  color:#0f172a;

  margin-bottom:14px;

  font-weight:800;
}

.form-title p{
  color:#64748b;

  font-size:18px;

  line-height:1.8;
}

.form-section{
  margin-bottom:45px;
}

.form-section h3{
  font-size:26px;

  color:#2563eb;

  margin-bottom:24px;

  font-weight:700;
}

.form-grid{
  display:grid;

  grid-template-columns:
  repeat(auto-fit,minmax(280px,1fr));

  gap:22px;
}

.hire-company-form input,
.hire-company-form select,
.hire-company-form textarea{

  width:100%;

  padding:18px;

  border:
  1px solid #dbe2ea;

  border-radius:16px;

  background:#f8fafc;

  font-size:16px;

  outline:none;

  transition:0.3s;
}

.hire-company-form input:focus,
.hire-company-form select:focus,
.hire-company-form textarea:focus{

  border-color:#2563eb;

  background:white;

  box-shadow:
  0 0 0 4px rgba(37,99,235,0.1);
}

.hire-company-form textarea{
  min-height:150px;
}

.hire-company-form button{

  width:100%;

  padding:18px;

  border:none;

  border-radius:18px;

  background:
  linear-gradient(
    135deg,
    #2563eb,
    #3b82f6
  );

  color:white;

  font-size:18px;

  font-weight:700;

  cursor:pointer;

  transition:0.3s;
}

.hire-company-form button:hover{

  transform:translateY(-3px);

  box-shadow:
  0 15px 35px rgba(37,99,235,0.3);
}

/* MOBILE */

@media(max-width:768px){

  .hire-company-form{
    padding:35px 22px;
  }

  .form-title h2{
    font-size:34px;
  }

  .form-section h3{
    font-size:22px;
  }
}
/* THANK YOU PAGE */

.thankyou-section{

  min-height:100vh;

  background:
  linear-gradient(
    135deg,
    #eff6ff,
    #dbeafe
  );

  display:flex;
  justify-content:center;
  align-items:center;

  padding:140px 20px 80px;
}

.thankyou-box{

  max-width:760px;

  background:white;

  padding:70px 50px;

  border-radius:36px;

  text-align:center;

  box-shadow:
  0 25px 60px rgba(0,0,0,0.1);
}

.success-icon{

  width:120px;
  height:120px;

  margin:auto auto 35px;

  border-radius:50%;

  display:flex;
  justify-content:center;
  align-items:center;

  background:
  linear-gradient(
    135deg,
    #22c55e,
    #16a34a
  );

  color:white;

  font-size:58px;

  font-weight:800;

  box-shadow:
  0 15px 35px rgba(34,197,94,0.3);
}

.thankyou-box h1{

  font-size:52px;

  color:#0f172a;

  margin-bottom:24px;

  font-weight:800;

  line-height:1.2;
}

.thankyou-box p{

  color:#475569;

  font-size:18px;

  line-height:2;

  margin-bottom:40px;
}

.thankyou-buttons{

  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
}

.secondary-btn{

  background:white !important;

  color:#111827 !important;

  border:
  1px solid #dbe2ea;
}

/* MOBILE */

@media(max-width:768px){

  .thankyou-box{

    padding:50px 25px;
  }

  .thankyou-box h1{

    font-size:36px;
  }

  .thankyou-box p{

    font-size:16px;
  }

  .success-icon{

    width:90px;
    height:90px;

    font-size:42px;
  }
}
/* MENTOR SECTION */

.mentor-section{

  background:white;

  padding:120px 7%;
}

.mentor-container{

  max-width:1300px;

  margin:auto;

  display:grid;

  grid-template-columns:
  1fr 520px;

  gap:70px;

  align-items:center;
}

/* IMAGE */

.mentor-image-box{
  position:relative;
}

.mentor-image{

  width:100%;

  height:650px;

  object-fit:cover;

  border-radius:32px;

  box-shadow:
  0 25px 60px rgba(0,0,0,0.18);

  transition:0.4s;
}

.mentor-image:hover{

  transform:
  scale(1.02);
}

/* CONTENT */

.mentor-content{
  position:relative;
}

.mentor-tag{

  display:inline-block;

  background:
  linear-gradient(
    135deg,
    #0f172a,
    #1e293b
  );

  color:white;

  padding:12px 24px;

  border-radius:40px;

  font-size:14px;

  font-weight:700;

  margin-bottom:28px;
}

.mentor-content h2{

  font-size:62px;

  line-height:1.05;

  color:#0f172a;

  margin-bottom:18px;

  font-weight:800;
}

.mentor-content h3{

  font-size:28px;

  color:#2563eb;

  margin-bottom:30px;

  font-weight:700;
}

.mentor-content p{

  color:#475569;

  line-height:2;

  font-size:18px;

  margin-bottom:24px;
}

/* MOBILE */

@media(max-width:1100px){

  .mentor-container{

    grid-template-columns:1fr;

    gap:45px;
  }

  .mentor-image{

    height:520px;
  }

  .mentor-content h2{

    font-size:46px;
  }
}

@media(max-width:768px){

  .mentor-section{

    padding:90px 6%;
  }

  .mentor-image{

    height:420px;
  }

  .mentor-content h2{

    font-size:36px;
  }

  .mentor-content h3{

    font-size:22px;
  }

  .mentor-content p{

    font-size:16px;

    line-height:1.9;
  }
}

@media(max-width:480px){

  .mentor-image{

    height:340px;

    border-radius:24px;
  }

  .mentor-content h2{

    font-size:30px;
  }

  .mentor-content h3{

    font-size:20px;
  }
}
/* WHATSAPP BUTTON */

.whatsapp-btn{

  position:fixed;

  right:22px;
  bottom:22px;

  width:72px;
  height:72px;

  border-radius:50%;

  background:white;

  display:flex;
  justify-content:center;
  align-items:center;

  box-shadow:
  0 15px 35px rgba(0,0,0,0.2);

  z-index:9999;

  transition:0.3s;

  animation:
  whatsappFloat 2.5s infinite;
}

.whatsapp-btn:hover{

  transform:
  scale(1.1);

  box-shadow:
  0 20px 45px rgba(37,211,102,0.35);
}

.whatsapp-btn img{

  width:42px;
  height:42px;

  object-fit:contain;
}

/* FLOATING EFFECT */

@keyframes whatsappFloat{

  0%{
    transform:translateY(0px);
  }

  50%{
    transform:translateY(-8px);
  }

  100%{
    transform:translateY(0px);
  }
}

/* MOBILE */

@media(max-width:768px){

  .whatsapp-btn{

    width:62px;
    height:62px;

    right:18px;
    bottom:18px;
  }

  .whatsapp-btn img{

    width:36px;
    height:36px;
  }
}
/* COMPANY PROFILE DOWNLOAD */

.profile-download-section{

  padding:40px 7% 90px;

  background:#f8fafc;
}

.profile-download-card{

  max-width:1250px;

  margin:auto;

  background:white;

  border-radius:28px;

  padding:40px 45px;

  display:flex;

  align-items:center;

  justify-content:space-between;

  gap:30px;

  box-shadow:
  0 18px 50px rgba(0,0,0,0.08);

  border:
  1px solid #e2e8f0;
}

/* ICON */

.profile-download-icon{

  width:90px;
  height:90px;

  min-width:90px;

  border-radius:24px;

  display:flex;
  justify-content:center;
  align-items:center;

  background:
  linear-gradient(
    135deg,
    #2563eb,
    #1d4ed8
  );

  color:white;

  font-size:42px;

  box-shadow:
  0 15px 35px rgba(37,99,235,0.25);
}

/* CONTENT */

.profile-download-content{
  flex:1;
}

.profile-download-content h2{

  font-size:34px;

  color:#0f172a;

  margin-bottom:12px;

  font-weight:800;
}

.profile-download-content p{

  color:#64748b;

  font-size:17px;

  line-height:1.8;

  max-width:720px;
}

/* DOCUMENT */

/* DOCUMENTS SECTION */

.documents-section{

  background:
  linear-gradient(
    135deg,
    #f8fafc,
    #eef4ff
  );
}

.documents-heading{

  text-align:center;

  margin-bottom:55px;
}

/* GRID */

.documents-grid{

  display:grid;

  grid-template-columns:
  repeat(auto-fit,minmax(320px,1fr));

  gap:30px;
}

/* CARD */

.document-card{

  background:white;

  padding:32px 30px;

  border-radius:28px;

  transition:0.4s;

  position:relative;

  overflow:hidden;

  box-shadow:
  0 15px 40px rgba(0,0,0,0.08);
}

.document-card:hover{

  transform:
  translateY(-8px);

  box-shadow:
  0 25px 55px rgba(0,0,0,0.14);
}

/* TOP */

.document-card-top{

  display:flex;

  justify-content:space-between;

  align-items:center;

  margin-bottom:24px;
}

/* ICON */

.document-icon{

  width:72px;
  height:72px;

  border-radius:22px;

  display:flex;
  justify-content:center;
  align-items:center;

  background:
  linear-gradient(
    135deg,
    #2563eb,
    #3b82f6
  );

  color:white;

  font-size:34px;

  box-shadow:
  0 12px 28px rgba(37,99,235,0.22);
}

/* BADGE */

.document-badge{

  background:#dbeafe;

  color:#2563eb;

  padding:9px 16px;

  border-radius:30px;

  font-size:12px;

  font-weight:700;
}

/* TITLE */

.document-card h3{

  font-size:28px;

  color:#0f172a;

  margin-bottom:14px;

  font-weight:800;

  line-height:1.2;
}

/* DESCRIPTION */

.document-card p{

  color:#475569;

  line-height:1.8;

  margin-bottom:22px;

  font-size:15px;
}

/* FEATURES */

.document-features{

  list-style:none;

  margin-bottom:28px;
}

.document-features li{

  margin-bottom:10px;

  color:#334155;

  font-size:15px;

  font-weight:500;
}

/* BUTTON */

.document-btn{

  display:inline-flex;

  justify-content:center;
  align-items:center;

  padding:14px 24px;

  border-radius:14px;

  background:
  linear-gradient(
    135deg,
    #2563eb,
    #3b82f6
  );

  color:white;

  text-decoration:none;

  font-weight:700;

  font-size:15px;

  transition:0.3s;

  box-shadow:
  0 12px 30px rgba(37,99,235,0.25);
}

.document-btn:hover{

  transform:
  translateY(-4px);

  box-shadow:
  0 18px 40px rgba(37,99,235,0.35);
}

/* MOBILE */

@media(max-width:768px){

  .documents-grid{

    grid-template-columns:1fr;
  }

  .document-card{

    padding:28px 22px;
  }

  .document-card h3{

    font-size:24px;
  }

  .document-card-top{

    flex-direction:column;

    align-items:flex-start;

    gap:16px;
  }
}
