*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
        
}

.header {
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(4, 9, 30, 0.429)),url(images/04.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
}

nav{
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
    
}

nav img{
    width: 80px;
    padding: 0.25rem;
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    height: auto;
}
.nav-links{
    flex: 1;
    text-align: right;
}

.nav-links ul li{
    list-style: none;
    display: inline-block;   
    padding: 8px 12px;
    position: relative;
    font-family: "Poppins", sans-serif;
}

.nav-links ul li a{
    color: #fff;
    text-decoration: none;
    font-size: 13px;
}

.nav-links ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: #f44336;
    display: block;
    margin: auto;
    transition: 0.5s;
}
.nav-links ul li:hover::after{
    width: 100%;
}

.text-box{
    width: 90%;
    color: #fff;
    position: absolute;
    top: 20%;
    left: 5%;
    
    text-align: left;
    
}

.text-box h1{
    color: #fff;
    font-size: 60px;
    font-family: "Brygada 1918", sans-serif;
}

.text-box p{
    margin: 10px 0 40px;
    font-size: 14px;
    color: #fff;
    font-family: "Poppins", sans-serif;
}

.hero-btn{
    font-family: "Poppins", sans-serif;
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 1px solid #ff5f1f;
    border-radius: 30px;
    padding: 12px 34px;
    font-size: 13px;
    background: linear-gradient(
        90deg,
        #FF4500,
        #FFA500,
        #FFD700,
        #FFA500,
        #FF4500
    );
    background-size: 300%;
    position: relative;
    cursor: pointer;
    z-index: 1;
    transition: transform 0.3s ease;
    
}

.hero-btn,
.play-btn {
    vertical-align: middle;
    margin-right: 10px;
}

.hero-btn::before {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: inherit;
    
    border-radius: 30px;
    filter: blur(15px);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}



.hero-btn:hover {
    animation: glow 4s linear infinite;
    transform: scale(1.05);
    color: #000000;
}

.hero-btn:hover::before {
    opacity: 1;
}


.play-btn {
    width: 55px;
    height: 55px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 100%;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    background: 
        linear-gradient(
        90deg,
        #FF4500,
        #FFA500,
        #FFD700,
        #FFA500,
        #FF4500
    );
    background-size: 300%;
    cursor: pointer;
    z-index: 1;
    transition: transform 0.3s ease;
}

/* glowing blur */
.play-btn::before {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: inherit;
    
    border-radius: 30px;
    filter: blur(15px);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

/* hover effect */
.play-btn:hover {
    animation: glow 4s linear infinite;
    transform: scale(1.05);
    color: #000000;
}

.play-btn:hover::before {
    opacity: 1;
}

/* animation */
@keyframes glow {
    0% {
        background-position: 0%;
        
    }
    100% {
        background-position: 300%;
        
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0px);
    }
}



.text-box {
    animation: slideUp 0.8s ease-out forwards;
}
    
    

    

    
.About{
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0 cover 40%;

    
}

nav .fa{
    display: none;
}

@media(max-width: 700px){
    .text-box h1{
        font-size: 35px;
    }

    .nav-links ul li{
        display: block;
    }
    .nav-links{
        position: absolute;
        background: #aaaaaa4b;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 1s;
    }
    nav .fa{
        display: block;
        color: #fff;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }

    nav .fa-bars {
        z-index: 1000;
    }
    
    .nav-links ul{
        padding: 30px;
    }

    .nav-links ul li a{
        color: #fff;
        font-size: 16px;
    }

    .nav-links {
        pointer-events: none;
    }
    
    .nav-links.active {
        pointer-events: auto;
    }
   
    
    #closeMenu {
        display: none;
    }
    
    .nav-links.active #closeMenu {
        
        display: block;
        
    }
    
    .nav-links.active ~ #openMenu {
        display: none;
    }
    
}

.video-popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.video-container {
    position: relative;
    width: 80%;
    max-width: 800px;
}

.video-container iframe {
    width: 100%;
    height: 450px;
    border-radius: 10px;
}

.close-video {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}


/*--------------About--------------------------*/


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
  }

  body {
    height: 200vh;
    background: #fff;
  }

  .section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 100px;
    overflow: hidden;
  }

  /* LEFT TEXT */
  .content {
    width: 40%;
  }

  .content h1 {
    color: #3c3b89;
    font-family: "Brygada 1918", sans-serif;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
  }

  .content p {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 5px;
    color: #777;
  }


  .read-more-btn {
    display: inline-block;
    margin-top: 10px;
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    color: #fff;
    text-decoration: none;
    padding: 10px 22px;
    border: 1px solid #FF6D2D;
    border-radius: 30px;
    transition: all 0.3s ease;
    background: #FF6D2D;
}

/* hover effect */
.read-more-btn:hover {
    background-color: #3c3b893c;
    color: #ffffff;
    border: #3c3b893c;
}




  /* RIGHT IMAGES */
  .images {
    position: relative;
    width: 50%;
    display: flex;
    justify-content: flex-end;
  }

  .image-back {
    width: 470px;
    height: 570px;
    border-radius: 2px;
    overflow: hidden;
  }

  .image-back img {
    width: 87%;
    height: 91%;
    object-fit: cover;
  }

  .image-front {
    position: absolute;
    right: 310px;
    bottom: 10px;
    width: 240px;
    height: 330px;
    border-radius: 2px;
    border: 10px solid #ffffff;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
    transform: translateY(0);
    transition: transform 0.1s linear;
  }

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

/* animation */
@keyframes appear {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* initial hidden state */
.content {
    opacity: 0;
    transform: translateY(60px);
}

/* when visible */
.content.show {
    animation: appear 0.9s ease-out forwards;
}


/* IMAGE ANIMATION */
@keyframes imageAppear {
    from {
        opacity: 0;
        transform: translateX(80px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

/* initial state */
.images {
    opacity: 0;
    transform: translateX(80px) scale(0.95);
}

/* visible state */
.images.show {
    animation: imageAppear 1s ease-out forwards;
}






  /* RESPONSIVE */
 
  @media (max-width: 900px) {
    .section {
      flex-direction: column;
      height: auto;
      padding: 100px 40px;
    }
  
    .content,
    .images {
      width: 100%;
      left: 20px;
    }
  
    .images {
      margin-top: 60px;
      justify-content: center;
      padding-left: 20px;
      padding-right: 0px;
    }
  
    .image-front {
      right: 35%;
      
      
    }
  }

  /*---------------services------------------*/

.services{
    background: #f7f7f7;
    width: 100%;
    margin: auto;
    text-align: center;
    padding-top: 50px;
    padding-bottom: 20px;
    
    
}

.back-col{
    background: #f7f7f7;
    width: 85%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
    
}
  
h1{
    font-family: "Brygada 1918", sans-serif;
    color: #3c3b89;
    font-size: 30px;
    font-weight: 700;


}

p{  
    font-family: "Poppins", sans-serif;
    color: #777;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    padding-bottom: 10px;
    padding-top: 20px;
}

.services h1{
    text-align: center;
}

.row{
    margin-top: 2%;
    display: flex;
    justify-content: space-between;
    overflow: visible;
    
}

.service-col{
    background: #f7f7f7;
    padding: 20px 20px;
    border-radius: 16px;
    text-align: left;
    transition: 0.5s;
    position: relative;
    
    
    
}

.service-col:hover{
    box-shadow: 0 0 20px 0px rgba(0,0,0,0.2);
    z-index: 10;
    
}




/* circular icon container */
.service-icon{
    width: 63px;
    height: 63px;
    margin-bottom: 7px; /* center + space below */
    border-radius: 50%;
    background: #f1794539;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* icon image */
.service-icon img{
    width: 46px;
    height: 46px;
    object-fit: contain;
}

.service-col p{
    text-align: left;

}

.service-col h3{
    text-align: left;
    padding-left: 0px;
    font-size: 17px;
    font-family: "Brygada 1918", sans-serif;
    color: #3c3b89;
    padding-bottom: 10px;
    padding-top: 15px;    
}

.read-more-btnn {
    display: flex;
    margin-top: 30px;
    margin-left: 20px;
    margin-bottom: 20px;
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    color: #fff;
    text-decoration: none;
    padding: 10px 22px;
    border: 1px solid #FF6D2D;
    border-radius: 30px;
    transition: all 0.3s ease;
    background: #FF6D2D;
    text-align: left;
    width: fit-content; 
    
}





.read-more-btnn:hover {
    background-color: #3c3b893c;
    color: #ffffff;
    border: #3c3b893c;
}

/* SERVICES SECTION ANIMATIONS */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section heading & text */
.back-col h1,
.back-col > p {
    opacity: 0;
    transform: translateY(40px);
}

.back-col.show h1,
.back-col.show > p {
    animation: fadeUp 0.8s ease-out forwards;
}

/* Service cards */
.service-col {
    opacity: 0;
    transform: translateY(60px);
}

.service-col.show {
    animation: fadeUp 0.8s ease-out forwards;
}

/* Icon pop effect */
.service-icon img {
    opacity: 0;
    transform: scale(0.7);
}

.service-col.show .service-icon img {
    transition: 0.5s ease;
    opacity: 1;
    transform: scale(1);
}

/* Read more button animation */
.read-more-btnn {
    
    opacity: 0;
    transform: translateY(40px);
}

.read-more-btnn.show {
    animation: fadeUp 0.8s ease-out forwards;
}
@media(max-width: 700px){
    .row{
        flex-direction: column;
    }
}

/*-----------------image slide ani--------------------*/




.Facilities{
    background: #000000;
    padding: 80px 0;
}

/* SECTION HEADER */
.section-header{
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
    
}

.section-header h2{
    font-size: 42px;
    margin-bottom: 10px;
    font-weight: 700;
    color: #ffffff;
    font-family: "Brygada 1918", sans-serif;
}

.section-header p{
    font-size: 14px;
    line-height: 1.7;
    color: #d6d2d2;
    font-family: inter, sans-serif;
}


.container{
    position: relative;
    width: 100%;
    max-width: 1520px;
    height: 70vh;
    min-height: 600px;
    height: auto;
    margin: 10px auto;

    top: 0%;
    left: 0%;
    
    margin: 10px auto 10px; /* centers horizontally */
    background: #f5f5f5;
    box-shadow: 0 30px 50px #dbdbdb00;
    
}

.container .slide .item{
    width: 200px;
    height: 300px;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    border-radius: 20px;
    box-shadow: 0 30px 50px #50505000;
    background-position: 50% 50%;
    background-size: cover;
    display: inline-block;
    transition: 0.5s;
}

.slide .item:nth-child(1),
.slide .item:nth-child(2){
    top: 0px;
    left: 0;
    transform: translate(0, 0);
    border-radius: 0;
    width: 100%;
    height: 100%;
}

.slide .item:nth-child(3){
    left: 50%;
}
.slide .item:nth-child(4){
    left: calc(50% + 220px);
}
.slide .item:nth-child(5){
    left: calc(50% + 440px);
}



/* here n = 0, 1, 2, 3,... */
.slide .item:nth-child(n + 6){
    left: calc(42% + 730px);
    width: 10%;
    height: 50%;
    opacity: 0;
}



.item .content{
    position: absolute;
    top: 50%;
    
    left: 100px;
    width: 300px;
    text-align: left;
    color: #ffffff;
    transform: translate(0, -50%);
    font-family: "Brygada 1918", sans-serif;
    display: none;
}



.slide .item:nth-child(2) .content{
    display: block;
}


.content .name{
    font-size: 40px;
    text-transform: uppercase;
    font-weight: bold;
    opacity: 0;
    animation: animate 1s ease-in-out 1 forwards;
}

.content .des{
    margin-top: 10px;
    margin-bottom: 20px;
    opacity: 0;
    animation: animate 1s ease-in-out 0.3s 1 forwards;
}

.content button{
    color: #fff;
    background: transparent;
    
    padding: 10px 20px;
    border: 1px solid #fff;
    border-radius: 8px;
    cursor: pointer;
    opacity: 0;
    animation: animate 1s ease-in-out 0.6s 1 forwards;
}

.content button:hover{
    background: #ffffff;
    color: #000000;
}



@keyframes animate {
    from{
        opacity: 0;
        transform: translate(0, 100px);
        filter: blur(33px);
    }

    to{
        opacity: 1;
        transform: translate(0);
        filter: blur(0);
    }
}


.button{
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 20px;
}

.button button{
    width: 55px;
    height: 35px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    margin: 0 5px;
    border: 1px solid #ffffff;
    transition: 0.3s;
    background: transparent;
    color: #fff;
}

.button button:hover{
    background: #ffffff7e;
    color: #000000;
}


@media (max-width: 768px) {

    .container{
        height: 80vh;
    }

    .container .slide .item{
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 0;
    }

    .slide .item:nth-child(n+3){
        display: none;
    }

    .item .content{
        left: 20px;
        width: calc(100% - 40px);
    }

    .content .name{
        font-size: 26px;
    }

    .content .des{
        font-size: 13px;
    }

    .button{
        bottom: 15px;
    }
}



/*----------Our Commitment----------------*/


.Our-Commitment {
    background: #f7f7f7;

}

.Our-Commitment {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 100px;
    overflow: hidden;
  }

  /* LEFT TEXT */
  .content {
    width: 40%;
  }

  .content h1 {
    color: #3c3b89;
    font-family: "Brygada 1918", sans-serif;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
  }

  .content p {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 5px;
    color: #777;
  }


  .read-more-btn {
    display: inline-block;
    margin-top: 10px;
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    color: #fff;
    text-decoration: none;
    padding: 10px 22px;
    border: 1px solid #FF6D2D;
    border-radius: 30px;
    transition: all 0.3s ease;
    background: #FF6D2D;
}

/* hover effect */
.read-more-btn:hover {
    background-color: #3c3b893c;
    color: #ffffff;
    border: #3c3b893c;
}




  /* RIGHT IMAGES */
/* RIGHT IMAGE */
.imagess {
    width: 50%;
    display: flex;
    justify-content: flex-end;
    opacity: 0;
    transform: translateX(80px) scale(0.95);
    transition: all 1s ease-out; /* smooth animation */
}

.images-back {
    width: 100%;
    height: 450px;
    border-radius: 2px;
    overflow: hidden;
}

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

/* Visible state */
.imagess.show {
    opacity: 1;
    transform: translateX(0) scale(1);
}

@media (max-width: 768px) {

    .Our-Commitment {
      height: auto;
      flex-direction: column;
      padding: 60px 20px;
      text-align: left;
    }
  
    .content {
      width: 100%;
      margin-bottom: 30px;
    }
  
    .content h1 {
      font-size: 32px;
    }
  
    .content p {
      font-size: 14px;
    }
  
    .imagess {
      width: 100%;
      justify-content: center;
      transform: translateY(40px);
    }
  
    .images-back {
      height: 280px;
    }
  
  }
  
/*------------- Testimonials --------------------*/

.testimonials {
    width: 80%;
    margin: auto;
    padding: 100px 0;
    text-align: center;
    font-family: "Brygada 1918", sans-serif;
    color: #3c3b89;
    
  }
  
  .testimonials h3 {
    font-size: 32px;
    margin-bottom: 10px;
    color: #000000;
    
  }
  
  .testimonials p {
    color: #777;
    margin-bottom: 2px;
    
  }
  
  /* Row layout */
  .testimonials .row {
    display: flex;
    gap: 30px;
    justify-content: center;
    text-align: left;
    
  }
  
  
  /* Testimonial card */
  .testimonial-col {
    flex: 0 0 calc(33.333% - 20px);
    border-radius: 12px;
    background: #fff7f2;
    padding: 15px;
    display: flex;
    gap: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  
  .testimonial-col:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  }
  
  .testimonial-col img {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .testimonial-col h3 {
    margin-top: 10px;
    font-size: 16px;
  }
  
  .testimonial-col .fa {
    color: #f47c4d; /* matches orange theme */
  }

  .stars i {
    color: #f47c4d;
    font-size: 14px;
    margin-right: 2px;
  }

  .testimonial-col {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  
  .testimonial-col.show {
    opacity: 1;
    transform: translateY(0);
  }
  
  

  @media (max-width: 700px) {
    .testimonial-col {
      margin-right: 15px;
      margin-left: 0;
    }
  }
  
  


/*-------------- Call to Action -----------------*/

.cta {
    margin: 0 auto;
    width: 100%;
    background: linear-gradient(135deg, #FF6D2D, #ff8754);
    padding: 38px 8%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cta h1 {
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
    max-width: 600px;
}

/* Button reuse – matches your theme */
.cta .read-more-btn {
    background: #ffffff00;
    color: #ffffff;
    border: 1px solid #fff;
    padding: 10px 28px;
    font-weight: 600;
}

.cta .read-more-btn:hover {
    background: rgba(255,255,255,0.9);
    color: #f44336;
    transform: translateY(-2px);
}

/* Mobile */
@media (max-width: 768px) {
    .cta {
        flex-direction: column;
        text-align: center;
        padding: 50px 6%;
    }

    .cta h1 {
        font-size: 24px;
    }
}

/*--------------- Footer ---------------------*/

.footer {
    background: #f5f5f5;
    padding: 80px 8% 20px;
    font-family: "Poppins", sans-serif;
}


.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
}

/* Columns */
.footer-col h3 {
    font-family: "Brygada 1918", sans-serif;
    font-size: 20px;
    margin-bottom: 20px;
    color: #000;
}

.footer-col p {
    font-size: 14px;
    color: #777;
    line-height: 1.7;
    margin-bottom: 10px;
    margin-top: 0;
}



/* Links */
.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #777;
    font-size: 14px;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #FF6D2D;
}

/* Social icons */
.footer-icons {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.footer-icons i {
    width: 36px;
    height: 36px;
    background: #777;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}

.footer-icons i:hover {
    background: #FF6D2D;
}

/* Bottom line */
.footer-bottom {
    border-top: 1px solid #ddd;
    margin-top: 50px;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #777;
}

.footer-bottom span {
    color: #FF6D2D;
}

/* Responsive */
@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}