/* nav bar */

.navbar-custom {
    background-color: #121a2f; /* Dark blue background */
    color: white;
}
.navbar-custom .navbar-brand {
    color: #81c784; /* Light green for the brand */
    font-weight: bold;
}
.navbar-custom .navbar-brand:hover {
    color: white;
}
.navbar-custom .nav-link {
    color: white;
}
.navbar-custom .nav-link:hover {
    color: #81c784; /* Light green for hover */
}
.navbar-custom .navbar-toggler {
    border-color: white;
}
.navbar-custom .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}


.hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Adds a dark overlay for better text readability */
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

#background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
   
}



h2 {
    font-weight: bold;
}

blockquote {
    font-size: 1.25rem;
    font-style: italic;
    border-left: 5px solid #4caf50;
    padding-left: 10px;
}


.services-section {
    background-color: #f9f9f9;
}

/* Card Style */
.card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-top:10px;
  }
  .card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.card .btn {
    margin-top: auto;
}

  .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }
  
.card-title {
    font-weight: bold;
    color: #333;
}

.card-text {
    font-size: 0.9rem;
}

.about-section {
    padding: 50px 0;
}
.about-image img {
    border-radius: 10px;
    max-width: 100%;
}


/* Common animation styles */
[data-animate] {
    opacity: 0; /* Start hidden */
    transition: opacity 0.5s ease, transform 0.5s ease; /* Smooth transition */
  }
  
  /* Fade-in animation for .mot-content */
  [data-animate="fade-in"] {
    transform: translateY(50px); /* Start slightly below */
  }
  
  [data-animate="fade-in"].visible {
    opacity: 1;
    transform: translateY(0); /* Final position */
  }
  
  /* Fade-in-left animation for  */
  [data-animate="fade-in-left"] {
    opacity: 0; /* Start invisible */
    transform: translateX(-50px); /* Start slightly to the left */
  }
  
  [data-animate="fade-in-left"].visible {
    opacity: 1;
    transform: translateX(0); /* Final position */
  }
  
  /* Fade-in-up animation  */
  [data-animate="fade-in-down"] {
    opacity: 0; 
    transform: translateY(-50px); 
    
  }
  
  [data-animate="fade-in-down"].visible { 
    opacity: 1; 
    transform: translateY(0); /* Final position */
  }
  
  /* Fade-in-right animation */
[data-animate="fade-in-right"] {
    transform: translateX(50px); /* Start slightly to the right */
    opacity: 0; /* Start invisible */
}

[data-animate="fade-in-right"].visible {
    transform: translateX(0); /* Final position */
    opacity: 1; /* Fully visible */
}

/* Fade-in-up animation */
[data-animate="fade-in-up"] {
    transform: translateY(50px); /* Start slightly below */
    opacity: 0; /* Start invisible */
}

[data-animate="fade-in-up"].visible {
    transform: translateY(0); /* Final position */
    opacity: 1; /* Fully visible */
}

/* footer */

.footer {
    background-color: #121a2f; /* Dark blue background */
    color: white; /* White text color */
    padding-top: 40px ;
}
.footer h5 {
    color: #81c784; /* Light green headings */
    margin-bottom: 20px;
}
.footer a {
    color: white;
    text-decoration: none;
}
.footer a:hover {
    text-decoration: underline;
    color: #81c784;
}
.social-icons a {
    color: white;
    margin-right: 10px;
    font-size: 1.5rem;
}
.footer-bottom {
    background-color: #2ca043; /* Green bottom bar */
    color: white;
    text-align: center;
    padding: 20px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}



/* about us */
.about-header {
    margin-top: 40px;
    margin-bottom: 20px;
  }

  .about-title {
    color: #28a745;
  }

  .about-text {
    line-height: 1.8;
  }

  

  .highlight-box {
    background-color: #f8f9fa;
    border-left: 5px solid #28a745;
    padding: 15px;
    margin: 20px 0;
    font-style: italic;
}
.services-list li {
    list-style: none;
    position: relative;
    margin-bottom: 10px;
}
.services-list li::before {
    content: '➤';
    color: #28a745;
    font-weight: bold;
    font-size: small;
    margin-right: 10px;
    position: absolute;
    left: -20px;
}

/* technologies icon */
.card img.icon {
    max-width: 100px; 
    max-height: 100px;
    margin: 0 auto; 
    display: block; 
}



/* about-us */
  .about-img {
    border-radius: 10px;
  }


/* contact us */
.contact-card{
    background-color: #121a2f; 
    padding: 20px;
    color: #2ca043;
}

.contact-card .card{
    background-color: #1f2739; 
    border: none;
    color: white;
}




