/*
Theme Name: SRV Technology
Theme URI: https://themeforest.net/
Author: Mohini Trivedi
Author URI: https://example.com/
Description: Converted WordPress theme from ThemeForest HTML.
Version: 1.0
Text Domain: mytheme
*/

html, body {
  height: 100%;
}
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
main {
  flex: 1;
}


.srv-footer {
  background: #000000;
  padding: 70px 0 30px;
  color: #ccc;
  position: relative;
  overflow: hidden;
}
.srv-footer .footer-logo img {
  max-width: 276px;
}
.srv-footer h5, 
.srv-footer h6 {
  color: #fff;
  font-weight: 600;
}
.srv-footer .text-accent {
  color: #00b4d8;
}
.srv-footer .social-icons a {
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  margin-right: 8px;
  transition: all 0.3s ease;
}
.srv-footer .social-icons a:hover {
  background: #00b4d8;
  color: #fff;
}
.srv-footer .footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.srv-footer .footer-list li {
  color: #ccc;
  font-size: 14px;
  margin-bottom: 6px;
}
.srv-footer .footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
}
.srv-footer a {
  color: #ccc;
}
.srv-footer a:hover {
  color: #00b4d8;
}
@media (max-width: 768px) {
  .srv-footer { text-align: center; }
  .srv-footer .social-icons { justify-content: center; }
}


.parallax-slider-wrapper {
    height: 100vh;
    overflow: hidden;
}

.parallax-sliders {
    position: fixed;
    top: 0;
    left: 0;
    width: 400vw; /* 4 slides */
    height: 100vh;
    display: flex;
}

.parallax-item {
    width: 100vw;
    height: 100vh;
    flex-shrink: 0;
}


.scroll-spacer {
    height: 300vh; /* slides × 100vh (4 × 100) */
}


/* Career Modal Styles */
.career-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    z-index: 99999;
    overflow-y: auto;
    padding: 20px;
}

.career-modal-content {
    background: #111;
    color: #fff;
    max-width: 500px;
    margin: 50px auto;
    padding: 40px;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    border: 1px solid #333;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 28px;
    cursor: pointer;
    color: #fff;
    background: transparent;
    border: none;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
}

.close-modal:hover {
    color: #ff5500;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    background: #222;
    border: 1px solid #444;
    border-radius: 8px;
    color: #fff;
    margin-bottom: 5px;
}

.form-group input:focus {
    outline: none;
    border-color: #ff5500;
}

/* Alert messages */
.alert-success {
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid #28a745;
    color: #28a745;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    text-align: center;
}

.alert-danger {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid #dc3545;
    color: #dc3545;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    text-align: center;
}

