* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background: #ffffff;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}


/* ================= TOP BAR ================= */
.top-bar {
    background: #1f2937;
    color: #e5e7eb;
    font-size: 13px;
}

.top-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
}

.top-left span {
    margin-right: 15px;
}

.top-left i {
    margin-right: 6px;
    color: #60a5fa;
}

.top-center {
    font-weight: 500;
    color: #f3f4f6;
}

.top-right a {
    color: #e5e7eb;
    margin-left: 12px;
    transition: color 0.3s;
}

.top-right a:hover {
    color: #60a5fa;
}
.hire {
    color: white;
    font-size: 14px;
    font-weight: bold;
}
/* ================= MAIN NAVBAR ================= */

/* ===============================
   HEADER
================================ */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: white;
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 35px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}


.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

/* LOGO */
.logo {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #111;
}

/* NAV LINKS (DESKTOP) */
.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: #2563eb;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-btn {
  background: linear-gradient(135deg, #2563eb, #1e40af);
  color: #fff;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.2px;
  text-decoration: none;
  transition: all 0.35s ease;
}

.nav-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(37,99,235,0.35);
}

.nav-btn:active {
  transform: translateY(-1px);
}


/* ===============================
   MOBILE MENU
================================ */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  width: 26px;
  height: 3px;
  background: #111;
  border-radius: 3px;
  transition: all 0.4s ease;
}

/* Mobile Menu Panel */
@media (max-width: 768px) {

  .menu-toggle {
    display: flex;
  }

  .nav-btn {
    display: none;
  }

  .nav-links {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    padding: 30px 0;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);

    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
    transition: all 0.4s ease;
  }

  .nav-links.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-links a {
    font-size: 18px;
  }
}

/* ☰ → ✖ animation */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

/* Text logo (current) */
.logo-text {
  font-size: 24px;
  font-weight: 800;
  color: #111827;
  letter-spacing: 1px;
}

/* Image logo (future) */
.logo-img {
 height: 90px;
 width:150px;
}



/* ================= ======================HERO  section ================= */
/* =========================
   HERO SECTION ONLY
========================= */
.name {
    font-weight: bolder;
}
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at top left, #dbeafe 0%, transparent 45%),
        radial-gradient(circle at bottom right, #e0f2fe 0%, transparent 45%),
        linear-gradient(135deg, #f8fafc, #eef2ff);
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 650px;
}

.hero-badge {
    display: inline-block;
    margin-bottom: 18px;
    padding: 6px 16px;
    border-radius: 20px;
    background: rgba(37, 99, 235, 0.12);
    color: #2563eb;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.4px;
}

.hero-content h1 {
    font-size: 52px;
    line-height: 1.15;
    font-weight: 800;
    color: #020617;
    margin-bottom: 22px;
}

.hero-content h1 span {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
   -webkit-background-clip : text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 36px;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    padding: 14px 30px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero-buttons .btn.primary {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: #fff;
}

.hero-buttons .btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.35);
}

.hero-buttons .btn.secondary {
    background: #ffffff;
    border: 1px solid #c7d2fe;
    color: #1e3a8a;
}

.hero-buttons .btn.secondary:hover {
    background: #eef2ff;
}

/* OPTIONAL VISUAL CARD */
.hero-visual {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.75);
    border-radius: 22px;
    padding: 30px;
    max-width: 340px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(2, 6, 23, 0.08);
}

.glass-card h4 {
    font-size: 20px;
    margin-bottom: 14px;
    color: #020617;
}

.glass-card li {
    font-size: 15px;
    color: #334155;
    margin-bottom: 10px;
}

/* =========================
   RESPONSIVE – HERO ONLY
========================= */

@media (max-width: 900px) {
    .hero {
        padding: 60px 0;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .hero-content {
        text-align: center;
        margin: auto;
    }

    .hero-buttons {
        justify-content: center;
    }
}


                
     /* ================= OUR TECNOLOGY SOLUTIONS ================= */
.solutions {
    padding: 90px 0;
    background: #f9fafb;
}

.section-subtitle {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 55px;
    color: #6b7280;
    font-size: 15px;
}

/* GRID CONTROL */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Desktop = 4 cards */
    gap: 25px;
}

/* CARD */
.solution-card {
    background: #ffffff;
    padding: 32px 28px;
    border-radius: 14px;
    display: flex;
    flex-direction: column;   /* IMPORTANT */
    justify-content: space-between;
    min-height: 320px;        /* Equal height feel */
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}

.solution-card h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #111827;
}

.solution-card p {
    font-size: 14.5px;
    color: #4b5563;
    line-height: 1.6;
    flex-grow: 1;   /* text area stretch */
}

/* READ MORE FIXED AT BOTTOM */
.solution-card a {
    margin-top: 22px;
    font-weight: 600;
    text-decoration: none;
    color: #1a73e8;
    align-self: flex-start;
}

@media (max-width: 1200px) {
    .solutions-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .solution-card {
        min-height: auto;
    }
}




.solution-icon {
  width: 60px;
  height: 60px;
  background: #eef2ff;
  color: #2563eb;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 18px;
}

.solution-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.solution-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.solution-card:hover .solution-icon {
  background: #2563eb;
  color: #ffffff;
}

/*   ---------End of Solutions--------*/

/* ================= WHY ATSOLHIVE ================= */
.why-atsolhive {
    padding: 90px 0;
    background: #ffffff;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.why-card {
    background: #f9fafb;
    padding: 30px;
    border-radius: 14px;
    min-height: 240px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.why-card h4 {
    font-size: 17px;
    margin-bottom: 12px;
    color: #111827;
}

.why-card p {
    font-size: 14.5px;
    color: #4b5563;
    line-height: 1.6;
}
.why-atsolhive {
  padding: 90px 20px;
  background: linear-gradient(180deg, #f9fafc, #ffffff);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.why-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
  text-align: center;
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 45px rgba(0,0,0,0.14);
}

.why-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 22px;
  background: linear-gradient(135deg, #2563eb, #1e40af);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}

.why-card h4 {
  font-size: 20px;
  color: #111;
  margin-bottom: 14px;
  font-weight: 600;
}

.why-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}

@media (max-width: 1200px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}
  /* end of why---------*/

/* ================= SERVICES ================= */
.services {
    padding: 70px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 28px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 25px;
}

.service-card {
    padding: 25px;
    border-radius: 10px;
    background: #f9f9f9;
}

.services-section {
  padding: 90px 20px;
  background: #ffffff;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.services-heading {
  text-align: center;
  margin-bottom: 60px;
}

.services-heading h2 {
  font-size: 38px;
  font-weight: 700;
  color: #111;
  margin-bottom: 12px;
}

.services-heading p {
  font-size: 16px;
  color: #555;
  max-width: 750px;
  margin: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: #f9fafc;
  padding: 35px 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.1);
}

.service-card h3 {
  font-size: 22px;
  color: #111;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 18px;
}

.service-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.service-card ul li {
  font-size: 14px;
  color: #333;
  padding-left: 18px;
  position: relative;
  margin-bottom: 8px;
}

.service-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #2563eb;
  font-size: 12px;
}

.service-btn {
  margin-top: auto;
  display: inline-block;
  padding: 10px 18px;
  background: #2563eb;
  color: #fff;
  border-radius: 8px;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s;
  width: fit-content;
}

.service-btn:hover {
  background: #1e40af;
}
.service-icon {
  width: 60px;
  height: 60px;
  background: #eef2ff;
  color: #2563eb;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
}

.service-card:hover .service-icon {
  background: #2563eb;
  color: #ffffff;
}
  /*      end of Services---------*/
/* ================= PROCESS ================= */
.process {
    background: #f2f6fc;
    padding: 70px 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.step {
    background: white;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    font-weight: 500;
}
.process {
  padding: 100px 20px;
  background: linear-gradient(180deg, #ffffff, #f9fafc);
}

.process-steps {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.process-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 18px;
  text-align: center;
  position: relative;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
}

.process-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 45px rgba(0,0,0,0.14);
}

.process-icon {
  width: 70px;
  height: 70px;
  background: #eef2ff;
  color: #2563eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin: 0 auto 20px;
}

.process-number {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 42px;
  font-weight: 700;
  color: rgba(37, 99, 235, 0.1);
}

.process-card h4 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #111;
}

.process-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}
/*          end of Process--------*/
/* ================= INDUSTRIES ================= */
.industries {
    padding: 70px 0;
}

.industry-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.industry-list li {
    background: #f4f4f4;
    padding: 10px 20px;
    border-radius: 20px;
}
.industries {
  padding: 90px 20px;
  background: #f9fafc;
}

.industry-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
}

.industry-card {
  background: #ffffff;
  padding: 40px 20px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
}

.industry-card i {
  font-size: 36px;
  color: #2563eb;
  margin-bottom: 16px;
}

.industry-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: #111;
}

.industry-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.14);
}

.industry-card:hover i {
  color: #1e40af;
}
       /* end of industries---------*/

/* ================= CTA ================= */
/* =========================
   CTA SECTION – ADVANCED
========================= */

.cta-section {
    padding: 90px 0;
    background:
        radial-gradient(circle at top left, #dbeafe 0%, transparent 45%),
        radial-gradient(circle at bottom right, #e0f2fe 0%, transparent 45%),
        linear-gradient(135deg, #f8fafc, #eef2ff);
}

.cta-wrapper {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 50px;
    align-items: center;
    background: #ffffff;
    padding: 60px;
    border-radius: 28px;
    box-shadow: 0 25px 60px rgba(2, 6, 23, 0.08);
    position: relative;
    overflow: hidden;
}

/* subtle decorative glow */
.cta-wrapper::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, #60a5fa55, transparent 70%);
    top: -80px;
    right: -80px;
}

/* CONTENT */
.cta-badge {
    display: inline-block;
    margin-bottom: 16px;
    padding: 6px 16px;
    border-radius: 20px;
    background: rgba(37, 99, 235, 0.12);
    color: #2563eb;
    font-size: 13px;
    font-weight: 600;
}

.cta-content h3 {
    font-size: 36px;
    font-weight: 800;
    color: #020617;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-main {
    font-size: 17px;
    color: #475569;
    margin-bottom: 14px;
    max-width: 620px;
}

.cta-sub {
    font-size: 15px;
    color: #64748b;
    max-width: 600px;
}

/* ACTION */
.cta-action {
    display: flex;
    justify-content: center;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    border-radius: 40px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 35px rgba(37, 99, 235, 0.35);
}

/* =========================
   RESPONSIVE – CTA ONLY
========================= */

@media (max-width: 900px) {
    .cta-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 40px;
    }

    .cta-action {
        margin-top: 25px;
    }

    .cta-content h3 {
        font-size: 30px;
    }
}

        /*   - end cta --*/

/* ================= FOOTER ================= */
.footer {
    text-align: center;
    padding: 20px;
    background: #0f172a;
    color: #ccc;
}
.site-footer {
  background: #0f172a;
  color: #cbd5f5;
  padding: 80px 20px 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
}

.footer-logo {
  font-size: 26px;
  color: #ffffff;
  margin-bottom: 14px;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social a {
  display: inline-flex;
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.1);
  color: #ffffff;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 8px;
  transition: 0.3s;
}

.footer-social a:hover {
  background: #2563eb;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #cbd5f5;
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-form input,
.footer-form textarea {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 10px;
  border-radius: 6px;
  border: none;
  outline: none;
}

.footer-form textarea {
  resize: none;
  height: 90px;
}

.footer-form button {
  background: #2563eb;
  color: #ffffff;
  border: none;
  padding: 10px;
  width: 100%;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
}

.footer-form button:hover {
  background: #1e40af;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 50px;
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  color: #94a3b8;
} 
  /*end of footer ------*/
  
/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .hero h2 {
        font-size: 28px;
    }

    
}







           /* ================= SERVICES ================= */


     


             /* ================= CTA SECTION  ================= */



          /* ================= FOOTER ================= */
          /* ================= iNDUCTRIES SECTION ================= */


         /* ================= PROCESS ================= */
