* { margin: 0; padding: 0; box-sizing: border-box; font-family: Arial, sans-serif; }


html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

/* HEADER */
.header {
  position: sticky;
  top: 0;
  background: rgb(0, 0, 0);
  z-index: 999;
}
.nav {
  display: flex;
  justify-content: space-between;
  padding: 15px 30px;
  color: #fff;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 20px;
}
.nav-links a { color: #fff; text-decoration: none; }
.menu-toggle { display: none; }

/* HERO */
/* HERO */
/* HERO SECTION */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* VIDEO */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

/* DARK OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(5,15,24,0.75),
    rgba(5,15,24,0.85)
  );
  z-index: -1;
}

/* KEEP CARD ABOVE VIDEO */


/* MAIN CARD */
.hero-card {
  display: flex;
  max-width: 900px;
  width: 100%;
  background-color: #0f2e44;
  border-radius: 22px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
  overflow: hidden;
}

/* LEFT PROFILE PANEL */
.hero-profile {
  width: 280px;
  background-color: #275881;
  padding: 40px 30px;
  text-align: center;
}

.hero-profile img {
  width: 120px;
  height: 140px;
  border-radius: 10%;
  object-fit: contain;
  margin-bottom: 15px;
}

.hero-profile h3 {
  margin-bottom: 5px;
  color: white;
}

.hero-profile span {
  font-size: 14px;
  color: #8fdcff
;
}

.socials {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 15px;
  font-size: 23px;
  color: #8fdcff;
}

.socials i {
  width: 36px;
  height: 36px;
 border: 2px solid #f9f6f6;
  border-radius: 50%;
  border-color: #00f2fe;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(3, 253, 228, 0.1);
}

/* RIGHT CONTENT */
.hero-info {
  flex: 1;
  padding: 50px;
}

.hero-info h1 {
  font-size: 48px;
  margin-bottom: 10px;
   color: white;

}

.subtitle {
  font-weight: 600;
  margin-bottom: 20px;
   color: #8fdcff
;
}

.description {
  color: #e9e9e9;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* BUTTONS */
.hero-buttons {
  display: flex;
  gap: 15px;
}

.btn.primary {
  background: #1fb6ff;
  color: #fff;
}

.btn.outline {
  border: 2px solid #f9f6f6;
  color: #edebeb;
}
@media (max-width: 768px) {
  .hero-card {
    flex-direction: column;
    
  }

  .hero-profile {
    width: 100%;
  }

  .hero-info {
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }
}

.btn {
  padding: 12px 22px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
}

.primary { background: #fff; color: #2a5298; }
.secondary { border: 2px solid #fff; color: #fff; }

/* SECTIONS */
.section { padding: 60px 10%; }
.section h2 { text-align: center; margin-bottom: 40px; }
.light { background-color: #0f2e44;
 }

/* ABOUT */
.about-container {
  display: flex;
  gap: 40px;
  align-items: center;
}
.about-container img {
  width: 220px;
  border-radius: 15px;
}

/* SKILLS */
.skills {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.skills span {
  background: #fff;
  padding: 15px 25px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* PROJECTS */
.projects {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 25px;
}
.card {
  background: #fff;
  border-radius: 15px;
  padding: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.card img {
  width: 100%;
  border-radius: 10px;
}

/* EXPERIENCE */
.timeline {
  display: flex;
  justify-content: space-between;
  text-align: center;
}
.timeline div span {
  display: block;
  margin-top: 5px;
}

/* CONTACT */
.contact-details {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 35px;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;

  background: rgba(12, 38, 58, 0.8);
  padding: 12px 20px;
  border-radius: 30px;

  border: 1px solid rgba(31,182,255,0.4);
  color: #e6f6ff;

  box-shadow:
    0 0 15px rgba(31,182,255,0.25);
}

.contact-item i {
  color: #1fb6ff;
  font-size: 16px;
}

.contact {
  background-color: #0f2e44;

  color: #fff;
}
.contact-form {
  max-width: 520px;
  margin: auto;
  padding: 35px;
  display: flex;
  flex-direction: column;
  gap: 18px;

  background: rgba(12, 38, 58, 0.85);
  backdrop-filter: blur(12px);

  border-radius: 18px;
  border: 1px solid rgba(31, 182, 255, 0.45);

  box-shadow:
    0 0 0 1px rgba(31,182,255,0.15),
    0 20px 50px rgba(0,0,0,0.45),
    0 0 25px rgba(31,182,255,0.15);
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;

  background: rgba(8, 28, 42, 0.9);
  color: #eaf8ff;

  border-radius: 10px;
  border: 1px solid rgba(31,182,255,0.35);
  outline: none;

  font-size: 14px;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #1fb6ff;
  box-shadow:
    0 0 0 1px #1fb6ff,
    0 0 12px rgba(31,182,255,0.6);
  background: rgba(8, 32, 48, 0.95);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #8fbcd6;
}

.contact-form button {
  margin-top: 10px;
  padding: 14px;
  border-radius: 30px;
  width: 200px;
  align-items: center;
  background: linear-gradient(135deg, #1fb6ff, #0aa2ff);
  color: #041621;

  font-weight: 700;
  letter-spacing: 0.5px;

  border: none;
  cursor: pointer;

  box-shadow:
    0 8px 25px rgba(14, 87, 124, 0.5),
    inset 0 0 0 rgba(255,255,255,0);

  transition: all 0.3s ease;
}

.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow:
    0 12px 35px rgba(19, 110, 155, 0.75);
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 15px;
  background: #111;
  color: #fff;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero { flex-direction: column; text-align: center; }
  .about-container { flex-direction: column; }
  .nav-links { display: none; }
  .menu-toggle { display: block; }
}
.iforce-about-section {
  padding: 80px 20px;
  background:  #0f2e44;

}

.iforce-about-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* LEFT CONTENT */
.iforce-about-content {
  color: rgba(249, 250, 250, 0.35);
}

.iforce-tag {
  display: inline-block;
  background: rgba(31, 182, 255, 0.35);
  color: #eeecec;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
}

.iforce-about-content h2 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 20px;
  color: white;
}

.iforce-about-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #cdcccc;
  margin-bottom: 16px;
}

/* Director name */
.iforce-director-name {
  margin-top: 30px;
  padding-left: 18px;
  border-left: 4px solid #34126b;
  font-size: 16px;
  color: #111;
}

/* RIGHT IMAGE */
.iforce-about-image {
  display: flex;
  justify-content: center;
}

.image-frame {
 
  padding: 12px;
  border-radius: 22px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.15);
  position: relative;
}

.image-frame::after {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 26px;
  background: linear-gradient(135deg, #ff9800, #ff5722);
  z-index: -1;
}

.image-frame img {
  width: 100%;
  max-width: 340px;
  border-radius: 18px;
  display: block;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .iforce-about-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .iforce-director-name {
    border-left: none;
    border-top: 3px solid #ff6a00;
    padding: 16px 0 0;
  }
}
/* VIDEO GRID */
.video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* CARD */
.video-card {
  background-color: #102f46;
border: 1px solid #1fb6ff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 14px 35px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.video-card:hover {
  transform: translateY(-6px);
}

/* VIDEO PREVIEW */
.video-preview {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 14px;
}

.video-preview video {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}

/* PLAY ICON */
.play-icon {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-icon i {
  font-size: 44px;
  color: #fff;
}

.video-card h3 {
  margin-bottom: 8px;
  color: #0a99db;

}

.video-card p {
  font-size: 14px;
  line-height: 1.6;
 color: #eff1f2;
;
}

/* MODAL */
.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 5000;
}

.video-modal video {
  width: 85%;
  max-width: 900px;
  border-radius: 12px;
}

.close-btn {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}
/* FEATURED PROJECTS */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* CARD */
.featured-card {
  background-color: #0b2235;
border: 1px solid #1fb6ff;
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* IMAGE BOX */
.image-box {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  margin-bottom: 18px;
}

.image-box img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

/* ZOOM ICON */
.zoom-icon {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.zoom-icon i {
  font-size: 34px;
  color: #fff;
}

.image-box:hover .zoom-icon {
  opacity: 1;
}

/* TEXT */
.featured-info h3 {
  margin-bottom: 10px;
  color: #0ca3ea;
}

.featured-info p {
  font-size: 15px;
  line-height: 1.7;
  color: #dfdbdb;
}

/* IMAGE MODAL */
.image-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 6000;
}

.image-modal img {
  max-width: 90%;
  max-height: 85%;
  border-radius: 12px;
}

.image-modal .close-btn {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}
@media (max-width: 900px) {
  .featured-grid {
    grid-template-columns: 1fr;
  }

  .image-box img {
    height: 200px;
  }
}
@media (max-width: 1024px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .video-grid {
    grid-template-columns: 1fr;
  }

  .video-preview video {
    height: 180px;
  }

  .video-modal video {
    width: 95%;
  }
}
/* =========================
   GLOBAL MOBILE TWEAKS
========================= */
@media (max-width: 768px) {
  body {
    font-size: 15px;
  }

  .section {
    padding: 50px 20px;
  }

  h1 {
    font-size: 32px !important;
  }

  h2 {
    font-size: 26px;
  }

  p {
    line-height: 1.7;
  }
}

/* =========================
   HEADER / NAV FIX
========================= */
@media (max-width: 768px) {
  .nav {
    padding: 14px 20px;
  }

  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: block;
    font-size: 24px;
    cursor: pointer;
  }
}

/* =========================
   HERO SECTION FIX
========================= */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 30px 16px;
  }

  .hero-card {
    border-radius: 28px;
     width: 100%;
    max-width: 340px;   /* 👈 controls card width on mobile */
    margin: 0 auto;
  }

  .hero-profile {
    padding: 30px 20px;
  }

  .hero-profile img {
    width: 100px;
    height: 120px;
  }

  .hero-info {
    padding: 30px 22px;
  }

  .hero-info h1 {
    font-size: 34px;
  }

  .subtitle {
    font-size: 15px;
  }

  .description {
    font-size: 14px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}

/* =========================
   ABOUT SECTION FIX
========================= */
@media (max-width: 768px) {
  .about-container {
    gap: 24px;
  }

  .about-container img {
    width: 180px;
  }
}

/* =========================
   IFORCE ABOUT FIX
========================= */
@media (max-width: 768px) {
  .iforce-about-section {
    padding: 60px 18px;
  }

  .iforce-about-content h2 {
    font-size: 28px;
  }

  .iforce-about-content p {
    font-size: 15px;
  }

  .image-frame img {
    max-width: 280px;
  }
}

/* =========================
   VIDEO PROJECTS FIX
========================= */
@media (max-width: 768px) {
  .video-card {
    padding: 16px;
  }

  .video-card h3 {
    font-size: 18px;
  }

  .video-card p {
    font-size: 14px;
  }

  .video-preview video {
    height: 170px;
  }

  .play-icon i {
    font-size: 36px;
  }

  .close-btn {
    top: 18px;
    right: 22px;
    font-size: 34px;
  }
}

/* =========================
   FEATURED PROJECTS FIX
========================= */
@media (max-width: 768px) {
  .featured-card {
    padding: 18px;
  }

  .image-box img {
    height: 190px;
  }

  .featured-info h3 {
    font-size: 20px;
  }

  .featured-info p {
    font-size: 14px;
  }
}

/* =========================
   CONTACT FORM FIX
========================= */
@media (max-width: 768px) {
  .contact-form {
    padding: 0 10px;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 15px;
  }
}

/* =========================
   FOOTER FIX
========================= */
@media (max-width: 768px) {
  .footer {
    font-size: 14px;
  }
}
/* SECTION */
.exp-line-section {
  background-color: #0b2235;

  padding: 80px 20px;
  color: #fff;
}

.exp-line-title {
  text-align: center;
  font-size: 38px;
  margin-bottom: 70px;
}

/* HORIZONTAL LINE */
.exp-line-wrapper {
  position: relative;
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.exp-line-wrapper::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, #1e88e5, #42a5f5);
}

/* ITEM */
.exp-line-item {
  position: relative;
  width: 25%;
  text-align: center;
}

/* DOT */
.exp-dot {
  width: 22px;
  height: 22px;
   top: 5%;
  background: #1e88e5;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 6px rgba(30,136,229,0.25);
   animation: pulseGlow 2s infinite ease-in-out;
}
@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgb(3, 255, 234);
  }
  50% {
    box-shadow: 0 0 18px 8px rgb(17, 17, 17);
  }
  100% {
    box-shadow: 0 0 0 0 rgb(9, 9, 9);
  }
}
/* BOX */
.exp-box {
  margin-top: 28px;
  background: #111;
  padding: 18px 16px;
  border-radius: 14px;
  height: 150px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

.exp-box h3 {
  font-size: 16px;
  margin-bottom: 6px;
}

.exp-box strong {
  display: block;
  color: #42a5f5;
  margin-bottom: 8px;
}

.exp-box p {
  font-size: 13px;
  line-height: 1.6;
  color: #ccc;
}

/* MOBILE FIX */
@media (max-width: 900px) {

  .exp-line-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 60px;
  }

  /* Vertical center line */
  .exp-line-wrapper::before {
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    transform: translateX(-50%);
  }

  .exp-line-item {
    width: 100%;
    text-align: center;
    padding: 0;
  }

  /* Center the dot */
  .exp-dot {
    position: relative;
    left: auto;
    transform: none;
    margin-bottom: 14px;
  }

  /* Center box */
  .exp-box {
    margin: 0 auto;
    max-width: 320px;
  }
}

.skills-section {
  background-color: #0b2235;
  padding: 80px 6%;
  color: #fff;
  overflow-x: hidden;
}

.skills-title {
  text-align: center;
  font-size: 2.6rem;
  margin-bottom: 60px;
 
  background: linear-gradient(90deg, #00f2fe, #4facfe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 40px;
}

.skill-card {
  /* background: linear-gradient(135deg, #003c3c, #00e5e5); */
 background-color: #0b2235;
border: 1px solid #1fb6ff;
  border-radius: 22px;
  padding: 30px;
  height: 200px;
  position: relative;
  align-items: center;
  align-self: center;
  align-content: center;
  box-shadow:
    0 0 25px rgba(11, 11, 11, 0.25),
    inset 0 0 10px rgba(10, 10, 10, 0.1);
  transition: all 0.4s ease;
}

.skill-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow:
    0 0 40px rgba(16, 83, 83, 0.6),
    inset 0 0 15px rgba(255,255,255,0.2);
    border-radius: 50%;
}

.skill-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 18px; /* CENTER horizontally */
  display: flex;
  align-items: center;
  justify-content: center;
  
  border-radius: 20px;
}

.skill-icon img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin: 0 auto 18px;
 align-items: center;
 border-radius: 16px;
}


.skill-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  text-align: center;
  color: #8fdcff;
}

.skill-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.95;
}
@media (max-width: 768px) {
  .skills-section {
    padding: 60px 20px;
  }

  .skills-title {
    font-size: 2rem;
  }

  .skill-card {
    text-align: center;
  }
}
