/* ============================================
   Fortis Computus - Elite Developer CSS Layout
   Written by: ChatGPT (Legend Mode Activated)
   ============================================ */

/* ===== Reset & Globals ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #f5f7fa;
  color: #111;
  overflow-x: hidden;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 0.5rem;
}

h1, h2 {
  font-weight: 700;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 1.5rem;
}

ul {
  padding-left: 1.2rem;
  margin-top: 0.5rem;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 10vh;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.logo img {
  height: 200px;
  transition: transform 0.3s ease;
}
.logo img:hover {
  transform: scale(1.05);
}

.navbar {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.navbar a {
  text-decoration: none;
  font-weight: 500;
  color: #333;
  transition: 0.3s;
  padding: 0.5rem 1rem;
  border-radius: 6px;
}

.navbar a:hover {
  background-color: #111;
  color: #fff;
}

.hamburger {
  display: none;
  font-size: 2rem;
  cursor: pointer;
}

.spacer {
  height: 12vh;
}

/* ===== Hero ===== */
.hero_section {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to right, #111 50%, #f5f7fa 50%);
  height: 100vh;
  color: white;
  padding: 4rem;
}

.hero_section {
  background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.1)), url('hero.jpg') no-repeat center center / cover;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
  padding: 2rem;
}
.hero-container h1 {
  font-size: 3rem;
  max-width: 800px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
}


/* ===== Section Headings ===== */
.item-h1 h1,
.spacer h1 {
  text-align: center;
  margin: 3rem auto 1.5rem;
  color: #111;
  font-size: 2.5rem;
  position: relative;
}

.item-h1 h1::after,
.spacer h1::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  margin: 0.5rem auto 0;
  background-color: #111;
  border-radius: 10px;
}

/* ===== Services ===== */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 3rem 6%;
}

.service-card {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 6px 16px rgba(0,0,0,0.05);
  transition: 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  animation: fadeInUp 1s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}

.service-card h2 {
  color: #111;
  margin: 1rem 0 0.5rem;
}

.service-card p {
  font-size: 0.95rem;
  color: #333;
}

.service-card ul {
  list-style: none;
  margin: 1rem 0;
}

.service-card ul li {
  margin: 0.4rem 0;
  padding-left: 1rem;
  position: relative;
}

.service-card ul li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #4caf50;
}

.service-card a {
  margin-top: auto;
  display: inline-block;
  padding: 0.5rem 1rem;
  background: #111;
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.service-card a:hover {
  background: #000;
}

/* ===== About ===== */
.about {
  padding: 4rem 6%;
  background: #f9f9f9;
}

.about-us-container h1 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: #111;
  text-align: center;
}

.about-us-container h2 {
  font-size: 1.2rem;
  margin-top: 1.5rem;
}

.about-us-container p {
  margin-top: 0.5rem;
  font-size: 1rem;
  color: #444;
  line-height: 1.7;
}

/* ===== Projects ===== */
.project-section .parent {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  padding: 3rem 6%;
  background: #fff;
}

.parent > div {
  background: #fdfdfd;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  text-align: center;
  transition: all 0.3s ease;
}

.parent > div:hover {
  transform: translateY(-5px);
}

.parent h1 {
  font-size: 1.2rem;
  color: #111;
  margin-bottom: 0.5rem;
}

.parent a {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.4rem 1rem;
  background-color: #111;
  color: #fff;
  border-radius: 20px;
  text-decoration: none;
}

/* Contact Section (Refined + Friendly) */
.contact-us {
  padding: 4rem 2rem;
  text-align: center;
  background: linear-gradient(145deg, #e3f2fd, #ffffff);
  color: #222;
  border-top: 1px solid #ddd;
}

.contact-us h1 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: #0055a5;
}

.contact-us p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.contact-us a {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #0055a5;
  color: white;
  font-weight: bold;
  text-decoration: none;
  border-radius: 30px;
  transition: background-color 0.3s ease;
}

.contact-us a:hover {
  background-color: #003d7a;
}

.footer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  background: #111;
  color: #ccc;
  padding: 3rem 4rem;
}

.footer-section {
  flex: 1;
  min-width: 220px;
  margin-bottom: 2rem;
}

.footer-section h2 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-section a {
  display: block;
  color: #ccc;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #fff;
}

.footer-socials {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-socials a {
  font-size: 1.2rem;
  color: #ccc;
  transition: color 0.3s ease;
}

.footer-socials a:hover {
  color: #fff;
}

.footer-copy {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: #888;
}



/* ===== Animations ===== */
@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}
/* Web Design Page - Fortis Computus Styles */

.website_hero {
  background: linear-gradient(to right, #111 60%, #f5f7fa 40%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem;
  text-align: center;
}

.website_hero .hero-container {
  max-width: 800px;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 3rem;
  border-radius: 1rem;
  animation: fadeIn 1.5s ease;
}

.website_hero h1 {
  font-size: 3rem;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.website_hero p {
  font-size: 1.1rem;
  color: #ddd;
  margin: 1rem 0;
}

.cta-button {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  background: #0055a5;
  color: white;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background: #003d7a;
}

.introcution_webdesign {
  padding: 4rem 2rem;
  background-color: #ffffff;
  color: #111;
}

.intro_container {
  max-width: 960px;
  margin: 0 auto;
  text-align: left;
}

.intro_container h1 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  color: #003d7a;
}

.intro_container h2 {
  font-size: 1.2rem;
  margin-top: 1.5rem;
  font-weight: 500;
}

.intro_container p {
  font-size: 1rem;
  margin-top: 0.5rem;
  line-height: 1.7;
  color: #444;
}

.intro_container ul {
  list-style: none;
  padding-left: 0;
  margin-top: 1rem;
}

.intro_container ul li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.5rem;
}

.intro_container ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #0055a5;
  font-size: 1.2rem;
  top: 0;
}

.testimonial-section {
  background-color: #f3f4f6;
  padding: 4rem 2rem;
  text-align: center;
  color: #111;
}

.testimonial-section h1 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #003d7a;
}

.testimonial-container blockquote {
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
  max-width: 700px;
  margin: 0 auto;
  padding: 1rem 2rem;
  border-left: 4px solid #0055a5;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.testimonial-container span {
  display: block;
  margin-top: 1rem;
  font-size: 0.95rem;
  color: #777;
}
/* Pricing Section */
.pricing-section {
  padding: 4rem 2rem;
  background-color: #f9f9f9;
  text-align: center;
}

.pricing-header h1 {
  font-size: 2.5rem;
  color: #003d7a;
  margin-bottom: 0.5rem;
}

.pricing-header p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 2.5rem;
}

.pricing-table {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.plan-card {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.plan-card h2 {
  font-size: 1.6rem;
  color: #111;
  margin-bottom: 0.5rem;
}

.price {
  font-size: 2rem;
  font-weight: bold;
  color: #0055a5;
  margin-bottom: 1.5rem;
}

.price span {
  font-size: 1rem;
  color: #777;
}

.plan-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  text-align: left;
}

.plan-card ul li {
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #333;
}

.plan-card ul li i.fa-check {
  color: #4caf50;
}

.plan-card ul li i.fa-times {
  color: #ccc;
}

.cta-button {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background-color: #0055a5;
  color: #fff;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #003d7a;
}

.popular {
  border: 2px solid #0055a5;
  position: relative;
}

.popular::before {
  content: 'Most Popular';
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: #0055a5;
  color: white;
  padding: 0.3rem 1rem;
  font-size: 0.75rem;
  font-weight: bold;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Simple Hero Style for Services Page */
.simple-hero {
  background-color: #f5f7fa;
  color: #111;
  text-align: center;
  padding: 6rem 2rem 4rem;
}

.simple-hero .hero-container {
  max-width: 800px;
  margin: 0 auto;
}

.simple-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: #003d7a;
}

.simple-hero p {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 2rem;
}


/* Animation Keyframes */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .header {
    padding: 1rem;
  }

  .navbar {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #111;
    position: absolute;
    top: 100%;
    left: 0;
  }

  .navbar.open {
    display: flex;
  }

  .navbar a {
    color: #fff;
    padding: 1rem;
    border-bottom: 1px solid #444;
  }

  .hero_section {
    flex-direction: column;
    padding: 2rem;
    height: auto;
  }

  .hero-container h1 {
    font-size: 2rem;
  }

  .services, .project-section .parent {
    grid-template-columns: 1fr;
  }
}

/* Responsive Styles */
@media (max-width: 768px) {


  .hamburger {
    display: block;
    cursor: pointer;
    margin-left: auto;
    font-size: 2rem;
    color: #333;
    
  }

  .navbar {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    background: #5d5c5c;
    padding: 2rem 1rem;
    gap: 1rem;
  }

  .navbar.open {
    display: flex;
  }

  .navbar a {
    color: white;
    font-size: 1.2rem;
  }
  .logo {
    display: flex;
    font-size: 1.5rem;
    font-weight: bold;
    width: 50dvw;
    height: 50dvw;
    margin-top: 50px;
  }


 
  .hero {
      flex-direction: column;
      height: auto;
      padding: 1.5rem 1rem;
    }
  
    .hero-box.left,
    .hero-box.right {
      width: 100%;
      padding: 1.5rem;
      text-align: center;
      font-size: 1.2rem;
      font-weight: bold;
    }
  
    .hero-box.right {
      margin-top: 1rem;
    }
  
    .expand-btn {
      align-self: center;
      font-size: 1.2rem;
      font-style: oblique;
    }
    .item-h1 {
      font-size: 1.5rem;
      width: 100%;
      padding: 10px 10px;
      display: flex;
      color: #0055a5;
      flex-direction: column;
      align-items: center;
      margin-bottom: 1rem;
      text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
      
    }
  
    .service-list li {
      font-size: 1rem;
      text-align: center;
    }
    .service-card ul li, p {
      font-size: 1.2rem;
      line-height: 1.5;
      font-weight: 400;
      margin-bottom: 1.0rem;
    }
  
    .cta {
      text-align: center;
    }
  
  

  .services {
    padding: 1rem;
    flex-direction: column;
    align-items: center;
  }

  .service-card {
    margin-bottom: 1rem;
  }

  .content-box {
    flex-direction: column;
    align-items: center;
  }
  .about-us h2 {
    margin-bottom: 1.5rem;
  }
  .about-us p {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    line-height: 1.5;
    text-align: center;
  }
  .website_hero {
    flex-direction: column;
    padding: 3rem 1.5rem;
  }

  .website_hero .hero-container h1 {
    font-size: 2rem;
  }

  .testimonial-container blockquote {
    font-size: 1rem;
    padding: 1.5rem;
  }
}

