
html, body {
    height: 100%; 
    margin: 0;
    padding: 0;
    overscroll-behavior: none;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
}



header {
    width: 100%;
    position: relative;
    color: white;
}

main, section {
    flex-grow: 1; 
    display: flex;
    justify-content: center;
    align-items: center; 
    padding: 20px;
    background: linear-gradient(to right, #4facfe, #00f2fe);

}
.navbar {
    padding: 10px 20px;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
}

footer {
    background-color: #222;
    color: white;
    padding: 20px 0;
    width: 100%;
    text-align: center;
}

.footer-content a {
    color: #00f2fe;
    text-decoration: none;
}

.footer-content a:hover {
    text-decoration: underline;
}



@media (max-width: 768px) {
    .container {
        width: 90%; 
    }
    form {
        width: 100%;
    }
}


/* hero page */
.carousel-item {
    height: 85vh;
    background-size: cover;
    background-position: center;
  }

  .carousel-caption {
    position: absolute;
    top: 5%;
    left: 50%;
    transform: translateX( -50%);
    text-align: center;
    color: white;
    z-index: 10;
  }

  /*.carousel-caption h1 {*/
  /*  font-weight: bold;*/
  /*  font-size: 3rem;*/
  /*}*/

  .carousel-caption p {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .carousel-caption .btn {
    font-size: 1rem;
    padding: 10px 20px;
    background-color: #3249cc;
    color: #fff;
    border: none;
    border-radius: 5px;
  }

  /* Overlay black color */
  .carousel-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Black overlay */
  }


  
  /* about us page fetures part section */
.service-card {
            transition: all 0.3s ease;
            border: none;
            border-radius: 15px;
            overflow: hidden;
            background: linear-gradient(145deg, #ffffff, #f3f3f3);
            box-shadow: 5px 5px 15px #d9d9d9, -5px -5px 15px #ffffff;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 8px 8px 20px #d1d1d1, -8px -8px 20px #ffffff;
        }
        
        .icon-wrapper {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto;
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
        }
        
        .custom-badge {
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
        }
        
        .service-title {
            color: #2d3748;
            font-weight: 600;
        }
        
        .service-text {
            color: #718096;
            font-size: 0.95rem;
        }

        body {
            background-color: #f8f9fa;
            min-height: 100vh;
            padding: 0 0;
        }
/*end about */

/*CONTACT FORM*/

.contact-wrapper {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
  }

  .contact-info {
    background: linear-gradient(135deg, #0062cc, #0096ff);
    padding: 40px;
    color: white;
  }

  .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
  }

  .contact-item:hover {
    transform: translateX(10px);
  }

  .contact-icon {
    width: 30px;
    height: 30px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
  }

  .social-links {
    margin-top: 30px;
  }

  .social-icon {
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: all 0.3s ease;
  }

  .social-icon:hover {
    background: white;
    color: #0062cc;
    transform: translateY(-3px);
  }

  .contact-form {
    padding: 40px;
  }

  .form-control {
    border-radius: 10px;
    padding: 12px 15px;
    border: 2px solid #eee;
    transition: all 0.3s ease;
  }

  .form-control:focus {
    border-color: #0062cc;
    box-shadow: none;
  }

  .form-label {
    font-weight: 500;
    margin-bottom: 8px;
  }

  .btn-submit {
    background: linear-gradient(135deg, #0062cc, #0096ff);
    border: none;
    padding: 12px 30px;
    border-radius: 10px;
    transition: all 0.3s ease;
  }

  .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,98,204,0.3);
  }
  