/* ================= RESET ================= */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Inter', sans-serif;
}

body{
  background:#f8fafc;
  color:#0a192f;
  overflow-x:hidden;
}

/* ================= CONTAINER ================= */
.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

/* ================= NAVBAR ================= */
nav{
  position:fixed;
  width:100%;
  top:0;
  z-index:1000;
  background:#0a192f;
  backdrop-filter:blur(10px);
}

.nav-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  height:70px;
}

.logo img{
  height:120px;
}

.nav-links{
  display:flex;
  gap:30px;
  list-style:none;
}

.nav-links a{
  color:#ccd6f6;
  text-decoration:none;
  position:relative;
}

.nav-links a::after{
  content:"";
  position:absolute;
  width:0%;
  height:2px;
  background:linear-gradient(90deg,#00d4ff,#6a00ff);
  bottom:-5px;
  left:0;
  transition:0.3s;
}

.nav-links a:hover::after{
  width:100%;
}

.nav-links a:hover{
  color:#00d4ff;
}

/* ================= HERO ================= */
.hero-bg{
  position:relative;
  height:100vh;
  background:url("assets/images/hero.png") center/cover no-repeat;
  display:flex;
  align-items:center;
}

.overlay{
  position:absolute;
  width:100%;
  height:100%;
  background:rgba(2,12,27,0.75);
}

.hero-content{
  position:relative;
  z-index:2;
  max-width:600px;
  margin-left:80px;
}

.hero-line{
  width:60px;
  height:4px;
  background:linear-gradient(90deg,#00d4ff,#6a00ff);
  margin-bottom:20px;
}

.hero-content h1{
  font-size:56px;
  color:white;
}

.hero-content span{
  background:linear-gradient(90deg,#00d4ff,#6a00ff);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.hero-content p{
  margin:20px 0;
  color:#cbd5e1;
}

/* Buttons */
.hero-buttons{
  display:flex;
  gap:15px;
}

.btn{
  display:inline-block;
  padding:12px 25px;
  border-radius:6px;
  background:linear-gradient(90deg,#00d4ff,#6a00ff);
  color:white;
  text-decoration:none;
  transition:0.3s;
}

.btn:hover{
  transform:translateY(-3px);
}

.btn-outline{
  display:inline-block;
  padding:12px 25px;
  border-radius:6px;
  border:1px solid #00d4ff;
  color:#00d4ff;
  text-decoration:none;
}

.btn-outline:hover{
  background:#00d4ff;
  color:#020c1b;
}

/* Features */
.hero-features{
  display:flex;
  gap:30px;
  margin-top:40px;
  flex-wrap:wrap;
  color:#cbd5e1;
}

/* ================= SECTION ================= */
.section{
  padding:100px 0;
}

/* ================= SERVICES SECTION ================= */
.services-section{
  padding:100px 0;
  background:url("assets/images/hero2.png") center/cover no-repeat;
}

.section-tag{
  color:#00d4ff;
  font-size:12px;
  letter-spacing:2px;
  margin-bottom:15px;
}

.section-heading{
  font-size:48px;
  margin-bottom:20px;
}

.section-desc{
  color:#6b7280;
  max-width:600px;
  margin-bottom:50px;
}

/* Grid */
.services-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
}

/* Cards */
.service-card{
  background:#ffffff;
  padding:30px;
  border-radius:16px;
  border:1px solid #e5e7eb;
  transition:0.3s;
}

.service-card:hover{
  transform:translateY(-10px);
  border-color:#00d4ff;
  box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

/* Icon */
.icon-box{
  width:50px;
  height:50px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#f1f5f9;
  border-radius:12px;
  font-size:20px;
  margin-bottom:20px;
}

.service-card h3{
  margin-bottom:10px;
}

.service-card p{
  color:#6b7280;
  font-size:14px;
}

/* Learn more */
.learn-more{
  display:inline-block;
  margin-top:15px;
  color:#00aaff;
  text-decoration:none;
}

.learn-more:hover{
  transform:translateX(5px);
}

/* ================= GRID (OTHER SECTION) ================= */
.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:25px;
}

/* Cards */
.card{
  background:white;
  padding:25px;
  border-radius:12px;
  border:1px solid #e5e7eb;
  transition:0.3s;
}

.card:hover{
  transform:translateY(-10px);
  border-color:#00d4ff;
}

/* ================= FOOTER ================= */
footer{
  text-align:center;
  padding:30px;
  background:white;
  border-top:1px solid #e5e7eb;
}

/* ================= MOBILE ================= */
@media(max-width:768px){

  .nav-links{
    display:none;
  }

  .hero-content{
    margin-left:20px;
  }

  .section-heading{
    font-size:32px;
  }

}

/* ================= HAMBURGER ================= */
.hamburger{
  display:none;
  flex-direction:column;
  gap:5px;
}

.hamburger span{
  width:25px;
  height:3px;
  background:white;
}

.mobile-menu{
  display:none;
  flex-direction:column;
  background:#0a192f;
  position:fixed;
  width:100%;
  top:70px;
}

.mobile-menu.active{
  display:flex;
}

.mobile-menu a{
  color:white;
  padding:10px;
  text-decoration:none;
}

/* ================= SCROLL EFFECT ================= */
#navbar.scrolled{
  background:#020c1b;
}

/* ================= ANIMATION ================= */
.fade-in{
  opacity:0;
  transform:translateY(40px);
  transition:0.6s;
}

.fade-in.show{
  opacity:1;
  transform:translateY(0);
}
/* ================= WHY DUTRIX TEXT ================= */

/* Section spacing */
.why-section{
  padding:100px 0;
}

/* Small top label */
.why-section .section-tag{
  font-size:12px;
  letter-spacing:2px;
  color:#00aaff;
  margin-bottom:15px;
  font-weight:600;
}

/* Main heading */
.why-heading{
  font-size:48px;
  font-weight:800;
  line-height:1.2;
  color:#0a192f;
  margin-bottom:40px;
}

/* Each point row */
.why-point{
  display:flex;
  align-items:flex-start;
  gap:15px;
  margin-bottom:25px;
}

/* Icon (check box style) */
.why-point::before{
  content:"✔";
  display:flex;
  align-items:center;
  justify-content:center;
  width:28px;
  height:28px;
  border-radius:8px;
  border:2px solid #00aaff;
  color:#00aaff;
  font-size:14px;
  flex-shrink:0;
}

/* Title inside point */
.why-point strong{
  display:block;
  font-size:16px;
  font-weight:600;
  color:#0a192f;
  margin-bottom:5px;
}

/* Description text */
.why-point p{
  font-size:14px;
  color:#6b7280;
  line-height:1.6;
}
/* ================= WHY DUTRIX BACKGROUND ================= */

.why-section{
  padding:100px 0;

  /* Your image */
  background: url("assets/images/hero3.png") left center/cover no-repeat;

  /* Smooth scrolling effect (optional premium feel) */
  background-attachment: fixed;
}
.why-section{
  background-position: left center;
}
/* Layout split */
.why-container{
  display:flex;
  align-items:center;
}

/* Left empty space */
.why-left{
  flex:1;
}

/* Right content */
.why-right{
  flex:1;
  padding-left:60px; /* push text nicely */
}
.why-right{
  max-width:600px;
}
/* ================= INDUSTRIES SECTION ================= */

.industries-section{
  padding:100px 0;
  background:#ffffff; /* clean white */
  text-align:center;
}

/* Grid */
.industries-grid{
  margin-top:50px;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
}

/* Card */
.industry-card{
  background:#f8fafc;
  padding:30px;
  border-radius:16px;
  border:1px solid #e5e7eb;
  transition:0.3s;
}

/* Hover */
.industry-card:hover{
  transform:translateY(-8px);
  border-color:#00d4ff;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

/* Icon */
.industry-icon{
  font-size:30px;
  margin-bottom:15px;
}

/* Title */
.industry-card h3{
  margin-bottom:10px;
  color:#0a192f;
}

/* Text */
.industry-card p{
  font-size:14px;
  color:#6b7280;
}
/* ================= INDUSTRIES HEADER ================= */

.industries-header{
  text-align:center;
  margin-bottom:60px;
}

/* Top small label with line */
.section-top{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:10px;
  margin-bottom:15px;
}

/* Line */
.section-top .line{
  width:40px;
  height:2px;
  background:linear-gradient(90deg,#00d4ff,#6a00ff);
}

/* Label text */
.section-top p{
  font-size:12px;
  letter-spacing:2px;
  color:#00d4ff;
  font-weight:600;
}

/* Main heading */
.main-heading{
  font-size:56px;
  font-weight:800;
   color:#072451; /* heading colour*/
  margin-bottom:20px;
}

/* Description */
.section-desc{
  max-width:600px;
  margin:0 auto;
  color:#94a3b8;
  font-size:16px;
  line-height:1.6;
}
/* ================= CTA SECTION ================= */

/* FULL BACKGROUND CTA */
.cta-section {
  background: url("assets/images/cta.png") no-repeat center;
  background-size: cover;
  padding: 120px 8%;
  position: relative;
  color: white;
}

/* Remove any dark box styling */
.cta-box {
  display: none;
}

/* Overlay for readability */
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 20, 50, 0.4),
    rgba(0, 20, 50, 0.3)
  );
}

/* Content */
.cta-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

/* Tag */
.cta-tag {
  color: #00cfff;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 20px;
}

/* Heading */
.cta-content h2 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

/* Subtext */
.cta-sub {
  color: #b0c4d4;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* Buttons */
.cta-buttons {
  display: flex;
  gap: 20px;
}

.btn {
  background: #00bcd4;
  padding: 14px 28px;
  border-radius: 8px;
  color: white;
  text-decoration: none;
}

.btn-outline {
  border: 1px solid rgba(255,255,255,0.4);
  padding: 14px 28px;
  border-radius: 8px;
  color: white;
  text-decoration: none;
}
/* ================= FOOTER ================= */

.footer{
  background:#020c1b;
  color:#94a3b8;
  padding:40px 0 20px;
  width:100%;
}

/* Layout */
.footer-container{
  display:grid;
  grid-template-columns:1.5fr 1fr 1fr 1fr;
  gap:60px; /* increase spacing */
  align-items:flex-start;  
}

/* Logo */
.footer-logo{
  width:140px;
  display:block;
  margin-bottom:20px;
  margin:0;  
  position:relative;
  top:-5px;
}

/* Description */
.footer-desc{
  font-size:14px;
  line-height:1.6;
  margin-bottom:20px;
}

/* Social icons */
.footer-social a{
  display:inline-block;
  margin-right:10px;
  padding:8px 12px;
  border:1px solid rgba(255,255,255,0.2);
  border-radius:6px;
  color:#94a3b8;
  text-decoration:none;
  transition:0.3s;
}

.footer-social a:hover{
  border-color:#00d4ff;
  color:#00d4ff;
}

/* Columns */
.footer-col h4{
  color:white;
  font-size:16px;
  text-align:left;
  margin-bottom:20px;
  margin-top:0;
}

.footer-col ul{
  list-style:none;
  padding:0;
  margin:0;
}

.footer-col ul li{
  margin-bottom:10px;
  font-size:14px;
  text-align:left;
}

/* Links */
.footer-col ul li a{
  color:#94a3b8;
  text-decoration:none;
  transition:0.3s;
}

.footer-col ul li a:hover{
  color:#00d4ff;
}

/* Bottom */
.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.1);
  margin-top:50px;
  padding-top:20px;

  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
}

/* Bottom links */
.footer-links a{
  margin-left:20px;
  color:#94a3b8;
  text-decoration:none;
  font-size:14px;
}

.footer-links a:hover{
  color:#00d4ff;
}

/* ================= RESPONSIVE ================= */

@media(max-width:768px){

  .footer-container{
    grid-template-columns:1fr;
  }

  .footer-bottom{
    flex-direction:column;
    gap:10px;
    text-align:center;
  }

  .footer-links a{
    margin:0 10px;
  }

}
.container{
  max-width:1200px;   /* controls overall width */
  margin:0 auto;      /* center align */
  padding:0 20px;     /* side spacing */
}
.footer-desc{
  font-size:14px;
  max-width:300px; /* prevents stretching */
}
.footer-bottom{
  max-width:1200px;
  margin:40px auto 0;
  padding-top:20px;

  display:flex;
  justify-content:space-between;
  align-items:center;
}
.footer-col:first-child{
  text-align:left; 
    padding-top:0;
    margin-top:-15px;
}
.footer-desc{
  text-align:left;
  max-width:320px;  /* keeps text neat like 1st image */
}
.footer-social{
  justify-content:flex-start;
}
.footer-container{
  align-items:flex-start;
}
.footer-col{
  text-align:left;
}
/* ================= ABOUT HERO ================= */

.about-hero{

  position: relative;

  min-height: 100vh;

  display: flex;
  align-items: center;

  padding: 120px 0;

  /* Background Image */
  background: url("assets/images/hero3.png") center/cover no-repeat;

  overflow: hidden;
}

/* Dark Overlay */
.about-overlay{

  position: absolute;

  inset: 0;

  background: linear-gradient(
    to right,
    rgba(0, 15, 40, 0.82),
    rgba(0, 15, 40, 0.35)
  );
}

/* Hero Container */
.about-hero-container{

  position: relative;
  z-index: 2;
}

/* Content Width */
.about-hero-content{
  max-width: 700px;
}

/* Small Tag */
.about-tag{

  color: #00cfff;

  font-size: 14px;

  letter-spacing: 3px;

  font-weight: 600;

  margin-bottom: 20px;
}

/* Heading */
.about-hero-content h1{

  font-size: 78px;

  line-height: 1.1;

  font-weight: 800;

  color: white;

  margin-bottom: 30px;
}

/* Description */
.about-text{

  font-size: 20px;

  line-height: 1.8;

  color: #c7d5e0;

  margin-bottom: 40px;

  max-width: 650px;
}

/* Buttons */
.about-buttons{

  display: flex;

  gap: 20px;

  margin-bottom: 40px;

  flex-wrap: wrap;
}

/* Small Features */
.about-features{

  display: flex;

  flex-wrap: wrap;

  gap: 20px;
}

/* Feature Item */
.about-feature{

  padding: 12px 18px;

  background: rgba(255,255,255,0.08);

  border: 1px solid rgba(255,255,255,0.1);

  border-radius: 10px;

  color: white;

  font-size: 14px;

  backdrop-filter: blur(10px);
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){

  .about-hero-content h1{
    font-size: 60px;
  }

  .about-text{
    font-size: 18px;
  }

}

@media(max-width:768px){

  .about-hero{
    padding: 100px 0;
  }

  .about-hero-content h1{
    font-size: 44px;
  }

  .about-text{
    font-size: 16px;
    line-height: 1.7;
  }

  .about-buttons{
    flex-direction: column;
    align-items: flex-start;
  }

}

@media(max-width:480px){

  .about-hero-content h1{
    font-size: 36px;
  }

  .about-feature{
    width: 100%;
  }

}
/* ================= COMPANY STORY ================= */

.company-story{

  padding: 120px 0;

  background: #ffffff;
}

/* Main Layout */
.story-container{

  display: grid;

  grid-template-columns: 1fr 1.2fr;

  gap: 80px;

  align-items: flex-start;
}

/* LEFT SIDE */
.story-left h2{

  font-size: 52px;

  line-height: 1.2;

  color: #0a192f;

  margin-top: 20px;
}

/* RIGHT SIDE */
.story-right p{

  font-size: 17px;

  line-height: 1.9;

  color: #5b6b7c;

  margin-bottom: 28px;
}

/* Stats Container */
.story-stats{

  display: flex;

  gap: 25px;

  margin-top: 40px;

  flex-wrap: wrap;
}

/* Individual Stat */
.story-stat{

  min-width: 160px;

  padding: 25px;

  background: #f8fbff;

  border: 1px solid #e5edf5;

  border-radius: 16px;

  transition: 0.3s ease;
}

/* Hover */
.story-stat:hover{

  transform: translateY(-6px);

  border-color: #00cfff;

  box-shadow: 0 12px 30px rgba(0, 180, 255, 0.12);
}

/* Stat Number */
.story-stat h3{

  font-size: 30px;

  color: #00aaff;

  margin-bottom: 10px;
}

/* Stat Label */
.story-stat span{

  font-size: 14px;

  color: #5b6b7c;
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){

  .story-container{

    grid-template-columns: 1fr;

    gap: 50px;
  }

  .story-left h2{
    font-size: 42px;
  }

}

@media(max-width:768px){

  .company-story{
    padding: 90px 0;
  }

  .story-left h2{
    font-size: 34px;
  }

  .story-right p{
    font-size: 16px;
  }

  .story-stats{
    flex-direction: column;
  }

}
/* ================= MISSION SECTION ================= */

.mission-section{

  padding: 120px 0;

  background:url("assets/images/aboutmission1.png");
  
  background-size: cover;

  background-position: center;

  background-repeat: no-repeat;

  position: relative;

  overflow: hidden;
}
.mission-section .container{

  position: relative;

  z-index: 2;
}
/* ================= HEADER ================= */

.mission-header{

  text-align: center;

  max-width: 750px;

  margin: 0 auto 70px;
}

/* Heading */
.mission-header h2{

  font-size: 52px;

  line-height: 1.2;

  color: #0a192f;

  margin: 20px 0;
}

/* Description */
.mission-desc{

  font-size: 17px;

  line-height: 1.8;

  color: #5b6b7c;
}

/* ================= GRID ================= */

.mission-grid{

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 30px;
}

/* ================= CARD ================= */

.mission-card{

  background: rgba(255,255,255,0.9);

  padding: 40px;

  border-radius: 22px;

  border: 1px solid #e4edf7;

  transition: 0.3s ease;

  position: relative;

  overflow: hidden;
}

/* Hover */
.mission-card:hover{

  transform: translateY(-10px);

  border-color: #00cfff;

  box-shadow: 0 18px 45px rgba(0, 180, 255, 0.12);
}

/* Top Gradient Line */
.mission-card::before{

  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 4px;

  background: linear-gradient(
    90deg,
    #00cfff,
    #0066ff
  );
}

/* ================= ICON ================= */

.mission-icon{

  width: 70px;
  height: 70px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 18px;

  background:
  linear-gradient(
    135deg,
    #e8f7ff,
    #dff2ff
  );

  font-size: 30px;

  margin-bottom: 30px;
}

/* ================= TITLE ================= */

.mission-card h3{

  font-size: 28px;

  color: #0a192f;

  margin-bottom: 18px;
}

/* ================= TEXT ================= */

.mission-card p{

  font-size: 15px;

  line-height: 1.9;

  color: #5b6b7c;
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){

  .mission-grid{

    grid-template-columns: 1fr;

    gap: 25px;
  }

  .mission-header h2{
    font-size: 42px;
  }

}

@media(max-width:768px){

  .mission-section{
    padding: 90px 0;
  }

  .mission-card{
    padding: 30px;
  }

  .mission-header h2{
    font-size: 34px;
  }

}
/* ================= WHY DUTRIX ================= */

.about-why-section{

  padding: 120px 0;

  background:
  linear-gradient(
    135deg,
    #041226,
    #071d38
  );

  position: relative;

  overflow: hidden;
}

/* Background Glow */
.about-why-section::before{

  content: "";

  position: absolute;

  width: 500px;
  height: 500px;

  background: rgba(0, 200, 255, 0.08);

  filter: blur(120px);

  top: -100px;
  right: -100px;

  border-radius: 50%;
}

/* Layout */
.about-why-container{

  display: grid;

  grid-template-columns: 1fr 1.1fr;

  gap: 70px;

  align-items: center;

  position: relative;

  z-index: 2;
}

/* ================= LEFT ================= */

.about-why-left h2{

  font-size: 58px;

  line-height: 1.15;

  color: white;

  margin: 20px 0 30px;
}

/* Description */
.about-why-desc{

  font-size: 18px;

  line-height: 1.9;

  color: #b8c7d9;

  margin-bottom: 40px;

  max-width: 600px;
}

/* ================= RIGHT ================= */

.about-why-right{

  display: grid;

  gap: 25px;
}

/* Card */
.why-card{

  display: flex;

  gap: 20px;

  padding: 28px;

  background: rgba(255,255,255,0.05);

  border: 1px solid rgba(255,255,255,0.08);

  border-radius: 20px;

  backdrop-filter: blur(10px);

  transition: 0.3s ease;
}

/* Hover */
.why-card:hover{

  transform: translateY(-6px);

  border-color: #00cfff;

  box-shadow: 0 14px 35px rgba(0, 180, 255, 0.12);
}

/* Icon */
.why-icon{

  width: 65px;
  height: 65px;

  min-width: 65px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 16px;

  background:
  linear-gradient(
    135deg,
    #00cfff,
    #0066ff
  );

  font-size: 28px;
}

/* Title */
.why-card h3{

  font-size: 24px;

  color: white;

  margin-bottom: 10px;
}

/* Text */
.why-card p{

  font-size: 15px;

  line-height: 1.8;

  color: #b8c7d9;
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){

  .about-why-container{

    grid-template-columns: 1fr;

    gap: 50px;
  }

  .about-why-left h2{
    font-size: 46px;
  }

}

@media(max-width:768px){

  .about-why-section{
    padding: 90px 0;
  }

  .about-why-left h2{
    font-size: 36px;
  }

  .why-card{
    flex-direction: column;
  }

}
/* ================= STARTUP STATS ================= */

/* ================= STARTUP STATS ================= */

.startup-stats-section{

  padding: 120px 0;

  background: url("assets/images/about-stats.png");

  background-size: cover;

  background-position: center;

  background-repeat: no-repeat;

  position: relative;

  overflow: hidden;
}

.startup-stats-container{

  position: relative;

  z-index: 2;
}

/* ================= HEADING ================= */

.stats-heading{

  text-align: center;

  margin-bottom: 70px;

  position: relative;

  z-index: 2;
}

.stats-heading h2{

  font-size: 58px;

  color: #071b33;

  margin: 20px 0;

  font-weight: 700;
}

.stats-heading p{

  color: #4e6480;

  font-size: 18px;

  line-height: 1.8;

  max-width: 760px;

  margin: auto;
}

.section-tag{

  color: #008cff;

  letter-spacing: 3px;

  font-weight: 600;
}

/* ================= GRID ================= */

.startup-stats-grid{

  display: grid;

  grid-template-columns: repeat(4,1fr);

  gap: 25px;

  position: relative;

  z-index: 2;
}

/* ================= CARD ================= */

.startup-stat-card{

  background: rgba(255,255,255,0.65);

  border: 1px solid rgba(255,255,255,0.7);

  border-radius: 24px;

  padding: 50px 30px;

  text-align: center;

  transition: 0.35s ease;

  backdrop-filter: blur(10px);

  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Hover */
.startup-stat-card:hover{

  transform: translateY(-8px);

  border-color: #00cfff;

  box-shadow: 0 15px 40px rgba(0,180,255,0.15);
}

/* Number */
.startup-stat-card h3{

  font-size: 58px;

  font-weight: 700;

  background:
  linear-gradient(
    90deg,
    #00d9ff,
    #0066ff
  );

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;

  margin-bottom: 15px;
}

/* Label */
.startup-stat-card span{

  color: #23364d;

  font-size: 18px;

  font-weight: 600;
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){

  .startup-stats-grid{

    grid-template-columns: repeat(2,1fr);
  }

  .stats-heading h2{
    font-size: 44px;
  }

}

@media(max-width:768px){

  .startup-stats-section{
    padding: 90px 0;
  }

  .startup-stats-grid{

    grid-template-columns: 1fr;
  }

  .stats-heading h2{
    font-size: 34px;
  }

}
/* ================= CTA SECTION ================= */

.about-cta-section{

  padding: 140px 0;

  background: url("assets/images/cta-bg.png");

  background-size: cover;

  background-position: center;

  background-repeat: no-repeat;

  position: relative;

  overflow: hidden;
}

/* Optional overlay */
.about-cta-section::before{

  content: "";

  position: absolute;

  inset: 0;

  background:
  linear-gradient(
    90deg,
    rgba(3,14,28,0.65),
    rgba(3,14,28,0.15)
  );
}

/* Content */
.about-cta-content{

  position: relative;

  z-index: 2;

  max-width: 700px;
}

/* Tag */
.about-cta-content .section-tag{

  color: #00cfff;

  letter-spacing: 3px;

  font-weight: 600;

  margin-bottom: 20px;
}

/* Heading */
.about-cta-content h2{

  font-size: 72px;

  line-height: 1.1;

  color: white;

  margin-bottom: 30px;
}

/* Text */
.about-cta-content p{

  color: #d6e3f1;

  font-size: 20px;

  line-height: 1.8;

  max-width: 650px;

  margin-bottom: 40px;
}

/* Buttons */
.about-cta-buttons{

  display: flex;

  gap: 20px;

  flex-wrap: wrap;
}

/* Primary Button */
.cta-btn{

  background:
  linear-gradient(
    90deg,
    #00d9ff,
    #0066ff
  );

  color: white;

  padding: 18px 40px;

  border-radius: 14px;

  text-decoration: none;

  font-weight: 600;

  transition: 0.3s ease;
}

.cta-btn:hover{

  transform: translateY(-4px);

  box-shadow: 0 15px 30px rgba(0,180,255,0.25);
}

/* Outline Button */
.cta-btn-outline{

  border: 1px solid rgba(255,255,255,0.3);

  color: white;

  padding: 18px 40px;

  border-radius: 14px;

  text-decoration: none;

  font-weight: 600;

  transition: 0.3s ease;

  backdrop-filter: blur(8px);
}

.cta-btn-outline:hover{

  background: rgba(255,255,255,0.08);

  border-color: #00cfff;
}

/* ================= RESPONSIVE ================= */

@media(max-width:768px){

  .about-cta-content h2{

    font-size: 46px;
  }

  .about-cta-content p{

    font-size: 17px;
  }

}
/* ================= SERVICES HERO ================= */

.services-hero{

  position: relative;

  min-height: 100vh;

  display: flex;

  align-items: center;

  padding: 120px 0;

  background:
  url("assets/images/services-hero.png");

  background-size: cover;

  background-position: center;

  background-repeat: no-repeat;

  overflow: hidden;
}

/* Overlay */
.services-overlay{

  position: absolute;

  inset: 0;

  background:
  linear-gradient(
    to right,
    rgba(2,12,27,0.82),
    rgba(2,12,27,0.35)
  );
}

/* Container */
.services-hero-container{

  position: relative;

  z-index: 2;
}

/* Content Width */
.services-hero-content{

  max-width: 720px;
}

/* Tag */
.services-tag{

  color: #00d9ff;

  font-size: 14px;

  font-weight: 600;

  letter-spacing: 3px;

  margin-bottom: 22px;
}

/* Heading */
.services-hero-content h1{

  font-size: 78px;

  line-height: 1.08;

  color: white;

  font-weight: 800;

  margin-bottom: 30px;
}

/* Description */
.services-text{

  font-size: 20px;

  line-height: 1.9;

  color: #c7d5e0;

  margin-bottom: 40px;

  max-width: 650px;
}

/* Buttons */
.services-buttons{

  display: flex;

  gap: 20px;

  margin-bottom: 45px;

  flex-wrap: wrap;
}

/* Features */
.services-features{

  display: flex;

  gap: 18px;

  flex-wrap: wrap;
}

/* Feature */
.services-feature{

  padding: 14px 20px;

  background: rgba(255,255,255,0.08);

  border: 1px solid rgba(255,255,255,0.08);

  border-radius: 12px;

  color: white;

  font-size: 14px;

  backdrop-filter: blur(10px);

  transition: 0.3s ease;
}

/* Hover */
.services-feature:hover{

  transform: translateY(-4px);

  border-color: #00d9ff;
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){

  .services-hero-content h1{

    font-size: 58px;
  }

  .services-text{

    font-size: 18px;
  }

}

@media(max-width:768px){

  .services-hero{

    padding: 100px 0;
  }

  .services-hero-content h1{

    font-size: 44px;
  }

  .services-text{

    font-size: 16px;

    line-height: 1.7;
  }

  .services-buttons{

    flex-direction: column;

    align-items: flex-start;
  }

}

@media(max-width:480px){

  .services-hero-content h1{

    font-size: 36px;
  }

  .services-feature{

    width: 100%;
  }

}
/* ================= STAFFING SERVICES ================= */

.staffing-services-section{

  padding: 120px 0;

  background:
  linear-gradient(
    to bottom,
    #f8fbff,
    #eef5fd
  );

  position: relative;

  overflow: hidden;
}

/* Header */
.staffing-header{

  text-align: center;

  max-width: 800px;

  margin: 0 auto 80px;
}

/* Heading */
.staffing-header h2{

  font-size: 58px;

  line-height: 1.2;

  color: #071b33;

  margin: 20px 0;
}

/* Description */
.staffing-desc{

  color: #56708d;

  font-size: 18px;

  line-height: 1.9;
}

/* Grid */
.staffing-grid{

  display: grid;

  grid-template-columns: repeat(3,1fr);

  gap: 28px;
}

/* Card */
.staffing-card{

  background: rgba(255,255,255,0.72);

  border: 1px solid rgba(255,255,255,0.7);

  border-radius: 24px;

  padding: 40px;

  backdrop-filter: blur(10px);

  transition: 0.35s ease;

  position: relative;

  overflow: hidden;
}

/* Top Gradient Line */
.staffing-card::before{

  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 4px;

  background:
  linear-gradient(
    90deg,
    #00d9ff,
    #0066ff
  );
}

/* Hover */
.staffing-card:hover{

  transform: translateY(-10px);

  box-shadow: 0 18px 40px rgba(0,180,255,0.12);

  border-color: #00d9ff;
}

/* Icon */
.staffing-icon{

  width: 70px;
  height: 70px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 18px;

  background:
  linear-gradient(
    135deg,
    #e8f7ff,
    #dff2ff
  );

  font-size: 30px;

  margin-bottom: 28px;
}

/* Title */
.staffing-card h3{

  font-size: 28px;

  color: #071b33;

  margin-bottom: 16px;

  line-height: 1.3;
}

/* Text */
.staffing-card p{

  color: #56708d;

  font-size: 16px;

  line-height: 1.9;
}

/* ================= RESPONSIVE ================= */

@media(max-width:1100px){

  .staffing-grid{

    grid-template-columns: repeat(2,1fr);
  }

}

@media(max-width:768px){

  .staffing-services-section{

    padding: 90px 0;
  }

  .staffing-header h2{

    font-size: 40px;
  }

  .staffing-grid{

    grid-template-columns: 1fr;
  }

  .staffing-card{

    padding: 32px;
  }

}

@media(max-width:480px){

  .staffing-header h2{

    font-size: 34px;
  }

}
/* ================= TECHNOLOGY SECTION ================= */

.technology-section{

  padding: 120px 0;

  background:
  linear-gradient(
    135deg,
    #03101f,
    #071b33
  );

  position: relative;

  overflow: hidden;
}

/* Background Glow */
.technology-section::before{

  content: "";

  position: absolute;

  width: 500px;
  height: 500px;

  background: rgba(0,180,255,0.08);

  filter: blur(120px);

  border-radius: 50%;

  top: -120px;
  right: -100px;
}

/* ================= HEADER ================= */

.technology-header{

  text-align: center;

  max-width: 820px;

  margin: 0 auto 80px;

  position: relative;

  z-index: 2;
}

/* Heading */
.technology-header h2{

  font-size: 58px;

  line-height: 1.2;

  color: white;

  margin: 20px 0;
}

/* Description */
.technology-desc{

  color: #b9c7d8;

  font-size: 18px;

  line-height: 1.9;
}

/* ================= GRID ================= */

.technology-grid{

  display: grid;

  grid-template-columns: repeat(2,1fr);

  gap: 30px;

  position: relative;

  z-index: 2;
}

/* ================= CARD ================= */

.technology-card{

  background: rgba(255,255,255,0.05);

  border: 1px solid rgba(255,255,255,0.08);

  border-radius: 26px;

  padding: 45px;

  backdrop-filter: blur(12px);

  transition: 0.35s ease;

  position: relative;

  overflow: hidden;
}

/* Top Border */
.technology-card::before{

  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 4px;

  background:
  linear-gradient(
    90deg,
    #00d9ff,
    #0066ff
  );
}

/* Hover */
.technology-card:hover{

  transform: translateY(-10px);

  border-color: #00d9ff;

  box-shadow: 0 20px 40px rgba(0,180,255,0.12);
}

/* ================= ICON ================= */

.technology-icon{

  width: 75px;
  height: 75px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 20px;

  background:
  linear-gradient(
    135deg,
    rgba(0,217,255,0.18),
    rgba(0,102,255,0.18)
  );

  font-size: 32px;

  margin-bottom: 30px;
}

/* ================= TITLE ================= */

.technology-card h3{

  font-size: 30px;

  color: white;

  margin-bottom: 18px;
}

/* ================= TEXT ================= */

.technology-card p{

  color: #b9c7d8;

  font-size: 16px;

  line-height: 1.9;
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){

  .technology-grid{

    grid-template-columns: 1fr;
  }

  .technology-header h2{

    font-size: 44px;
  }

}

@media(max-width:768px){

  .technology-section{

    padding: 90px 0;
  }

  .technology-card{

    padding: 35px;
  }

  .technology-header h2{

    font-size: 36px;
  }

}
/* ================= HIRING SECTION ================= */

.hiring-section{

  padding: 120px 0;

  background:
  linear-gradient(
    to bottom,
    #f8fbff,
    #edf5fd
  );

  position: relative;

  overflow: hidden;
}

/* ================= HEADER ================= */

.hiring-header{

  text-align: center;

  max-width: 820px;

  margin: 0 auto 80px;
}

/* Heading */
.hiring-header h2{

  font-size: 58px;

  line-height: 1.2;

  color: #071b33;

  margin: 20px 0;
}

/* Description */
.hiring-desc{

  color: #5c738f;

  font-size: 18px;

  line-height: 1.9;
}

/* ================= SPLIT LAYOUT ================= */

.hiring-split{

  display: grid;

  grid-template-columns: repeat(2,1fr);

  gap: 35px;
}

/* ================= BOX ================= */

.hiring-box{

  background: rgba(255,255,255,0.72);

  border: 1px solid rgba(255,255,255,0.75);

  border-radius: 28px;

  padding: 45px;

  backdrop-filter: blur(10px);

  transition: 0.35s ease;

  position: relative;

  overflow: hidden;
}

/* Top Border */
.hiring-box::before{

  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 4px;

  background:
  linear-gradient(
    90deg,
    #00d9ff,
    #0066ff
  );
}

/* Hover */
.hiring-box:hover{

  transform: translateY(-10px);

  box-shadow: 0 18px 40px rgba(0,180,255,0.12);

  border-color: #00d9ff;
}

/* ================= TOP ================= */

.hiring-top{

  display: flex;

  align-items: center;

  gap: 20px;

  margin-bottom: 30px;
}

/* Icon */
.hiring-icon{

  width: 75px;
  height: 75px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 20px;

  background:
  linear-gradient(
    135deg,
    #e8f7ff,
    #dff2ff
  );

  font-size: 34px;
}

/* Label */
.hiring-label{

  color: #00aaff;

  font-size: 13px;

  letter-spacing: 2px;

  font-weight: 700;
}

/* Title */
.hiring-top h3{

  font-size: 34px;

  color: #071b33;

  margin-top: 8px;
}

/* ================= TEXT ================= */

.hiring-text{

  color: #5c738f;

  font-size: 16px;

  line-height: 1.9;

  margin-bottom: 35px;
}

/* ================= ROLES GRID ================= */

.roles-grid{

  display: grid;

  grid-template-columns: repeat(2,1fr);

  gap: 16px;
}

/* Role Item */
.role-item{

  padding: 16px 18px;

  background: #f5faff;

  border: 1px solid #e2edf8;

  border-radius: 14px;

  color: #18314d;

  font-size: 15px;

  font-weight: 500;

  transition: 0.3s ease;
}

/* Hover */
.role-item:hover{

  background: #00cfff;

  color: white;

  transform: translateY(-4px);
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){

  .hiring-split{

    grid-template-columns: 1fr;
  }

  .hiring-header h2{

    font-size: 44px;
  }

}

@media(max-width:768px){

  .hiring-section{

    padding: 90px 0;
  }

  .hiring-box{

    padding: 35px;
  }

  .roles-grid{

    grid-template-columns: 1fr;
  }

  .hiring-header h2{

    font-size: 36px;
  }

}
/* ================= WHY DUTRIX ================= */

.why-dutrix-section{

  padding: 120px 0;

  background:
  linear-gradient(
    135deg,
    #03101f,
    #071b33
  );

  position: relative;

  overflow: hidden;
}

/* Glow Effect */
.why-dutrix-section::before{

  content: "";

  position: absolute;

  width: 500px;
  height: 500px;

  background: rgba(0,180,255,0.08);

  filter: blur(120px);

  border-radius: 50%;

  top: -120px;
  left: -100px;
}

/* ================= HEADER ================= */

.why-dutrix-header{

  text-align: center;

  max-width: 820px;

  margin: 0 auto 80px;

  position: relative;

  z-index: 2;
}

/* Heading */
.why-dutrix-header h2{

  font-size: 58px;

  line-height: 1.2;

  color: white;

  margin: 20px 0;
}

/* Description */
.why-dutrix-desc{

  color: #b8c7d8;

  font-size: 18px;

  line-height: 1.9;
}

/* ================= GRID ================= */

.why-dutrix-grid{

  display: grid;

  grid-template-columns: repeat(3,1fr);

  gap: 30px;

  position: relative;

  z-index: 2;
}

/* ================= CARD ================= */

.why-dutrix-card{

  background: rgba(255,255,255,0.05);

  border: 1px solid rgba(255,255,255,0.08);

  border-radius: 26px;

  padding: 42px;

  backdrop-filter: blur(12px);

  transition: 0.35s ease;

  position: relative;

  overflow: hidden;
}

/* Top Border */
.why-dutrix-card::before{

  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 4px;

  background:
  linear-gradient(
    90deg,
    #00d9ff,
    #0066ff
  );
}

/* Hover */
.why-dutrix-card:hover{

  transform: translateY(-10px);

  border-color: #00d9ff;

  box-shadow: 0 20px 40px rgba(0,180,255,0.12);
}

/* ================= ICON ================= */

.why-dutrix-icon{

  width: 75px;
  height: 75px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 20px;

  background:
  linear-gradient(
    135deg,
    rgba(0,217,255,0.18),
    rgba(0,102,255,0.18)
  );

  font-size: 34px;

  margin-bottom: 30px;
}

/* ================= TITLE ================= */

.why-dutrix-card h3{

  font-size: 28px;

  color: white;

  margin-bottom: 18px;

  line-height: 1.3;
}

/* ================= TEXT ================= */

.why-dutrix-card p{

  color: #b8c7d8;

  font-size: 16px;

  line-height: 1.9;
}

/* ================= RESPONSIVE ================= */

@media(max-width:1100px){

  .why-dutrix-grid{

    grid-template-columns: repeat(2,1fr);
  }

}

@media(max-width:768px){

  .why-dutrix-section{

    padding: 90px 0;
  }

  .why-dutrix-grid{

    grid-template-columns: 1fr;
  }

  .why-dutrix-header h2{

    font-size: 40px;
  }

  .why-dutrix-card{

    padding: 35px;
  }

}

@media(max-width:480px){

  .why-dutrix-header h2{

    font-size: 34px;
  }

}
/* ================= CTA SECTION ================= */

.services-cta-section{

  position: relative;

  padding: 140px 0;

  background:
  url("assets/images/services-cta.png");

  background-size: cover;

  background-position: center;

  background-repeat: no-repeat;

  overflow: hidden;
}

/* Overlay */
.services-cta-overlay{

  position: absolute;

  inset: 0;

  background:
  linear-gradient(
    to right,
    rgba(2,12,27,0.82),
    rgba(2,12,27,0.35)
  );
}

/* Container */
.services-cta-container{

  position: relative;

  z-index: 2;
}

/* Content */
.services-cta-content{

  max-width: 720px;
}

/* Heading */
.services-cta-content h2{

  font-size: 60px;

  line-height: 1.1;

  color: white;

  margin: 22px 0 28px;
}

/* Text */
.services-cta-content p{

  color: #d1dceb;

  font-size: 20px;

  line-height: 1.9;

  max-width: 650px;

  margin-bottom: 45px;
}

/* Buttons */
.services-cta-buttons{

  display: flex;

  gap: 20px;

  flex-wrap: wrap;
}

/* Primary Button */
.cta-btn{

  padding: 18px 38px;

  border-radius: 14px;

  background:
  linear-gradient(
    90deg,
    #00d9ff,
    #0066ff
  );

  color: white;

  text-decoration: none;

  font-weight: 600;

  transition: 0.35s ease;
}

/* Hover */
.cta-btn:hover{

  transform: translateY(-4px);

  box-shadow: 0 15px 35px rgba(0,180,255,0.22);
}

/* Outline Button */
.cta-btn-outline{

  padding: 18px 38px;

  border-radius: 14px;

  border: 1px solid rgba(255,255,255,0.25);

  color: white;

  text-decoration: none;

  font-weight: 600;

  backdrop-filter: blur(10px);

  transition: 0.35s ease;
}

/* Hover */
.cta-btn-outline:hover{

  background: rgba(255,255,255,0.08);

  border-color: #00d9ff;
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){

  .services-cta-content h2{

    font-size: 56px;
  }

}

@media(max-width:768px){

  .services-cta-section{

    padding: 100px 0;
  }

  .services-cta-content h2{

    font-size: 42px;
  }

  .services-cta-content p{

    font-size: 17px;

    line-height: 1.8;
  }

  .services-cta-buttons{

    flex-direction: column;

    align-items: flex-start;
  }

}

@media(max-width:480px){

  .services-cta-content h2{

    font-size: 34px;
  }

}
/* ================= GLOBAL SIZE REDUCTION ================= */

/* Section Spacing */
section{
  padding: 90px 0 !important;
}

/* ================= HEADINGS ================= */

.staffing-header h2,
.technology-header h2,
.hiring-header h2,
.why-dutrix-header h2,
.services-cta-content h2{

  font-size: 46px !important;

  line-height: 1.2;
}

/* Hero Heading */
.services-hero-content h1{

  font-size: 62px !important;
}

/* Description Text */
.staffing-desc,
.technology-desc,
.hiring-desc,
.why-dutrix-desc,
.services-text,
.services-cta-content p{

  font-size: 16px !important;

  line-height: 1.8;
}

/* ================= CARDS ================= */

/* All Cards */
.staffing-card,
.technology-card,
.hiring-box,
.why-dutrix-card{

  padding: 30px !important;

  border-radius: 20px;
}

/* Card Titles */
.staffing-card h3,
.technology-card h3,
.why-dutrix-card h3{

  font-size: 24px !important;
}

/* Card Paragraphs */
.staffing-card p,
.technology-card p,
.why-dutrix-card p,
.hiring-text{

  font-size: 15px !important;

  line-height: 1.8;
}

/* ================= ICONS ================= */

.staffing-icon,
.technology-icon,
.why-dutrix-icon,
.hiring-icon{

  width: 60px;
  height: 60px;

  border-radius: 16px;

  font-size: 26px;

  margin-bottom: 22px;
}

/* ================= HIRING SECTION ================= */

.hiring-top h3{

  font-size: 28px !important;
}

/* Role Items */
.role-item{

  padding: 14px 16px;

  font-size: 14px;
}

/* ================= CTA ================= */

.services-cta-content{

  max-width: 620px;
}

.services-cta-buttons{

  gap: 16px;
}

/* Buttons */
.cta-btn,
.cta-btn-outline,
.btn,
.btn-outline{

  padding: 15px 30px !important;

  font-size: 15px;
}

/* ================= RESPONSIVE ================= */

@media(max-width:768px){

  .services-hero-content h1{
    font-size: 42px !important;
  }

  .staffing-header h2,
  .technology-header h2,
  .hiring-header h2,
  .why-dutrix-header h2,
  .services-cta-content h2{

    font-size: 34px !important;
  }

}
/* ================= CAREERS HERO ================= */

.careers-hero{

  position: relative;

  min-height: 100vh;

  display: flex;

  align-items: center;

  padding: 110px 0 90px;

  background:
  url("assets/images/careers-hero.png");

  background-size: cover;

  background-position: center;

  background-repeat: no-repeat;

  overflow: hidden;
}

/* LIGHT OVERLAY */
.careers-overlay{

  position: absolute;

  inset: 0;

  background:
  linear-gradient(
    to right,
    rgba(255,255,255,0.72),
    rgba(255,255,255,0.28)
  );
}

/* Container */
.careers-hero-container{

  position: relative;

  z-index: 2;
}

/* Content */
.careers-hero-content{

  max-width: 620px;
}

/* Small Tag */
.careers-tag{

  color: #00bfff;

  font-size: 14px;

  font-weight: 700;

  letter-spacing: 3px;

  margin-bottom: 20px;
}

/* Main Heading */
.careers-hero-content h1{

  font-size: 68px;

  line-height: 1.05;

  color: #071b33;

  font-weight: 800;

  margin-bottom: 28px;
}

/* Description */
.careers-text{

  font-size: 18px;

  line-height: 1.9;

  color: #445b78;

  margin-bottom: 38px;

  max-width: 580px;
}

/* Buttons */
.careers-buttons{

  display: flex;

  gap: 18px;

  margin-bottom: 45px;

  flex-wrap: wrap;
}

/* Primary Button */
.btn{

  padding: 16px 34px;

  border-radius: 12px;

  background:
  linear-gradient(
    90deg,
    #00d9ff,
    #00a6ff
  );

  color: white;

  text-decoration: none;

  font-size: 15px;

  font-weight: 600;

  transition: 0.35s ease;
}

/* Hover */
.btn:hover{

  transform: translateY(-4px);

  box-shadow: 0 12px 30px rgba(0,180,255,0.22);
}

/* Outline Button */
.btn-outline{

  padding: 16px 34px;

  border-radius: 12px;

  border: 1px solid rgba(7,27,51,0.18);

  color: #071b33;

  text-decoration: none;

  font-size: 15px;

  font-weight: 600;

  background: rgba(255,255,255,0.45);

  backdrop-filter: blur(8px);

  transition: 0.35s ease;
}

/* Hover */
.btn-outline:hover{

  border-color: #00bfff;

  background: rgba(255,255,255,0.75);
}

/* Features */
.careers-features{

  display: flex;

  gap: 14px;

  flex-wrap: wrap;
}

/* Feature Box */
.careers-feature{

  padding: 12px 18px;

  background: rgba(255,255,255,0.45);

  border: 1px solid rgba(7,27,51,0.08);

  border-radius: 12px;

  color: #071b33;

  font-size: 14px;

  font-weight: 500;

  backdrop-filter: blur(8px);

  transition: 0.3s ease;
}

/* Hover */
.careers-feature:hover{

  transform: translateY(-4px);

  border-color: #00bfff;
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){

  .careers-hero-content h1{

    font-size: 54px;
  }

}

@media(max-width:768px){

  .careers-hero{

    padding: 100px 0 80px;
  }

  .careers-hero-content h1{

    font-size: 42px;
  }

  .careers-text{

    font-size: 16px;

    line-height: 1.8;
  }

  .careers-buttons{

    flex-direction: column;

    align-items: flex-start;
  }

}

@media(max-width:480px){

  .careers-hero-content h1{

    font-size: 34px;
  }

  .careers-feature{

    width: 100%;
  }

}
/* ================= WHY JOIN DUTRIX ================= */

.why-join-section{

  position: relative;

  padding: 85px 0;

  background: url("assets/images/why-join.png");

  background-size: cover;

  background-position: center;

  background-repeat: no-repeat;

  overflow: hidden;
}

/* LIGHT OVERLAY */
.why-join-overlay{

  position: absolute;

  inset: 0;

  background:
  linear-gradient(
    to bottom,
     rgba(137, 156, 184, 0.42),
    rgba(137, 156, 184, 0.42)
  );
}

/* Container */
.why-join-section .container{

  position: relative;

  z-index: 2;
}

/* ================= HEADER ================= */

.why-join-header{

  text-align: center;

  margin-bottom: 45px;
}

/* Heading */
.why-join-header h2{

  font-size: 42px;

  line-height: 1.15;

  color: #071b33;

  margin: 14px 0;
}

/* Description */
.why-join-desc{

  max-width: 650px;

  margin: auto;

  color: #536b88;

  font-size: 16px;

  line-height: 1.8;
}

/* ================= GRID ================= */

.why-join-grid{

  display: grid;

  grid-template-columns: repeat(4,1fr);

  gap: 18px;
}

/* ================= CARD ================= */

.why-join-card{

  background: rgba(255,255,255,0.42);

  border: 1px solid rgba(7,27,51,0.06);

  border-radius: 20px;

  padding: 28px 22px;

  transition: 0.35s ease;

  backdrop-filter: blur(6px);
}

/* Hover */
.why-join-card:hover{

  transform: translateY(-6px);

  border-color: #00cfff;

  box-shadow: 0 12px 28px rgba(0,140,255,0.08);
}

/* Icon */
.why-join-icon{

  width: 58px;

  height: 58px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 16px;

  background:
  linear-gradient(
    135deg,
    #00d9ff,
    #0077ff
  );

  font-size: 24px;

  margin-bottom: 18px;
}

/* Title */
.why-join-card h3{

  font-size: 18px;

  color: #071b33;

  line-height: 1.3;

  margin-bottom: 12px;
}

/* Text */
.why-join-card p{

  color: #5f738d;

  line-height: 1.8;

  font-size: 14px;
}

/* ================= RESPONSIVE ================= */

@media(max-width:1100px){

  .why-join-grid{

    grid-template-columns: repeat(2,1fr);
  }

}

@media(max-width:768px){

  .why-join-section{

    padding: 70px 0;
  }

  .why-join-header h2{

    font-size: 32px;
  }

  .why-join-desc{

    font-size: 15px;
  }

  .why-join-grid{

    grid-template-columns: 1fr;
  }

}

@media(max-width:480px){

  .why-join-header h2{

    font-size: 28px;
  }

}
/* ===================================================== */
/* =============== CAREER FORM SECTION ================= */
/* ===================================================== */

.career-form-section{

  position: relative;

  padding: 100px 0;

  background:
  url("assets/images/career-form-bg.png");

  background-size: cover;

  background-position: center;

  background-repeat: no-repeat;

  overflow: hidden;
}

/* ===================================================== */
/* OVERLAY */
/* ===================================================== */

.career-form-overlay{

  position: absolute;

  inset: 0;

  background:
  linear-gradient(
    to right,
    rgba(255,255,255,0.78),
    rgba(255,255,255,0.60)
  );
}

/* ===================================================== */
/* CONTAINER */
/* ===================================================== */

.career-form-container{

  position: relative;

  z-index: 2;

  display: grid;

  grid-template-columns: 1fr 520px;

  gap: 60px;

  align-items: center;
}

/* ===================================================== */
/* LEFT CONTENT */
/* ===================================================== */

.career-tag{

  color: #335b88;

  font-size: 14px;

  font-weight: 700;

  letter-spacing: 4px;

  margin-bottom: 24px;
}

/* HEADING */
.career-form-content h2{

  font-size: 64px;

  line-height: 1.08;

  color: #071b33;

  margin-bottom: 30px;
}

/* DESCRIPTION */
.career-desc{

  color: #4f6782;

  font-size: 18px;

  line-height: 1.9;

  max-width: 620px;

  margin-bottom: 40px;
}

/* BENEFITS */
.career-benefits{

  display: flex;

  flex-direction: column;

  gap: 16px;
}

/* BENEFIT BOX */
.career-benefit{

  background: rgba(255,255,255,0.50);

  border: 1px solid rgba(7,27,51,0.08);

  padding: 16px 20px;

  border-radius: 14px;

  color: #071b33;

  font-size: 15px;

  backdrop-filter: blur(8px);
}

/* ===================================================== */
/* FORM BOX */
/* ===================================================== */

.career-form-box{

  background: rgba(255,255,255,0.42);

  border: 1px solid rgba(7,27,51,0.08);

  border-radius: 28px;

  padding: 38px;

  backdrop-filter: blur(16px);
}

/* FORM */
.career-form{

  display: flex;

  flex-direction: column;

  gap: 20px;
}

/* GROUP */
.form-group{

  display: flex;

  flex-direction: column;
}

/* LABEL */
.form-group label{

  font-size: 14px;

  font-weight: 600;

  color: #071b33;

  margin-bottom: 10px;
}

/* INPUT */
.form-group input{

  width: 100%;

  height: 56px;

  border-radius: 14px;

  border: 1px solid rgba(7,27,51,0.08);

  background: rgba(255,255,255,0.78);

  padding: 0 18px;

  font-size: 15px;

  color: #071b33;

  outline: none;

  transition: 0.3s ease;

  box-sizing: border-box;
}

/* FILE INPUT */
.form-group input[type="file"]{

  padding: 16px;

  height: auto;
}

/* PLACEHOLDER */
.form-group input::placeholder{

  color: #6a819a;
}

/* FOCUS */
.form-group input:focus{

  border-color: #00cfff;

  box-shadow: 0 0 0 4px rgba(0,191,255,0.10);
}

/* NOTE */
.form-note{

  margin-top: 8px;

  font-size: 13px;

  color: #1e8f53;
}

/* ===================================================== */
/* CHECKBOX */
/* ===================================================== */

.checkbox-group{

  display: flex;

  align-items: center;

  gap: 10px;
}

.checkbox-group input{

  width: 16px;

  height: 16px;
}

.checkbox-group label{

  color: #4f6782;

  font-size: 14px;
}

/* ===================================================== */
/* BUTTON */
/* ===================================================== */

.career-submit-btn{

  width: 100%;

  height: 58px;

  border: none;

  border-radius: 14px;

  background:
  linear-gradient(
    90deg,
    #12d8ff,
    #0077ff
  );

  color: white;

  font-size: 16px;

  font-weight: 600;

  cursor: pointer;

  transition: 0.35s ease;

  margin-top: 6px;
}

/* HOVER */
.career-submit-btn:hover{

  transform: translateY(-3px);

  box-shadow: 0 15px 35px rgba(0,140,255,0.18);
}

/* ===================================================== */
/* RESPONSIVE */
/* ===================================================== */

@media(max-width:1100px){

  .career-form-container{

    grid-template-columns: 1fr;
  }

}

@media(max-width:768px){

  .career-form-section{

    padding: 80px 0;
  }

  .career-form-content h2{

    font-size: 42px;
  }

  .career-form-box{

    padding: 28px;
  }

}

@media(max-width:480px){

  .career-form-content h2{

    font-size: 34px;
  }

}
/* ================= SMALLER TEXT SIZES ================= */

/* LEFT HEADING */
.career-form-content h2{

  font-size: 52px;

  line-height: 1.12;
}

/* DESCRIPTION */
.career-desc{

  font-size: 16px;

  line-height: 1.8;
}

/* BENEFIT BOX */
.career-benefit{

  font-size: 14px;

  padding: 14px 18px;
}

/* FORM LABEL */
.form-group label{

  font-size: 13px;
}

/* INPUT */
.form-group input{

  height: 52px;

  font-size: 14px;
}

/* FILE INPUT */
.form-group input[type="file"]{

  padding: 14px;
}

/* NOTE */
.form-note{

  font-size: 12px;
}

/* CHECKBOX LABEL */
.checkbox-group label{

  font-size: 13px;
}

/* BUTTON */
.career-submit-btn{

  height: 54px;

  font-size: 15px;
}

/* ================= RESPONSIVE ================= */

@media(max-width:768px){

  .career-form-content h2{

    font-size: 38px;
  }

}

@media(max-width:480px){

  .career-form-content h2{

    font-size: 30px;
  }

}
/* ===================================================== */
/* ================= CONTACT HERO ====================== */
/* ===================================================== */

.contact-hero-section{

  position: relative;

  min-height: 92vh;

  display: flex;

  align-items: center;

  padding: 110px 0 90px;

  background:
  url("assets/images/contact-hero.png");

  background-size: cover;

  background-position: center;

  background-repeat: no-repeat;

  overflow: hidden;
}

/* ===================================================== */
/* OVERLAY */
/* ===================================================== */

.contact-hero-overlay{

  position: absolute;

  inset: 0;

  background:
  linear-gradient(
    to right,
    rgba(255,255,255,0.74),
    rgba(255,255,255,0.34)
  );
}

/* ===================================================== */
/* CONTAINER */
/* ===================================================== */

.contact-hero-container{

  position: relative;

  z-index: 2;
}

/* ===================================================== */
/* CONTENT */
/* ===================================================== */

.contact-hero-content{

  max-width: 760px;
}

/* SMALL TAG */
.contact-tag{

  color: #335b88;

  font-size: 14px;

  font-weight: 700;

  letter-spacing: 4px;

  margin-bottom: 24px;
}

/* HEADING */
.contact-hero-content h1{

  font-size: 64px;

  line-height: 1.05;

  color: #071b33;

  margin-bottom: 24px;
}

/* DESCRIPTION */
.contact-hero-desc{

  max-width: 620px;

  color: #4f6782;

  font-size: 16px;

  line-height: 1.85;

  margin-bottom: 34px;
}

/* ===================================================== */
/* BUTTONS */
/* ===================================================== */

.contact-hero-buttons{

  display: flex;

  gap: 18px;

  margin-bottom: 55px;
}

/* PRIMARY BUTTON */
.contact-btn-primary{

  height: 56px;

  padding: 0 32px;

  border-radius: 14px;

  background:
  linear-gradient(
    90deg,
    #12d8ff,
    #0077ff
  );

  display: flex;

  align-items: center;

  justify-content: center;

  color: white;

  font-size: 15px;

  font-weight: 600;

  text-decoration: none;

  transition: 0.35s ease;
}

/* HOVER */
.contact-btn-primary:hover{

  transform: translateY(-3px);

  box-shadow: 0 15px 35px rgba(0,140,255,0.18);
}

/* SECONDARY BUTTON */
.contact-btn-secondary{

  height: 56px;

  padding: 0 32px;

  border-radius: 14px;

  border: 1px solid rgba(7,27,51,0.12);

  background: rgba(255,255,255,0.42);

  display: flex;

  align-items: center;

  justify-content: center;

  color: #071b33;

  font-size: 15px;

  font-weight: 600;

  text-decoration: none;

  backdrop-filter: blur(10px);

  transition: 0.35s ease;
}

/* HOVER */
.contact-btn-secondary:hover{

  border-color: #00cfff;

  transform: translateY(-3px);
}

/* ===================================================== */
/* MINI INFO */
/* ===================================================== */

.contact-mini-info{

  display: flex;

  gap: 22px;

  flex-wrap: wrap;
}

/* BOX */
.contact-mini-box{

  min-width: 155px;

  padding: 18px;

  border-radius: 16px;

  background: rgba(255,255,255,0.34);

  border: 1px solid rgba(7,27,51,0.05);

  backdrop-filter: blur(10px);
}

/* NUMBER */
.contact-mini-box h3{

  font-size: 26px;

  color: #0077ff;

  margin-bottom: 6px;
}

/* TEXT */
.contact-mini-box span{

  color: #4f6782;

  font-size: 14px;
}

/* ===================================================== */
/* RESPONSIVE */
/* ===================================================== */

@media(max-width:992px){

  .contact-hero-content h1{

    font-size: 54px;
  }

}

@media(max-width:768px){

  .contact-hero-section{

    min-height: auto;

    padding: 100px 0;
  }

  .contact-hero-content h1{

    font-size: 42px;
  }

  .contact-hero-desc{

    font-size: 16px;
  }

  .contact-hero-buttons{

    flex-direction: column;

    align-items: flex-start;
  }

}

@media(max-width:480px){

  .contact-hero-content h1{

    font-size: 34px;
  }

}
/* ===================================================== */
/* ================= CONTACT INFO ====================== */
/* ===================================================== */

.contact-info-section{

  position: relative;

  padding: 90px 0;

  background:
  url("assets/images/contact-info.png");
 background-size: cover;

  background-position: center;

  background-repeat: no-repeat;

  overflow: hidden;

}

/* ===================================================== */
/* HEADER */
/* ===================================================== */

.contact-info-header{

  text-align: center;

  max-width: 760px;

  margin: 0 auto 60px;
}

/* HEADING */
.contact-info-header h2{

  font-size: 48px;

  line-height: 1.12;

  color: #071b33;

  margin: 18px 0;
}

/* DESCRIPTION */
.contact-info-desc{

  color: #5a7089;

  font-size: 16px;

  line-height: 1.85;
}

/* ===================================================== */
/* GRID */
/* ===================================================== */

.contact-info-grid{

  display: grid;

  grid-template-columns: repeat(4,1fr);

  gap: 22px;
}

/* ===================================================== */
/* CARD */
/* ===================================================== */

.contact-info-card{

  background: rgba(255,255,255,0.65);

  border: 1px solid rgba(7,27,51,0.06);

  border-radius: 22px;

  padding: 32px 28px;

  backdrop-filter: blur(10px);

  transition: 0.35s ease;
}

/* HOVER */
.contact-info-card:hover{

  transform: translateY(-6px);

  border-color: #00cfff;

  box-shadow: 0 14px 35px rgba(0,140,255,0.08);
}

/* ===================================================== */
/* ICON */
/* ===================================================== */

.contact-info-icon{

  width: 64px;

  height: 64px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 18px;

  background:
  linear-gradient(
    135deg,
    #12d8ff,
    #0077ff
  );

  color: white;

  font-size: 26px;

  margin-bottom: 24px;
}

/* ===================================================== */
/* TITLE */
/* ===================================================== */

.contact-info-card h3{

  font-size: 22px;

  color: #071b33;

  margin-bottom: 14px;
}

/* TEXT */
.contact-info-card p{

  color: #5a7089;

  font-size: 14px;

  line-height: 1.8;

  margin-bottom: 18px;
}

/* LINKS */
.contact-info-card a{

  color: #0077ff;

  font-size: 15px;

  font-weight: 600;

  text-decoration: none;
}

/* SPAN */
.contact-info-card span{

  color: #071b33;

  font-size: 15px;

  font-weight: 500;

  line-height: 1.7;

  display: block;
}

/* ===================================================== */
/* RESPONSIVE */
/* ===================================================== */

@media(max-width:1100px){

  .contact-info-grid{

    grid-template-columns: repeat(2,1fr);
  }

}

@media(max-width:768px){

  .contact-info-section{

    padding: 70px 0;
  }

  .contact-info-header h2{

    font-size: 36px;
  }

  .contact-info-grid{

    grid-template-columns: 1fr;
  }

}

@media(max-width:480px){

  .contact-info-header h2{

    font-size: 30px;
  }

}
/* ===================================================== */
/* LIGHT OVERLAY */
/* ===================================================== */

.contact-info-section::before{

  content: "";

  position: absolute;

  inset: 0;

  background:
  linear-gradient(
    to bottom,
    rgba(159, 151, 176, 0.82),
    rgba(212, 180, 236, 0.9)
  );
}

/* CONTAINER */
.contact-info-section .container{

  position: relative;

  z-index: 2;
}
/* ===================================================== */
/* ================= CONTACT FORM ====================== */
/* ===================================================== */

.contact-form-section{

  position: relative;

  padding: 100px 0;

  background:
  url("assets/images/contact-form-bg.png");

  background-size: cover;

  background-position: center;

  background-repeat: no-repeat;

  overflow: hidden;
}

/* OVERLAY */
.contact-form-overlay{

  position: absolute;

  inset: 0;

  background:
  linear-gradient(
    to right,
    rgba(255,255,255,0.84),
    rgba(255,255,255,0.64)
  );
}

/* CONTAINER */
.contact-form-container{

  position: relative;

  z-index: 2;

  display: grid;

  grid-template-columns: 1fr 520px;

  gap: 60px;

  align-items: center;
}

/* ===================================================== */
/* LEFT CONTENT */
/* ===================================================== */

.contact-form-content h2{

  font-size: 58px;

  line-height: 1.08;

  color: #071b33;

  margin: 18px 0 24px;
}

/* DESC */
.contact-form-desc{

  max-width: 620px;

  color: #4f6782;

  font-size: 16px;

  line-height: 1.9;

  margin-bottom: 38px;
}

/* SMALL INFO */
.contact-small-info{

  display: flex;

  gap: 18px;
}

/* CARD */
.contact-small-card{

  min-width: 160px;

  padding: 20px;

  border-radius: 18px;

  background: rgba(255,255,255,0.42);

  border: 1px solid rgba(7,27,51,0.06);

  backdrop-filter: blur(10px);
}

/* NUMBER */
.contact-small-card h3{

  font-size: 28px;

  color: #0077ff;

  margin-bottom: 8px;
}

/* TEXT */
.contact-small-card span{

  color: #4f6782;

  font-size: 14px;
}

/* ===================================================== */
/* FORM BOX */
/* ===================================================== */

.contact-form-box{

  background: rgba(255,255,255,0.46);

  border: 1px solid rgba(7,27,51,0.08);

  border-radius: 28px;

  padding: 36px;

  backdrop-filter: blur(14px);
}

/* FORM */
.contact-form{

  display: flex;

  flex-direction: column;

  gap: 18px;
}

/* GROUP */
.contact-form .form-group{

  display: flex;

  flex-direction: column;
}

/* LABEL */
.contact-form .form-group label{

  color: #071b33;

  font-size: 14px;

  font-weight: 600;

  margin-bottom: 8px;
}

/* INPUT */
.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea{

  width: 100%;

  border-radius: 14px;

  border: 1px solid rgba(7,27,51,0.08);

  background: rgba(255,255,255,0.78);

  padding: 16px 18px;

  font-size: 14px;

  color: #071b33;

  outline: none;

  transition: 0.3s ease;

  box-sizing: border-box;
}

/* INPUT HEIGHT */
.contact-form .form-group input,
.contact-form .form-group select{

  height: 54px;
}

/* TEXTAREA */
.contact-form .form-group textarea{

  height: 130px;

  resize: none;
}

/* PLACEHOLDER */
.contact-form .form-group input::placeholder,
.contact-form .form-group textarea::placeholder{

  color: #6a819a;
}

/* FOCUS */
.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus{

  border-color: #00cfff;

  box-shadow: 0 0 0 4px rgba(0,191,255,0.10);
}

/* BUTTON */
.contact-submit-btn{

  width: 100%;

  height: 56px;

  border: none;

  border-radius: 14px;

  background:
  linear-gradient(
    90deg,
    #12d8ff,
    #0077ff
  );

  color: white;

  font-size: 15px;

  font-weight: 600;

  cursor: pointer;

  transition: 0.35s ease;

  margin-top: 6px;
}

/* HOVER */
.contact-submit-btn:hover{

  transform: translateY(-3px);

  box-shadow: 0 15px 35px rgba(0,140,255,0.18);
}

/* ===================================================== */
/* RESPONSIVE */
/* ===================================================== */

@media(max-width:1100px){

  .contact-form-container{

    grid-template-columns: 1fr;
  }

}

@media(max-width:768px){

  .contact-form-section{

    padding: 80px 0;
  }

  .contact-form-content h2{

    font-size: 40px;
  }

  .contact-form-box{

    padding: 28px;
  }

}

@media(max-width:480px){

  .contact-form-content h2{

    font-size: 32px;
  }

}
/* ===================================================== */
/* MOBILE NAVBAR FIX */
/* ===================================================== */

@media(max-width:768px){

  #navbar{

    height: 82px;

    padding: 0 18px;
  }

  .nav-inner{

    height: 82px;

    display: flex;

    align-items: center;

    justify-content: space-between;
  }

  /* LOGO */
  .logo img{

    width: 170px;

    height: auto;

    display: block;
  }

  /* HAMBURGER */
  .hamburger{

    display: flex;

    flex-direction: column;

    justify-content: center;

    gap: 5px;

    width: 32px;

    height: 32px;
  }

  .hamburger span{

    width: 100%;

    height: 3px;

    background: #ffffff;

    border-radius: 10px;
  }

  /* HERO TOP SPACING */
  .contact-hero-section{

    padding-top: 130px;
  }

}