:root{
      --accent-1: #FF4C4C; /* red */
      --accent-2: #F7B731; /* yellow */
      --accent-3: #4CD964; /* green */
      --accent-4: #5AC8FA; /* sky blue */
      --accent-5: #5856D6; /* purple */
      --accent-6: #FF9500; /* orange */
      --text-dark: #1C1C1E;
    }
    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      overflow-x: hidden;
      position: relative;
    }
    section{padding: 30px 0;}
    section p {
      text-align: justify;
    }

    /* Background Canvas */
    #bgCanvas {
      position: fixed;
      top: 10;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: -1;
    }

    .main-area {
        /*max-width: 1400px;
        margin: 0 auto;
        box-shadow: 0 0 69px #ddd;*/
        overflow: hidden;
    }
    a.navbar-brand img {
      max-height: 90px;
    }
    /* Navbar */
    .navbar {
        background: #fff;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
        position: fixed;
        width: 100%;
        z-index: 99;
    }
    .navbar-nav .nav-link {
      font-weight: 500;
      transition: color 0.3s;
      font-size: 20px;
    }
    .navbar-nav .nav-link:hover {
      color: #ff4c4c;
    }

    /* Hero Section */
    .hero {
      padding: 20px 0;
      text-align: left;
      background-color: #ffffff63;
      backdrop-filter: blur(2px);
    }
    .hero .row{
      margin-top: 16vh;
    }

    .hero h1 {
      font-size: 3.5rem;
      font-weight: 700;
      text-transform: capitalize;
    }
    .hero p {
      font-size: 1.2rem;
      margin: 20px 0;
    }
    .btn-gradient {
      background: linear-gradient(90deg,var(--accent-6),var(--accent-1),var(--accent-5));
      border: none;
      color: #fff;
      font-weight: 600;
      padding: 10px 25px;
      border-radius: 30px;
      transition: transform 0.3s ease;
    }
    .btn-gradient:hover {
      transform: scale(1.1);
      color: #fff;
    }

    /* About Section */
    .about img {
      border-radius: 15px;
    }

    /* Services Section */

    section.services {
        background-image: url(pattern-line.png);
        background-color: #fff;
    }

    .card {
        min-height: 475px;
    }
    .service-card {
      border-radius: 15px;
      transition: all 0.4s ease;
    }
    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    }

    .carousel-control-next-icon, .carousel-control-prev-icon {
        background-color: #919191;
        border-radius: 7px 0;
    }
    .carousel-control-prev {
        left: -120px;
    }
    .carousel-control-next {
        right: -120px;
    }

    .parallax {
        padding: 40px;
        color: #fff;
        min-height: 350px;
        text-align: center;
        background-image: url(panel-bg.jpg);
        background-size: cover;
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        display: flex;
        align-items: center;
        justify-content: center;
        text-transform: uppercase;
        background-blend-mode: multiply;
        background-color: #9f9f9f;
        box-shadow: inset 0 0 30px #000;
    }
    .parallax h2{font-size: 48px;}

    /* CTA Strip */
     /* CTA Strip */
    .cta-strip {
      background: linear-gradient(90deg,var(--accent-6),var(--accent-1),var(--accent-5));
      padding: 60px 0;
    }
    .cta-strip a{
      font-size: 20px;
      font-weight: bold;
    }


    .contact-box {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      padding: 30px;
    }
    .contact-box h4 {
      margin-bottom: 20px;
      color: #007bff;
      font-weight: 600;
    }
    .contact-box p {
      display: inline-flex;
      justify-content: start;
    }
    .info-item {
      font-size: 18px;
    }
    .info-item strong {
      color: #212529;
      margin-right: 12px;
    }

    /* Footer */
    footer {
      background: #1c1c1e;
      color: #fff;
      padding: 40px 0;
      text-align: center;
    }
    footer a {
      color: #fff;
      margin: 0 10px;
      transition: color 0.3s;
    }
    footer a:hover {
      color: #f7b731;
    }

@media only screen and (max-width: 676px) {

  
  .hero .row>div:nth-child(1) {
    text-align: center;
  }

  .certificates [data-aos=flip-left] {
    transform: unset;
  }
  #contact{opacity:1;}

}
