*{
    margin: 0;
    padding:0;
    font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
}
.header{
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba( 17,88,88,0.4),rgba( 17,88,88,0.4)),url(images/background.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}
nav{
    display:flex;
    padding:2% 6%;
    justify-content: space-between;
    align-items: center;
    
    
    
}
nav img{
    width:95px;
    
}
.nav-links{
    flex:1;
    text-align: right;
    
}
.nav-links ul li{
    list-style: none;
    display:inline-block;
    padding:8px 12px;
    position: relative;
}
.nav-links ul li a{
    text-decoration: none;
    font-size: 14px;
    color :white;


}
.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%;

}
ul li ul.dropdown li{
    display: block;
}
ul li ul.dropdown{
    width: 100%;
    position: absolute;
    z-index: 999;
    display: none;
}
ul li:hover ul.dropdown {
    display:block;
    
}

.text-box{
    width:90%;
    color:#fff;
    position: absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    text-align:center;
} 
.text-box h1{
    font-size: 62px;
}
.text-box p{
    margin:10px 0 40px; 
    font-size:14px;
    color:#fff;
}
.hero-btn{
    display:inline-block;
    text-decoration:none;
    color:#fff;
    border:1px solid #fff;
    padding:12px 34px;
    background:transparent;
    position: relative;
    cursor: pointer;
}
.hero-btn:hover{
    border:1px solid #115858;
    background:#115858;
    transition:1s;
}
/* -------- Hero / Landing text animations -------- */

.text-box {
    overflow: hidden; /* avoid scrollbars during entrance animations */
}

/* Main heading animation */
.text-box h1 {
    font-size: 62px;
    opacity: 0;
    transform: translateY(25px);
    animation: heroFadeUp 0.10s ease-out 0.5s forwards;
}

/* Subtitle / paragraph animation */
.text-box p {
    margin:10px 0 40px;
    font-size:14px;
    color:#fff;
    opacity: 0;
    transform: translateY(25px);
    animation: heroFadeUp 0.15s ease-out 0.10s forwards;
}

/* Button animation */
.hero-btn {
    display:inline-block;
    text-decoration:none;
    color:#fff;
    border:1px solid #fff;
    padding:12px 34px;
    background:transparent;
    position: relative;
    cursor: pointer;
    
    opacity: 0;
    transform: translateY(25px) scale(0.97);
    animation: heroFadeUp 0.8s ease-out 0.5s forwards;
    transition: box-shadow 0.3s ease, transform 0.25s ease, background 0.3s ease, border-color 0.3s ease;
}

.hero-btn:hover{
    border:1px solid #115858;
    background:#115858;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    transform: translateY(-2px) scale(1.01);
}

/* Keyframes for hero text */
@keyframes heroFadeUp {
    0% {
        opacity: 0;
        transform: translateY(25px) scale(0.97);
    }
    60% {
        opacity: 1;
        transform: translateY(0) scale(1.01);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Optional: typewriter effect for a short heading or subheading */
.typewriter {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    border-right: 2px solid #fff;
    animation: typing 3s steps(30, end), blink 0.7s step-end infinite;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink {
    0%, 100% { border-color: transparent; }
    50% { border-color: #fff; }
}

/* Mobile tweak so big text doesn’t overflow */
@media(max-width:700px){
    .text-box h1{
       font-size: 26px; 
    }
}
nav .fa{
    display: none;
}
/*--------------------scrolling text--------*/
.scrolling-text {
padding-top: 30px;
width: 100%;
overflow: hidden;
white-space: nowrap;
box-sizing: border-box;
animation: scroll 35s linear infinite;
color:#fff;
}
.scrolling-img{
    width: 80%;
    margin:auto;
}

@keyframes scroll {
 0% { transform: translateX(100%); }
 100% { transform: translateX(-100%); }
}

@media(max-width:700px){
    .text-box h1{
       font-size: 20px; 
    }
    .nav-links ul li{
        display:block;
    }
    .nav-links{
        position: fixed;
        background: #ff0000;
        height: 100vh;
        width: 200px;
        top:0;
        right:-200px;
        text-align:left;
        z-index:999;
        transition: 1s;
    }
    nav .fa{
        display:block ;
        color:#fff;
        margin:10px;
        font-size: 22px;
        cursor: pointer;
    }
    .nav-links ul {
      padding:20px;
    }
    .nav-links ul li ul.dropdown{
        display: none;
    }
}
/*------------------------featured services-----------------------*/

.F-service{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}
h1{
    font-size: 36px;
    font-weight: 600;
}
p{
    color:#115858;
    font-size:16px ;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;

}
.row{
    margin-top: 5%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}
.feature-col{
    flex-basis:31%;
    background: #fff3f3;
    border-radius:none;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: 0.5s;
    cursor: pointer;
}
.feature-col .fa{
    font-size: 28px;
    color: #f44336;
}
.feature-col p{
    color:#115858;
}
.feature-col h5{
    text-transform: capitalize;
}
.feature-col p:hover {
    color:#ccc;
}
h3{
    text-align: center;
    font-weight: 600;
    margin: 10px 0;
}
.feature-col:hover{
    box-shadow: 0 0 20px 0px rgba(0,0,0,0.4);
    background: rgba( 17,88,88,0.4);
    color: #ccc;
}
.feature-col a{
    text-decoration: none;
}

@media(max-width:700px){
    .row{
        flex-direction: column;
    }
}
/*-----------------------------Other Services Include--------------*/

.others{
    width: 80%;
    margin: auto;
    padding-top: 50px;
    text-align: center;
}
.others .row{
    align-items: stretch;
}
.other-col{
    flex-basis: 32%;
    border-radius: none;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}
.other-col img{
    width: 100%;
    display: block;
}
.layer{

    background: transparent;
    height:100%;
    width:100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.5s;
}
.layer:hover{
    background: rgba( 17,88,88,0.4);
}
.layer h3{
    width: 100%;
    font-weight: 500;
    color:#fff;
    font-size: 16px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    transition: 0.5s;
}
.layer:hover h3{
    bottom: 49%;
    opacity: 1;
}
/*-----------------------call to action------------------*/

.cta{
    margin: 100px auto;
    width: 80%;
    background-image: linear-gradient(rgba( 17,88,88,0.7),rgba( 17,88,88,0.7)),url(images/bck.jpeg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: none;
    text-align: center;
    padding: 100px 0;
}
.cta h1{
    color:#fff;
    margin-bottom: 40px;
    padding: 0;

}
@media(max-width: 700px){
    .cta h1{
        font-size: 24px;
    }
}
/*---------------------footer--------------------*/

.footer{
    width: 100%;
    text-align: center;
    padding: 30px 0;
    background-color:#115858 ;
}
.footer h4{
    margin-bottom: 25px ;
    margin-top: 20px;
    font-weight: 600;
}
.footer p{
    color: #fff;
}
.icons .fa{
    color:#f44336;
    margin: 0 13px;
    cursor:pointer;
    padding: 18px 0;
}

/*--------------------------about us page-------------------------*/

.sub-header{
    height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba( 17,88,88,0.4),rgba( 17,88,88,0.4)),url(images/backbn.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    text-align: center;
    color: #fff;
}
.sub-header h1{
   margin-top: 100px;
   

}
.about-us{
    width: 80%;
    margin: auto;
    padding-top: 80px;
    padding-bottom: 50px;
}
.about-col{
    flex-basis: 48%;
    padding: 30px 2px;
}
.about-col img{
width: 100%;

}
.about-col h1{
    padding-top:0px;
    color:#115858;
    
}
.about-col p{
    padding: 15px 5px 5px 25px;
    font-size: 16px;
    color: #070707;
    line-height: 1.5;
    box-shadow: 0 0 20px 0 rgba(0,0,0,0.2);

}
.red-btn{
    border: 1px solid #f44336;
    background: transparent;
    color: #f44336;
    margin-top: 10px;

}
.red-btn:hover{
    color:#ffffff;
}
.about-M h2{
    color: #115858;
}
.about-M p{
    font-size: 18px;
    text-align: left;
    color: #000000;
}
/*------------------------------our team-----------------------------*/
.ourteam{
    width:80%;
    margin: auto;
    padding-top: 50px;
    text-align: left;
}
.ourteam p{
 color: #070707;
 font-size: 18px;
}
.team{
    display: flex;
    align-items: left;
    flex-direction: column;
}
.ourteam-left h3{
 color: #115858;
 text-align: left;
}
.ourteam-left p{
    line-height: 1.5;
    font-size: 16px;
    color: #070707;
    box-shadow: 0 0 20px 0px rgba(0,0,0,0.2);

}
.ourteam-left img{
    border-radius: 0px;
    padding-top: 10px;
}
.fm-tm img{
width: 100%;
margin: auto;
padding: 10px;
align-items: center;



}

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

.our-service{
    width: 80%;
    margin:auto;
    text-align: center;
    padding-top: 100px;
}
.services{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
    margin-top: 10px;
    margin-bottom: 20px;
   
}



.service-col{
    box-shadow: 0 0 20px 0px rgba(0,0,0,0.2);
    background-color: #115858;
    border-radius: 10px;
    transition: 0.3s;
    
}
.service-col:hover{
    transform: translateY(-10px);
}

.service-col a{
    text-decoration: none;
    color: #ccc;
    font-size: 14px;
}
.service-col h3{
    font-size: 18px;
    color: #ccc;
}
.service-col p{
    color: #fff;
    font-size: 16px;

}
.service-col .fa{
    font-size: 24px;
    color: #f44336;
}
@media(max-width:700px){
    .services{
        grid-template-columns: 1fr;
    }
}




.content-service{
    width: 80%;
    margin: auto;
    padding: 60px 0;
}
.content-left{
    flex-basis: 65%;
}
.content-left img{
    width: 100%;
}
.content-left h2{
    color:#115858;
    font-weight: 600;
    margin: 30px 0;
}
.content-left p{
    color :#070707;
    line-height: 2;
    font-size:16px ;
    box-shadow: 0 0 20px 0px rgba(0,0,0,0.2);
}
.content-left {
    color :#070707;
    line-height: 2;
    font-size:16px ;
}
/*-------------------------client------------------------*/
.content-up .fa{
    font-size: 24px;
    margin-right: 10px;
    color: #115858;
}
.content-up div{
    padding: 10px;
}
.content-up p{
    box-shadow: 0 0 20px 0 rgba(0,0,0,0.2);
    
}
.modify p{
    font-size: 16px;
}
.sa-vice{
    color :#070707;
    line-height: 2;
    font-size:16px ; 
}
.content-right{
    flex-basis: 32%;
}
.content-right h3{
    background: #115858;
    font-size: 16px;
    color: #fff;
    padding: 7px 0;
    margin-bottom: 20px;
}
.content-right div{
    display:flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px;
}

.location{
    width: 80%;
    margin: auto;
    padding: 80px 0;

}
.location iframe {
    width: 100%;
}



/*----------- FAQ Section Styles----------- */
.faq {
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
    padding-bottom: 50px;
}

.faq h1 {
    font-size: 36px;
    font-weight: 600;
    color:#000000;
    margin-bottom: 20px;
}

.faq p {
    color: #000000;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
    margin-bottom: 40px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-item:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-item.active .faq-question {
    background: #007bff;
    color: white;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.faq-question h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    color: #333;
    flex: 1;
    padding-right: 20px;
}

.faq-item.active .faq-question h3 {
    color: white;
}

.faq-question i {
    font-size: 16px;
    color: #666;
    transition: all 0.3s ease;
    width: 20px;
    text-align: center;
}

.faq-item.active .faq-question i {
    color: white;
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: white;
}

.faq-answer p {
    padding: 20px 25px;
    margin: 0;
    color: #555;
    font-size: 15px;
    line-height: 1.6;
    text-align: left;
}

/* Active state for FAQ items */
.faq-item.active .faq-answer {
    border-top: 1px solid #e0e0e0;
}

/* -------Responsive Design for FAQ -------------*/
@media(max-width: 700px) {
    .faq {
        width: 90%;
        padding-top: 50px;
    }
    
    .faq h1 {
        font-size: 28px;
        color:#000000;
    }
    
    .faq-question {
        padding: 15px 20px;
    }
    
    .faq-question h3 {
        font-size: 16px;
        padding-right: 15px;
    }
    
    .faq-answer p {
        padding: 15px 20px;
        font-size: 14px;
    }
    
    .faq-container {
        width: 100%;
    }
}

@media(max-width: 500px) {
    .faq {
        width: 95%;
    }
    
    .faq-question {
        padding: 12px 15px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .faq-question h3 {
        padding-right: 0;
        font-size: 15px;
    }
    
    .faq-question i {
        align-self: flex-end;
        margin-top: -25px;
    }
    
    .faq-answer p {
        padding: 12px 15px;
        font-size: 13px;
    }
}

/*---------------- Animation for smooth transitions-------------- */
.faq-item {
    animation: fadeInUp 0.6s ease forwards;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }
.faq-item:nth-child(6) { animation-delay: 0.6s; }
.faq-item:nth-child(7) { animation-delay: 0.7s; }
.faq-item:nth-child(8) { animation-delay: 0.8s; }

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

/* Focus states for accessibility */
.faq-question:focus {
    outline: 2px solid #007bff;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .faq-item {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ccc;
    }
    
    .faq-answer {
        max-height: none !important;
    }
    
    .faq-question i {
        display: none;
    }
}






.contact-us{
    width:80%;
    margin:auto;
}
.Contact-col{
    flex-basis: 48%;
    margin-bottom: 36px;
}
.Contact-col div{
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}
.Contact-col div .fa{
    font-size: 28px;
    color: #115858;
    margin: 10px;
    margin-right: 30px;
}
.Contact-col div p{
    padding: 0px;
}
.Contact-col div h5{
    font-size: 20px;
    margin-bottom: 5px;
    color: #555;
    font-weight: 400;

}
.Contact-col input, .Contact-col textarea{
    width: 100%;
    padding:15px;
    margin-bottom: 17px;
    outline: none;
    border: 1px solid #ccc;
}




/* Fade-up animation for headings & paragraphs */
.animate-fade-up {
  opacity: 0;
  transform: translateY(15px);
  animation: fadeUp 0.8s ease-out forwards;
}

/* Simple stagger delays */
.animate-delay-1 {
  animation-delay: 0.4s;
}
.animate-delay-2 {
  animation-delay: 0.6s;
}
.animate-delay-3 {
  animation-delay: 0.8s;
}

/* Icon pop animation */
.icon-pop {
  opacity: 0;
  transform: scale(0.8);
  animation:iconPop 1.0s ease-out forwards;
}
/*.in-view.icon-pop{
    animation:iconPop 0.7s ease-out forwards;
}

/* Keyframes */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes iconPop {
  0% {
    opacity: 0;
    transform: scale(0.97);
  }
  60% {
    opacity: 1;
    transform: scale(1.01);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Optional hover refinement for service icons */
.service-col i.fa {
  transition: transform 0.3s ease, color 0.3s ease;
}

.service-col:hover i.fa {
  transform: scale(1.05) translateY(-2px);
  color: #f4b400; /* adjust to your brand color */
}


