/********** Template CSS **********/
:root {
  --primary: #18b2e6;
  --light: #f5f5f5;
  --dark: #888686;
}

.fw-medium {
  font-weight: 500 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fw-black {
  font-weight: 900 !important;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 45px;
  bottom: 45px;
  z-index: 99;
}

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Button ***/
.btn {
  font-weight: 500;
  transition: 0.5s;
}

.btn.btn-primary,
.btn.btn-secondary {
  color: #ffffff;
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

/*** Navbar ***/
.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
  margin-right: 30px;
  padding: 25px 0;
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: var(--primary);
}

@media (max-width: 991.98px) {
  .navbar-light .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 0;
  }

  .navbar-light .navbar-nav {
    border-top: 1px solid #eeeeee;
  }
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
  height: 75px;
}

.navbar-light .navbar-nav .nav-link {
  color: var(--dark);
  font-weight: 500;
}

.navbar-light.sticky-top {
  top: -100px;
  transition: 0.5s;
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    border: none;
    margin-top: 0;
    top: 150%;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
  }

  .navbar .nav-item:hover .dropdown-menu {
    top: 100%;
    visibility: visible;
    transition: 0.5s;
    opacity: 1;
  }
}

/*** Header ***/
@media (max-width: 768px) {
  .header-carousel .owl-carousel-item {
    position: relative;
    min-height: 500px;
  }

  .header-carousel .owl-carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .header-carousel .owl-carousel-item h5,
  .header-carousel .owl-carousel-item p {
    font-size: 14px !important;
    font-weight: 400 !important;
  }

  .header-carousel .owl-carousel-item h1 {
    font-size: 30px;
    font-weight: 600;
  }
}

.header-carousel .owl-nav {
  position: absolute;
  width: 200px;
  height: 45px;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: transparent;
  border: 1px solid #ffffff;
  font-size: 22px;
  transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.header-carousel .owl-dots {
  position: absolute;
  height: 45px;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 15px;
  height: 15px;
  background: transparent;
  border: 1px solid #ffffff;
  transition: 0.5s;
}

.header-carousel .owl-dot::after {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  top: 4px;
  left: 4px;
  background: transparent;
  border: 1px solid #ffffff;
}

.header-carousel .owl-dot.active {
  background: var(--primary);
  border-color: var(--primary);
}

.page-header {
  background: linear-gradient(rgba(53, 53, 53, 0.7), rgba(53, 53, 53, 0.7)),
    url(../img/carousel-1.jpg) center center no-repeat;
  background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: var(--light);
}

/*** Section Title ***/
.section-title h1 {
  position: relative;
  display: inline-block;
  padding: 0 60px;
}

.section-title.text-start h1 {
  padding-left: 0;
}

.section-title h1::before,
.section-title h1::after {
  position: absolute;
  content: "";
  width: 45px;
  height: 5px;
  bottom: 0;
  background: var(--dark);
}

.section-title h1::before {
  left: 0;
}

.section-title h1::after {
  right: 0;
}

.section-title.text-start h1::before {
  display: none;
}

/*** About ***/
@media (min-width: 992px) {
  .container.about {
    max-width: 100% !important;
  }

  .about-text {
    padding-right: calc(((100% - 960px) / 2) + 0.75rem);
  }
}

@media (min-width: 1200px) {
  .about-text {
    padding-right: calc(((100% - 1140px) / 2) + 0.75rem);
  }
}

@media (min-width: 1400px) {
  .about-text {
    padding-right: calc(((100% - 1320px) / 2) + 0.75rem);
  }
}

/*** Service ***/
.service-item img {
  transition: 0.5s;
}

.service-item:hover img {
  transform: scale(1.1);
}

/*** Feature ***/
@media (min-width: 992px) {
  .container.feature {
    max-width: 100% !important;
  }

  .feature-text {
    padding-left: calc(((100% - 960px) / 2) + 0.75rem);
  }
}

@media (min-width: 1200px) {
  .feature-text {
    padding-left: calc(((100% - 1140px) / 2) + 0.75rem);
  }
}

@media (min-width: 1400px) {
  .feature-text {
    padding-left: calc(((100% - 1320px) / 2) + 0.75rem);
  }
}

.gallery-slideshow {
  height: 400px;
  overflow: hidden;
  position: relative;
}

.slide-track {
  display: flex;
  animation: scroll 20s linear infinite;
  width: calc(300px * 12); /* 6 images * 2 for seamless loop */
}

.slide {
  width: 400px;
  height: 400px;
  flex-shrink: 0;
  position: relative;
  margin: 0 10px;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.slide:hover .slide-overlay {
  opacity: 1;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-300px * 6));
  }
}

.slide-track:hover {
  animation-play-state: paused;
}

/*** Quote ***/
@media (min-width: 992px) {
  .container.quote {
    max-width: 100% !important;
  }

  .quote-text {
    padding-right: calc(((100% - 960px) / 2) + 0.75rem);
  }
}

@media (min-width: 1200px) {
  .quote-text {
    padding-right: calc(((100% - 1140px) / 2) + 0.75rem);
  }
}

@media (min-width: 1400px) {
  .quote-text {
    padding-right: calc(((100% - 1320px) / 2) + 0.75rem);
  }
}

/*** Team ***/
.team-item img {
  transition: 0.5s;
  height: 300px;
  width: 100%;
}

.team-item:hover img {
  transform: scale(1.1);
}

.team-item .team-social {
  position: absolute;
  width: 38px;
  top: 50%;
  left: -38px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  background: #ffffff;
  transition: 0.5s;
}

.team-item .team-social .btn {
  color: var(--primary);
  background: #ffffff;
}

.team-item .team-social .btn:hover {
  color: #ffffff;
  background: var(--primary);
}

.team-item:hover .team-social {
  left: 0;
}



/*** Contact ***/
@media (min-width: 992px) {
  .container.contact {
    max-width: 100% !important;
  }

  .contact-text {
    padding-left: calc(((100% - 960px) / 2) + 0.75rem);
  }
}

@media (min-width: 1200px) {
  .contact-text {
    padding-left: calc(((100% - 1140px) / 2) + 0.75rem);
  }
}

@media (min-width: 1400px) {
  .contact-text {
    padding-left: calc(((100% - 1320px) / 2) + 0.75rem);
  }
}

/*** Footer ***/
.footer {
  background: linear-gradient(rgba(53, 53, 53, 0.7), rgba(53, 53, 53, 0.7)),
    url(../img/footer.jpg) center center no-repeat;
  background-size: cover;
}

.footer .btn.btn-social {
  margin-right: 5px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  border: 1px solid #ffffff;
  transition: 0.3s;
}

.footer .btn.btn-social:hover {
  color: var(--primary);
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: #ffffff;
  font-size: 15px;
  font-weight: normal;
  text-transform: capitalize;
  transition: 0.3s;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  color: var(--primary);
  letter-spacing: 1px;
  box-shadow: none;
}

.footer .copyright {
  padding: 25px 0;
  font-size: 15px;
  border-top: 1px solid rgba(256, 256, 256, 0.1);
}

.footer .copyright a {
  color: var(--light);
}

.footer .copyright a:hover {
  color: var(--primary);
}

/* About Page */
.text-wrap-container {
  font-size: 16px;
  line-height: 1.8;
  text-align: justify;
  color: #555;
  overflow: hidden;
}

.wrap-image-center {
  float: left;
  margin: 0 30px 30px 0;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  max-width: 450px;
  height: auto;
  transition: all 0.4s ease;
  animation: fadeInScale 1.2s ease-out;
}

.wrap-image-center:hover {
  transform: scale(1.03);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  border-radius: 20px;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8) translateY(-30px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.typewriter-text {
  overflow: visible;
  white-space: normal;
  display: block;
  border-right: 3px solid #18b2e6;
  animation: blink-cursor 1s step-end infinite;
}

@keyframes blink-cursor {
  from,
  to {
    border-color: transparent;
  }
  50% {
    border-color: #18b2e6;
  }
}

.paragraph-1 {
  animation: typeText 2s steps(180) 1s forwards;
}
.paragraph-2 {
  animation: typeText 2.2s steps(220) 3.2s forwards;
}
.paragraph-3 {
  animation: typeText 1.8s steps(180) 5.6s forwards;
}
.paragraph-4 {
  animation: typeText 2s steps(190) 7.6s forwards;
}
.paragraph-5 {
  animation: typeText 2.5s steps(230) 9.8s forwards;
}

@keyframes typeText {
  from {
    max-height: 0;
    opacity: 0;
  }
  to {
    max-height: 200px;
    opacity: 1;
    border-right: none;
  }
}

.text-wrap-container p {
  margin-bottom: 20px;
  opacity: 0;
}

.paragraph-1 {
  animation: typeText 2s steps(180) 1s forwards,
    fadeInParagraph 0.1s 1s forwards;
}
.paragraph-2 {
  animation: typeText 2.2s steps(220) 3.2s forwards,
    fadeInParagraph 0.1s 3.2s forwards;
}
.paragraph-3 {
  animation: typeText 1.8s steps(180) 5.6s forwards,
    fadeInParagraph 0.1s 5.6s forwards;
}
.paragraph-4 {
  animation: typeText 2s steps(190) 7.6s forwards,
    fadeInParagraph 0.1s 7.6s forwards;
}
.paragraph-5 {
  animation: typeText 2.5s steps(230) 9.8s forwards,
    fadeInParagraph 0.1s 9.8s forwards;
}

@keyframes fadeInParagraph {
  to {
    opacity: 1;
  }
}

.text-wrap-container::after {
  content: "";
  display: table;
  clear: both;
}

@media (max-width: 768px) {
  .wrap-image-center {
    float: none;
    display: block;
    margin: 0 auto 20px auto;
    max-width: 100%;
  }

  .text-wrap-container {
    text-align: left;
  }

  .typewriter-text {
    white-space: normal;
    border-right: none;
  }

  .text-wrap-container p {
    animation: none !important;
    opacity: 1 !important;
  }
}


/* Sevices Section */
.services-section {

  padding: 80px 0;
}

.section-intro {
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center;
  color: #333;
}

.service-card {
  background: white;
  border-radius: 15px;
  padding: 40px 30px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  border: none;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background:#18b2e6;
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-icon {
  width: 80px;
  height: 80px;
  background:#18b2e6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: white;
  font-size: 35px;
  transition: all 0.4s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(45deg, #0056b3, #004085);
}

.service-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
}

.service-description {
  color: #666;
  line-height: 1.7;
  text-align: center;
  font-size: 15px;
}

.card-animation {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease forwards;
}

.card-animation:nth-child(1) {
  animation-delay: 0.1s;
}
.card-animation:nth-child(2) {
  animation-delay: 0.2s;
}
.card-animation:nth-child(3) {
  animation-delay: 0.3s;
}
.card-animation:nth-child(4) {
  animation-delay: 0.4s;
}
.card-animation:nth-child(5) {
  animation-delay: 0.5s;
}
.card-animation:nth-child(6) {
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.intro-text {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 40px;
}

.highlight-text {
  background: #18b2e6;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

/* Galley Page */
 .gallery-section {
            padding: 100px 0;
            background: #ffffff;
            position: relative;
        }
        

        
        .section-header {
            text-align: center;
            margin-bottom: 80px;
        }
        
        .section-title {
            font-size: 3.2rem;
            font-weight: 500;
            color: black;
            margin-bottom: 20px;
            letter-spacing: -1px;
        }
        
        .section-subtitle {
            font-size: 1.2rem;
            color: var(--dark);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.7;
            opacity: 0.8;
        }
        
        .gallery-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .mosaic-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            grid-auto-rows: 250px;
        }
        
        .gallery-tile {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            cursor: pointer;
            transform-style: preserve-3d;
            transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
            background: var(--light);
        }
        
        .gallery-tile:nth-child(3n) {
            grid-row: span 2;
        }
        
        .gallery-tile:nth-child(5n) {
            grid-column: span 2;
        }
        
        .gallery-tile:nth-child(7n) {
            grid-row: span 2;
            grid-column: span 2;
        }
        
        .tile-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.8s ease;
            filter: brightness(0.9) contrast(1.1);
        }
        
        .tile-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(
                135deg,
                rgba(24, 178, 230, 0.9) 0%,
                rgba(24, 178, 230, 0.7) 100%
            );
            opacity: 0;
            transition: all 0.5s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            backdrop-filter: blur(10px);
        }
        
        .overlay-content {
            text-align: center;
            color: white;
            transform: scale(0.8) translateY(30px);
            transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
        }
        
        .overlay-icon {
            font-size: 3rem;
            margin-bottom: 15px;
            color: #ffffff;
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
        }
        
        .overlay-title {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 8px;
            letter-spacing: 0.5px;
        }
        
        .overlay-subtitle {
            font-size: 0.9rem;
            opacity: 0.9;
            font-weight: 300;
        }
        
        .gallery-tile:hover {
            transform: translateY(-15px) rotateX(5deg) rotateY(5deg);
            box-shadow: 
                0 25px 50px rgba(24, 178, 230, 0.2),
                0 0 0 1px rgba(24, 178, 230, 0.1);
        }
        
        .gallery-tile:hover .tile-image {
            transform: scale(1.1) rotate(2deg);
            filter: brightness(1.1) contrast(1.2) saturate(1.3);
        }
        
        .gallery-tile:hover .tile-overlay {
            opacity: 1;
        }
        
        .gallery-tile:hover .overlay-content {
            transform: scale(1) translateY(0);
        }
        
        /* Magnetic effect on hover */
        .gallery-tile {
            transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
        }
        
        /* Staggered entrance animation */
        .gallery-tile {
            opacity: 0;
            transform: translateY(60px) rotateX(20deg);
            animation: tileReveal 0.8s cubic-bezier(0.23, 1, 0.320, 1) forwards;
        }
        
        .gallery-tile:nth-child(1) { animation-delay: 0.1s; }
        .gallery-tile:nth-child(2) { animation-delay: 0.2s; }
        .gallery-tile:nth-child(3) { animation-delay: 0.3s; }
        .gallery-tile:nth-child(4) { animation-delay: 0.4s; }
        .gallery-tile:nth-child(5) { animation-delay: 0.5s; }
        .gallery-tile:nth-child(6) { animation-delay: 0.6s; }
        .gallery-tile:nth-child(7) { animation-delay: 0.7s; }
        .gallery-tile:nth-child(8) { animation-delay: 0.8s; }
        .gallery-tile:nth-child(9) { animation-delay: 0.9s; }
        .gallery-tile:nth-child(10) { animation-delay: 1.0s; }
        .gallery-tile:nth-child(11) { animation-delay: 1.1s; }
        .gallery-tile:nth-child(12) { animation-delay: 1.2s; }
        .gallery-tile:nth-child(13) { animation-delay: 1.3s; }
        .gallery-tile:nth-child(14) { animation-delay: 1.4s; }
        .gallery-tile:nth-child(15) { animation-delay: 1.5s; }
        .gallery-tile:nth-child(16) { animation-delay: 1.6s; }
        .gallery-tile:nth-child(17) { animation-delay: 1.7s; }
        
        @keyframes tileReveal {
            to {
                opacity: 1;
                transform: translateY(0) rotateX(0);
            }
        }
        
        /* Floating particles effect */
        .gallery-tile::after {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, var(--primary), var(--primary));
            border-radius: 22px;
            z-index: -1;
            opacity: 0;
            transition: opacity 0.5s ease;
        }
        
        .gallery-tile:hover::after {
            opacity: 1;
        }
        
        @media (max-width: 768px) {
            .mosaic-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            
            .gallery-tile:nth-child(3n),
            .gallery-tile:nth-child(5n),
            .gallery-tile:nth-child(7n) {
                grid-row: span 1;
                grid-column: span 1;
            }
            
            .section-title {
                font-size: 2.5rem;
            }
            
            .gallery-tile:hover {
                transform: translateY(-8px);
            }
        }

        /* Apply Now PAge */
        .application-container {
            max-width: 800px;
            margin: 0 auto;
            background: white;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }

        .form-header {
            background: linear-gradient(135deg, var(--primary), #0ea5d9);
            color: white;
            padding: 40px;
            text-align: center;
            position: relative;
        }

        .form-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="white" opacity="0.1"/><circle cx="80" cy="80" r="2" fill="white" opacity="0.1"/></svg>');
        }

        .form-header h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 10px;
            position: relative;
            z-index: 2;
        }

        .form-header p {
            font-size: 1.1rem;
            opacity: 0.9;
            position: relative;
            z-index: 2;
            margin: 0;
        }

        .form-body {
            padding: 50px 40px;
        }

        .form-section {
            margin-bottom: 40px;
        }

        .section-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 25px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--light);
            position: relative;
        }

        .section-title::before {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 50px;
            height: 2px;
            background: var(--primary);
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-label {
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 8px;
            font-size: 0.95rem;
        }

        .form-control, .form-select {
            border: 2px solid #e9ecef;
            border-radius: 10px;
            padding: 12px 15px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: white;
        }

        .form-control:focus, .form-select:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 0.2rem rgba(24, 178, 230, 0.15);
            background: white;
        }

        .form-check {
            margin-bottom: 15px;
        }

        .form-check-input {
            width: 20px;
            height: 20px;
            border: 2px solid #dee2e6;
            border-radius: 4px;
            transition: all 0.3s ease;
        }

        .form-check-input:checked {
            background-color: var(--primary);
            border-color: var(--primary);
        }

        .form-check-label {
            margin-left: 10px;
            font-weight: 500;
            color: var(--dark);
        }

        .file-upload {
            position: relative;
            display: inline-block;
            width: 100%;
        }

        .file-upload-input {
            position: absolute;
            left: -9999px;
        }

        .file-upload-label {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            border: 2px dashed #dee2e6;
            border-radius: 10px;
            background: var(--light);
            cursor: pointer;
            transition: all 0.3s ease;
            color: var(--dark);
        }

        .file-upload-label:hover {
            border-color: var(--primary);
            background: rgba(24, 178, 230, 0.05);
        }

        .file-upload-icon {
            font-size: 2rem;
            margin-right: 15px;
            color: var(--primary);
        }

        .submit-btn {
            background: linear-gradient(135deg, var(--primary), #0ea5d9);
            border: none;
            padding: 15px 40px;
            border-radius: 50px;
            color: white;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            width: 100%;
            position: relative;
            overflow: hidden;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(24, 178, 230, 0.3);
        }

        .submit-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
        }

        .submit-btn:hover::before {
            left: 100%;
        }

        .required {
            color: #dc3545;
        }

        @media (max-width: 768px) {
            .form-body {
                padding: 30px 20px;
            }

            .form-header {
                padding: 30px 20px;
            }

            .form-header h2 {
                font-size: 2rem;
            }
        }
