 @font-face { font-family: 'breeserif'; src: url(fonts/breeserif/breeserif-regular-webfont.woff) format("woff"), url(fonts/breeserif/BreeSerif-Regular.ttf) format("truetype"); font-weight: 800; }
 
 @font-face { font-family: 'lato'; src: url(fonts/lato/lato-semibold-webfont.woff) format("woff"), url(fonts/lato/Lato-Semibold.ttf) format("truetype"); font-weight: 500; font-style: normal; }

@font-face { font-family: 'public'; src: url(fonts/public/publicsans-bold-webfont.woff) format("woff"), url(fonts/public/PublicSans-Regular.otf) format("truetype"); font-weight: 800; } 
 
 
  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
  :root {
    --navy: #0a0e2e;
    --dark-navy: #060918;
    --blue: #1a237e;
    --electric-blue: #2979ff;
    --cyan: #00bcd4;
    --orange: #ff6d00;
    --orange-light: #ff9800;
    --purple: #7c4dff;
    --white: #ffffff;
    --light-gray: #f5f6fa;
    --text-gray: #8a93b0;
    --gradient-hero: linear-gradient(135deg, #0a0e2e 0%, #1a237e 60%, #0d47a1 100%);
    --gradient-orange: linear-gradient(90deg, #ff6d00, #ff9800);
    --gradient-blue: linear-gradient(90deg, #2979ff, #00bcd4);
		--gradient-yellow: linear-gradient(90deg, #ffe200, #ffc000);
  }
  html { scroll-behavior: smooth; }
  body { background: var(--white); color: #1a1a2e; overflow-x: hidden; }

 

  /* HERO */
  .hero {
		width: 100%;
    height: 400px;
		background: linear-gradient(135deg, #0a246c 0%, #063cbd 40%, #f90082 100%);
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; text-align: center;
    padding: 65px 20px 10px;
    position: relative; overflow: hidden;
  }
  .hero::before {
    content: ''; position: absolute; inset: 0;
   /* background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232979ff' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");*/
    opacity: 0.5;
  }
  .hero-badge { background: rgb(0 41 150); border: 1px solid #00aaff; color: #01ff00; padding: 6px 18px; border-radius: 20px; font-size: 0.78rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 20px; display: inline-block; }
  .hero h1 { font-family: 'Rajdhani', sans-serif;font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; color: #FFFFFF; line-height: 51px; margin-bottom: 15px; }
  .hero h1 span { font-family: 'Rajdhani', sans-serif;background: var(--gradient-yellow); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
  .hero p { color: #ffffff; font-size: 16px; max-width: 560px; line-height: 25px; }

  /* BREADCRUMB */
  .breadcrumb { background: var(--light-gray); padding: 14px 60px; display: flex; align-items: center; gap: 8px; font-size: 0.82rem; }
  .breadcrumb a { color: var(--electric-blue); text-decoration: none; }
  .breadcrumb span { color: var(--text-gray); }
  .breadcrumb .current { color: var(--orange); font-weight: 600; }

  /* SECTION BASE */
  section { padding: 80px 60px; }
  .section-label { color: #ff5c00; font-family: 'public';font-size: 18px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 10px; }
  .section-title { font-size: 36px;font-weight: 800;line-height: 45px;margin-bottom: 16px;
	background: linear-gradient(90deg, var(--blue), var(--magenta));
    -webkit-text-fill-color: transparent;
    background-clip: text; }
		.section-title_why { font-size: 40px;font-weight: 800;line-height: 45px;margin-bottom: 16px;
	background: linear-gradient(90deg, #00e4ff, #3fff00);
    -webkit-text-fill-color: transparent;
    background-clip: text; }
  .section-title span { color: var(--electric-blue); }
  .section-subtitle { color: #000000; font-size: 17px; line-height: 1.5; max-width: 600px; }
  .text-center { text-align: center; }
  .text-center .section-subtitle { margin: 0 auto; }
  .divider { width: 50px; height: 4px; border-radius: 2px; background: var(--gradient-orange); margin: 20px 0; }
  .divider.center { margin: 20px auto; }

  /* WHO WE ARE */
  .who-we-are { background: var(--white); }
  .who-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-top: 5px; }
  .who-visual { position: relative; }
  .who-img-main {
    width: 95%; border-radius: 20px;
    background: var(--gradient-hero);
    display: flex; align-items: center; justify-content: center;
    font-size: 5rem; position: relative; overflow: hidden;
  }
  .who-img-main::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(41,121,255,0.3), rgba(0,188,212,0.3));
  }
  .who-img-emoji { font-size: 6rem; z-index: 2; position: relative; }
  .who-badge-float {
    position: absolute; bottom: -20px; right: -20px;
		z-index: 999;
    background: var(--gradient-orange); border-radius: 16px;
    padding: 20px 24px; color: white; text-align: center;
    box-shadow: 0 10px 30px rgba(255,109,0,0.4);
  }
  .who-badge-float strong { display: block; font-size: 40px; font-weight: 800; }
  .who-badge-float span { font-size: 15px; font-weight: 500; color:#ffffff;}
  .who-content { }
  .who-content p {color: #000000;line-height: 26px;margin-bottom: 11px;text-align: justify;font-size: 16px; }
  .who-checks { list-style: none; margin: 24px 0; display: grid; gap: 12px; }
  .who-checks li { display: flex; align-items: flex-start; gap: 12px; color: #000000;font-size: 14px; }
  .check-icon { width: 22px; height: 22px; border-radius: 50%; background: var(--gradient-orange); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; color: white; font-size: 0.7rem; font-weight: 700; }
  .btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--gradient-orange); color: white; padding: 14px 32px; border-radius: 30px; font-weight: 700; font-size: 0.88rem; text-decoration: none; transition: transform 0.2s, box-shadow 0.2s; box-shadow: 0 6px 20px rgba(255,109,0,0.35); }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(255,109,0,0.45); }
  .btn-outline { display: inline-flex; align-items: center; gap: 8px; border: 2px solid var(--electric-blue); color: var(--electric-blue); padding: 12px 30px; border-radius: 30px; font-weight: 700; font-size: 0.88rem; text-decoration: none; margin-left: 16px; transition: all 0.2s; }
  .btn-outline:hover { background: var(--electric-blue); color: white; }

  /* STATS ROW */
  .stats-row { background: var(--gradient-hero); padding: 60px; }
  .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
  .stat-item { text-align: center; padding: 30px 20px; border-right: 1px solid rgba(255,255,255,0.1); }
  .stat-item:last-child { border-right: none; }
  .stat-number { font-size: 2.8rem; font-weight: 800; color: var(--orange); line-height: 1; margin-bottom: 8px; }
  .stat-label { color: #aab4d8; font-size: 0.8rem; letter-spacing: 1px; text-transform: uppercase; font-weight: 500; }

  /* MISSION VISION */
  .mission-vision { background: var(--light-gray); }
  .mv-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 28px; margin-top: 50px; }
  .mv-card {
    background: var(--white); border-radius: 20px; padding: 40px 32px;
    position: relative; overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .mv-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,0.12); }
  .mv-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; }
  .mv-card.mission::before { background: var(--gradient-orange); }
  .mv-card.vision::before { background: var(--gradient-blue); }
  .mv-card.values::before { background: linear-gradient(90deg, #7c4dff, #e040fb); }
  .mv-icon { width: 60px; height: 60px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin-bottom: 20px; }
  .mission .mv-icon { /*background: linear-gradient(135deg, #ff6d00, #ff9800);*/ }
  .vision .mv-icon { /*background: linear-gradient(135deg, #2979ff, #00bcd4);*/ }
  .values .mv-icon { /*background: linear-gradient(135deg, #7c4dff, #e040fb);*/ }
  .mv-card h3 { font-size: 1.25rem; font-weight: 700; color: #0a0e2e; margin-bottom: 14px; }
  .mv-card p { color: #000000;
    font-size: 15px;
    text-align: justify;
    line-height: 1.6; }

  /* TEAM */
  .team-section { background: var(--white);margin-top: 40px; }
  .team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px;}
  .team-card {
    background: var(--white); border-radius: 20px; overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.07); transition: transform 0.3s;
    text-align: center;
  }
  .team-card:hover { transform: translateY(-8px); }
  .team-avatar {
    width: 100%; height: 200px;
    display: flex; align-items: center; justify-content: center;
    font-size: 4rem;
    position: relative;
  }
  .team-card:nth-child(1) .team-avatar { background: linear-gradient(135deg, #1a237e, #2979ff); }
  .team-card:nth-child(2) .team-avatar { background: linear-gradient(135deg, #ff6d00, #ff9800); }
  .team-card:nth-child(3) .team-avatar { background: linear-gradient(135deg, #00897b, #00bcd4); }
  .team-card:nth-child(4) .team-avatar { background: linear-gradient(135deg, #7c4dff, #e040fb); }
  .team-info { padding: 22px 20px; }
  .team-info h4 { font-size: 1rem; font-weight: 700; color: #0a0e2e; margin-bottom: 4px; }
  .team-role { font-size: 0.78rem; color: var(--orange); font-weight: 600; margin-bottom: 12px; }
  .team-social { display: flex; gap: 8px; justify-content: center; }
  .social-btn { width: 32px; height: 32px; border-radius: 8px; background: var(--light-gray); display: flex; align-items: center; justify-content: center; font-size: 0.75rem; color: var(--electric-blue); text-decoration: none; transition: all 0.2s; }
  .social-btn:hover { background: var(--electric-blue); color: white; }

  /* WHY CHOOSE */
  .why-choose { background: #301e87; padding: 80px 60px; }
  .why-choose .section-title { color: white; }
  .why-choose .section-subtitle { color: #ffffff; }
  .why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 50px; }
  .why-card {
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px; padding: 28px; display: flex; gap: 18px; align-items: flex-start;
    transition: border-color 0.3s, background 0.3s;
  }
  .why-card:hover { background: rgba(41,121,255,0.08); border-color: rgba(41,121,255,0.3); }
  .why-num { font-size: 2rem; font-weight: 800; background: var(--gradient-blue); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; flex-shrink: 0; }
  .why-text h4 {color: #ffd100;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;}
  .why-text p { color: #ffffff;
    font-size: 15px;
    line-height: 1.5;}

  /* CTA */
  .cta-section {
    background: var(--gradient-hero); padding: 80px 60px; text-align: center;
    position: relative; overflow: hidden;
  }
  .cta-section::before {
    content: 'INFOSOFT'; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    font-size: 12rem; font-weight: 900; color: rgba(255,255,255,0.02); white-space: nowrap;
    pointer-events: none;
  }
  .cta-section h2 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 800; color: white; margin-bottom: 16px; }
  .cta-section h2 span { color: var(--orange); }
  .cta-section p { color: #aab4d8; max-width: 500px; margin: 0 auto 32px; line-height: 1.8; }
  .cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
  .btn-white { background: white; color: var(--navy); padding: 14px 32px; border-radius: 30px; font-weight: 700; font-size: 0.88rem; text-decoration: none; transition: all 0.2s; }
  .btn-white:hover { background: var(--orange); color: white; }

 
  /* ANIMATE */
  @keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
  .animate { animation: fadeUp 0.7s ease forwards; }
  .delay-1 { animation-delay: 0.1s; opacity: 0; animation-fill-mode: both; }
  .delay-2 { animation-delay: 0.2s; opacity: 0; animation-fill-mode: both; }
  .delay-3 { animation-delay: 0.3s; opacity: 0; animation-fill-mode: both; }

  @media (max-width: 900px) {
    section { padding: 60px 20px; }
    .who-grid, .mv-grid, .team-grid, .why-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
  }
	
	@media (max-width: 575px) {
    .hero h1{
		line-height: 35px;
		}
		
		.section-title{
		font-size: 26px;
		line-height: 35px;
		}
		
		.why-choose{
		padding: 60px 30px;
		}
}