@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    scroll-behavior: smooth;
    font-family: 'Poppins', sans-serif;
}
:root{
    --bg-color:#1f1d33;
    --second-bg-color:#1f1d33;
    --text-color:#ededed;
    --main-color:#00abf0;
}
html{
    font-size: 62.5%;
    overflow-x:hidden;


}
body{
  background:var(--bg-color);  
  color: var(--text-color);
}
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 9%;
    background: transparent;
    transition: .3s;
}
.header.sticky {
    background: var(--bg-color);
}
.logo {
    font-size: 2.5rem;
    color: var(--text-color);
    font-weight: 600;
}
.navbar{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    padding: 10px 0;
}
.navbar a {
font-size: 1.7rem;
color: var(--text-color);
font-weight: 500;
margin-left: 3.5rem;
transition: 0.3s ;
}
.navbar a:hover,
.navbar a.active
{
color: var(--main-color);
}
#menu-icon{
    position: relative;
    font-size: 3.6rem;
    color: var(--text-color);
    cursor: pointer;
    display: none;


}
section{
  
    min-height: 100vh;
    padding: 10rem 9% 2rem;
}
.home {
display: flex;
align-items: center;
padding: 0 9%;
background: url('../images/k_merged.png') no-repeat;
background-size: cover;
background-position:center ; 

}
.home-content{
    max-width: 60rem;
    z-index: 99;
}
.home-content h1{
    position: relative;
    display: inline-block;
   font-size: 5.6rem; 
   font-weight: 700;
   line-height: 1.3;
}
.home-content h1 span{
    color: var(--text-color);
}
.home-content .text-animate{
    position: relative;
    width: 32.8rem;
}
.home-content .text-animate h3{
    font-size: 3.2rem;
    font-weight: 700;
     color: transparent;
     -webkit-text-stroke: .7px var(--main-color);
    background-image:linear-gradient(var(--main-color),var(--main-color)) ;
     background-repeat: no-repeat;
     -webkit-background-clip: text;
     background-position: -33rem 0 ;
    
}

.home.show-animate .home-content.text-animate h3{
    animation: homeBgText 6s linear infinite;
    animation-delay: 2s;
}
.home-content .text-animate h3::before{
content:'';
position: absolute;
top: 0;
left: 0;
width: 0;
height: 100%;
border-right: 2px solid var(--main-color);
z-index: -1;



}
.home.show-animate .home-content .text-animate h3::before{
    animation: homeCursorText 6s linear infinite;
animation-delay: 2s;

}
.home-content p {
    position: relative;
font-size: 1.6rem;
margin: 2rem 0 4rem;
}
.btn-box{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 34.5rem;
    height: 5rem;
}
.btn-box .btn {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 15rem;
    height: 100%;
    background: var(--main-color);
    border:.2rem soild var(--main-color);
    border-radius: .8rem;
    font-size: 1.8rem;
    font-weight: 600;
    text-decoration: none; 
    
    color: var(--bg-color);
    letter-spacing: 1rem;
    z-index: 1;
    overflow: hidden;
    transition: 0.5s;

}
.btn-box .btn:hover{
    
    color: var(--main-color);
}
.btn-box .btn:nth-child(2){
    background: transparent;
    color: var(--main-color);
}
.btn-box .btn:nth-child(2):hover{
    color: var(--bg-color);
}
.btn-box .btn:nth-child(2)::before{
    background: var(--main-color) ;
}
.btn-box .btn::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--bg-color);
    z-index: -1;
    transition: .5s;



}
.btn-box .btn:hover:before{
    width: 100%;
}
.home-imgHover{
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    background: transparent;
    
    transition: 3s;
}
.home-imgHover:hover{
    background: var(--bg-color);
    opacity: .8;
}
.about{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 2rem;
    background:var(--second-bg-color);
    padding-bottom: 6rem;
}
.header{
    font-size: 5rem;
    margin-bottom: 3rem;
    text-align: center;
}
span{
    color: var(--main-color);
}
.about-img{
    position: relative;
    width: 25rem;
    height: 25rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.about-img img{
    width: 90%;
    border-radius: 50%;
    border: 2rem solid var(--main-color);
}
.about-img .circle-spin{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%)rotate(0);
    width: 100%;
    height: 100%;
    border-radius: 0;
    border-top: .2rem solid var(--second-bg-color);
    border-bottom: .2rem solid var(--second-bg-color);
    border-left: .2rem solid var(--main-color);
    border-right: .2rem solid var(--main-color);

}
.about-content{
    text-align: center;
}
.about-content h3{
    position: relative;
    display: inline-block;
    font-size: 2.6rem;
}
.about-content p{
    position: relative;
    font-size: 1.6rem;
    margin: 2rem 0 3rem;
}
.btn-box.btns{
    display: inline-block;
    width: 15rem;
}
.btn-box.btns a::before{
    background: var(--second-bg-color);
}
.education{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 4rem 0;
}

.education .education-row{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    width: 80%;
    gap: 2rem;
}
.education-row .education-column{
    width: 48%;
    
}
.education-column .title{
    position: relative;
    display: inline-block;
    font-size: 2.5rem;
    margin: 0 0 1.5rem 2rem;
}
.education-column .education-box{
    position: relative;
   border-left: .2rem soild var(--main-color);
   
}
.education-box.education-content{
  position: relative;
  padding-left: 2rem;
}
.education-box.education-content::before{
    content: '';
    position: absolute;
    top: 0;
    left: -1.1rem;
    width: 2rem;
    height: 2rem;
    background: var(--main-color);
    border-radius: 50%;
}
.education-content .content{
    position: relative;
    padding: 1.5rem;
    border: .2rem solid var(--main-color);
    border-radius: .6rem;
    margin-bottom: 2rem;
    overflow: hidden;
}
.education-content .content::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--second-bg-color);
    z-index: -1;
    transition: .5s;
}
.education-content .content:hover::before{
    width: 100%;
}

.education-content .content .year{
    font-size: 1.6rem;
    color: var(--main-color);
}
.education-content .content .year i{
    padding-right: .5rem;
}
.education-content .content h3{
    font-size: 2rem;
    color: var(--text-color);
    margin: 0.5rem 0;
}
.education-content .content p{
    font-size: 1.4rem;
    color: var(--text-color);
    line-height: 1.5;
}
.skills{
 min-height: auto;
 padding-bottom: 7rem;
 background: var(--second-bg-color);   
}
.skills .skills-row{
    display: flex;
    flex-wrap: wrap;
    gap: 5rem;

}
.skills-row .skills-column{
    flex: 1 1 40rem;
}
.skills-column .title{
    font-size: 2.5rem;
    margin: 0 0 1.5rem;
}
.skills-box .skills-content{
    position: relative;
    border: .2rem solid var(--main-color);
    border-radius: .6rem;
    padding: .5rem 1.5rem;
}
.skills-content .progress{
    padding: 1rem 0;
}
.skills-content .progress h3{
    font-size: 1.7rem;
    display: flex;
    justify-content: space-between;
}
.skills-content .progress h3 span{
    color: var(--text-color);
}
.skills-content .progres .bar{
    height: 2.5rem;
    border-radius: .6rem;
    border: .2rem solid var(--main-color);
    padding: .5rem;
    margin: 1rem0;
}
.skills-content .progres .bar span{
    display: block;
    height: 100%;
    border-radius: .3rem;
    background: var(--main-color);

}
.skills-column:nth-child(1) .skills-content .progress:nth-child(1) .bar span{
    width: 90%;
}
.timeline {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    width: 80%;
    margin: auto;
    padding: 4rem 0;
    position: relative;
}

.timeline-column {
    width: 48%;
}

.timeline-column h2 {
    font-size: 2.5rem;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 2rem;
}

.timeline-box {
    position: relative;
    padding: 2rem;
    border: 1px solid var(--main-color);
    border-radius: 0;
    background: var(--second-bg-color);
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    margin-bottom: 2rem;
    width: 100%;
}

.timeline-box::before {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    background: var(--main-color);
    border-radius: 0;
    top: 20px;
    left: -25px;
}

.timeline-column:nth-child(2) .timeline-box::before {
    left: auto;
    right: -25px;
}

.timeline-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
}

.timeline-content .year {
    font-size: 1.6rem;
    color: var(--main-color);
}

.timeline-content h3 {
    font-size: 2rem;
    color: var(--text-color);
    margin: 0.5rem 0;
}

.timeline-content p {
    font-size: 1.4rem;
    color: var(--text-color);
    line-height: 1.5;
}





.swiper {
    width: 80%;
    height: 300px;
    margin: auto;
    background-color: #1d3557;
    padding: 20px;
    border-radius: 0;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    border-radius: 0;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.swiper-slide img:hover {
    transform: scale(1.05);
}

/* Lightbox Style */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.lightbox img {
    max-width: 90%;
    max-height: 80%;
    border-radius: 10px;
}

.close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 30px;
    color: #1d3557;
    cursor: pointer;
    font-weight: bold;
}

/* قسم المقالات */
.articles {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.article-card {
    width: 300px;
    background: #1d3557;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: left;
}

.article-card img {
    width: 100%;
    border-radius: 10px;
}

.article-card h3 {
    color: #00eeff;
}

.read-more {
    color: blue;
    font-weight: bold;
    text-decoration: none;
    display: block;
    margin-top: 10px;
}

.read-more:hover {
    text-decoration: underline;
}

.load-more {
    background: #00eeff;
    color: #1d3557;
    padding: 10px 20px;
    border: none;
    border-radius: 0;
    margin-top: 20px;
    cursor: pointer;
    font-size: 16px;
}

.load-more:hover {
    background: #00eeff;
}
.contact{
    min-height: auto;
    padding-bottom: 7rem;
}
.contact h2{
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}
.contact form {

    max-width: 70rem;
    margin: 0 auto;
    text-align: center;
}
.contact form .input-box{
position: relative;
display: flex;
justify-content: space-between;
flex-wrap: wrap;

}
.contact form .input-box .input-field{
    position: relative;
    width: 49%;
    margin: .8rem 0;
}
.contact form .input-box .input-field input,
.contact form .textarea-field textarea{
    width: 100%;
    height: 100%;
    padding: 1.5rem;
    font-size: 1.6rem;
    color: var(--text-color);
    background: transparent;
    border-radius: .6rem;
    border: .2rem solid var(--main-color);
}
.contact form .input-box .input-field input::placeholder,
.contact form .textarea-field textarea::placeholder{
    color: var(--text-color);
}
.contact form .error-text {
    font-size: 14.5px;
    color: #00eeff;
    text-align: left;
    margin: -5px 0 10px;
    display: none;
}
.contact form .textarea-field .error-text {
    margin-top: -10px;
}
.contact form .focus{
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--second-bg-color);
    border-radius: .6rem;
    z-index: -1;
    transition: .5s;

}
.contact form .input-box .input-field input:focus~.focus,
.contact form .input-box .input-field input:valid~.focus,
.contact form .textarea-field textarea:focus~.focus,
.contact form .textarea-field textarea:valid~.focus
{
 width: 100;
}
.contact form .textarea-field{
    position: relative;
    margin: .8rem 0 2.7rem;
    display: flex;

}
.contact form .textarea-field textarea{
    resize: none;

}
.contact form .btn-box.btns .btn{
    padding: 12px 32px;
    background: #00abf0; /* Blue color */
    border: none;
    outline: none;
    border-radius: 0;
    box-shadow: 0 0 10px #00abf0;
    font-size: 16px;
    color: white; /* White text */
    letter-spacing: 1px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
    transition: .5s;
}
.contact form .btn-box.btns .btn:hover {
    box-shadow: none;
}
footer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 2rem 9%;
    background: var(--second-bg-color);
}

.footer-text p {
    font-size: 1.6rem;
    text-align: center;
    width: 100%;
}

.footer-iconTop {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 10px;
}
.animate{
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-color);
    z-index: 98;
}
.animate.home-img{
    width: 50%;
}
.logo .animate, 
.navbar .animate,
 #menu-icon .animate ,
  .home.show-animate .animate{
animation:showRight 1s ease forwards;
animation-delay: calc(.3s * var(--i));
}
.animate .scroll{
    transition: 1s ease;
    transition-delay: calc(.3s / var(--i));
    animation: none;
}
.education .education-box .animate.scroll{
    width: 105%;
}
.about.show-animate .animate.scroll,
.education.show-animate  .animate.scroll,
.contact.show-animate .animate.scroll
{
    transition-delay: calc(.3s *var(--i));
    width: 0;
}
.heading {
    position: relative;
    font-size: 3rem;
    text-align: center;
    width: 100%;
}
.education .heading {
    display: block;
    text-align: center;
}
@media (max-width: 1200px) {
    html {
        font-size: 55%;
    }
}
@media (max-width:991px){
    .header{
        padding: 2rem 4%;
    }
    section {
      padding: 10rem 4% 2rem;
    }
    .home{
        padding: 0 4%;
    }
    .footer {
        padding: 2rem 4%;
    }
}
@media (max-width: 768px){
    .header {
        background: var(--bg-color);
    }
    #menu-icon {
     
         display: block;
    }
    .navbar{
        position: absolute;
        top: 100%;
        left: -100;
        width: 100%;
        padding: 1rem 4%;
        background: var(--main-color);
        box-shadow: 0 .5rem 1rem rgba(0,0,0,.2);
        z-index: 1;
        transition: .3s ease-in-out;
       /* // transition-delay: .25s; */
    }
    .navbar.active{

        left: 0;
        transition-delay: 0s;
    }
    .navbar .active-nav{
     position: absolute;
     top: 0;
     left: -100;
     width: 100%;
     height: 100%;
     background: var(--bg-color);
     border-top: .1rem solid rgba(0, 0, 0, .2);
     z-index: -1;
     transition: .25s ease;
     transition-delay: .25s;
    }
    .navbar.active .active-nav{
        left: 0;
        transition-delay: .25s;
    }
    .navbar a {
        display: block;
        font-size: 2rem;
        margin: 3rem 0;
        transform: translateX(-20rem);
        transition: .25s ease;
        transition-delay: 0s;
    }
    .navbar.active a {
        transform: translateX(0);
        transition-delay: .25s;
    }
    .home-imgHover{
        pointer-events: none;
        background:var(--bg-color) ;
        opacity: .6;
    }
}
@media(max-width:520px){
    html{
        font-size: 50%;
    }
    .home-content h1 {
        display: flex;
        flex-direction: column;
    }
    .home-sci{
           width: 160px;
    }
    .home-sci a {
        width: 38px;
        height:38px ;
    }
}
@media(max-width:463px){
    .home-content h1{
        font-size: 5.2rem;
    }
    .education {
        padding: 10rem 4% 5rem 5%;
    }
    .contact from .input-box .input-field{
        width: 100%;
    }
    .footer{
        flex-direction: column-reverse;
    }
    .footer p {
        margin-top: 2rem;
        text-align: center;

    }
}@media(max-width:371px){
    .home{
        justify-content: center;
    }
    .home-content{
        display: flex;
        align-items: center;
        flex-direction: column;
        text-align: center;
    }
    .home-content h1 {
        font-size: 5rem;
    }
}
@keyframes homeBgText{
    0%,10%,100%{
        background-position: -33rem 0;
    }
    65%,85%{
        background-position: 0 0;
    }
}
@keyframes homeCursorText{
    0%,10%,100%{
        width: 0;
    }
    65%,78%,85%{
        width: 100%;
        opacity: 1;
    }
    75%,
    81%
    {
opacity: 0;
    }
}
@keyframes showRight{
    100% {
        width: 0;
    }
}

button[type="submit"] {
    padding: 12px 32px;
    background: #00abf0; /* Blue color */
    border: none;
    outline: none;
    border-radius: 6px;
    box-shadow: 0 0 10px #00abf0;
    font-size: 16px;
    color: white; /* White text */
    letter-spacing: 1px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
    transition: .5s;
}

button[type="submit"]:hover {
    box-shadow: none;
}

/* General Body Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #081b29; /* Dark blue background */
    color: #ededed; /* Light grey text */
    direction: rtl; /* Right-to-left for Arabic */
    text-align: right; /* Align text to the right for Arabic */
}

/* Header Styles */
.header {
    background-color: #112e42; /* Slightly lighter dark blue for header */
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.header .navbar-brand.logo {
    color: #00eeff; /* Cyan color for the brand logo */
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.header .navbar-brand.logo:hover {
    color: #00c2d1; /* Slightly darker cyan on hover */
}

.header .navbar-nav .nav-link {
    color: #ededed; /* Light grey for nav links */
    font-size: 1.1rem;
    font-weight: 500;
    margin-right: 25px; /* Spacing between nav items */
    transition: color 0.3s ease, transform 0.3s ease;
    position: relative; /* For the underline effect */
}

.header .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0; /* Changed to right for RTL */
    width: 0;
    height: 2px;
    background-color: #00eeff;
    transition: width 0.3s ease;
}

.header .navbar-nav .nav-link:hover::after,
.header .navbar-nav .nav-link.active::after {
    width: 100%;
    left: 0; /* For RTL */
}

.header .navbar-nav .nav-link:hover {
    color: #00eeff; /* Cyan on hover */
    transform: translateY(-2px);
}

.header .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.2);
}

.header .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    overflow: hidden; /* To ensure overlay doesn't overflow */
}

.hero-image {
    max-height: 650px; /* Adjust as needed */
    object-fit: cover; /* Cover the area without distortion */
    filter: brightness(60%); /* Darken the image for better text contrast */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Additional dark overlay */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    animation: fadeInDown 1s ease-out; /* Simple animation */
}

/* Keyframes for animation */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}











/* General Body Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #081b29; /* Dark blue background */
    color: #ededed; /* Light grey text */
    direction: ltr; /* Left-to-right for English */
    text-align: left; /* Align text to the left for English */
    font-size: 1.125rem; /* Increased base font size from 18px (1rem) to 18px (1.125rem) for a medium feel */
}

/* Header Styles - No major font size changes needed here, as they are already quite specific */
.header {
    background-color: #112e42; /* Slightly lighter dark blue for header */
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.header .navbar-brand.logo {
    color: #00eeff; /* Cyan color for the brand logo */
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.3rem; /* Slightly increased */
    text-decoration: none;
    transition: color 0.3s ease;
}

.header .navbar-brand.logo:hover {
    color: #00c2d1; /* Slightly darker cyan on hover */
}

.header .navbar-nav .nav-link {
    color: #ededed; /* Light grey for nav links */
    font-size: 1.15rem; /* Slightly increased */
    font-weight: 500;
    margin-left: 25px; /* Spacing between nav items - Changed to left for LTR */
    margin-right: 0; /* Reset right margin */
    transition: color 0.3s ease, transform 0.3s ease;
    position: relative; /* For the underline effect */
}

.header .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0; /* Changed to left for LTR */
    width: 0;
    height: 2px;
    background-color: #00eeff;
    transition: width 0.3s ease;
}

.header .navbar-nav .nav-link:hover::after,
.header .navbar-nav .nav-link.active::after {
    width: 100%;
    right: 0; /* For LTR */
}

.header .navbar-nav .nav-link:hover {
    color: #00eeff; /* Cyan on hover */
    transform: translateY(-2px);
}

.header .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.2);
}

.header .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    overflow: hidden; /* To ensure overlay doesn't overflow */
}

.hero-image {
    max-height: 650px; /* Adjust as needed */
    object-fit: cover; /* Cover the area without distortion */
    filter: brightness(60%); /* Darken the image for better text contrast */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Additional dark overlay */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem; /* Increased significantly for prominence */
    font-weight: 700;
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    animation: fadeInDown 1s ease-out; /* Simple animation */
}

/* Keyframes for animation */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Content Section Styles */
.content {
    background-color: #112e42; /* Match header background for consistency */
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    padding: 40px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.title {
    font-size: 2.8rem; /* Increased for section titles */
    font-weight: 700;
    color: #00eeff; /* Cyan color for main titles */
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%; /* Center the underline for LTR */
    transform: translateX(-50%); /* Adjust for LTR centering */
    width: 80px;
    height: 4px;
    background-color: #00eeff;
    border-radius: 2px;
}

.content p {
    font-size: 1.25rem; /* Increased for general paragraphs */
    line-height: 1.8;
    color: #b0b0b0; /* Lighter grey for paragraph text */
    margin-bottom: 20px;
    text-align: justify; /* Justify text for better readability */
}

.features-heading {
    font-size: 1.9rem; /* Slightly increased */
    font-weight: 600;
    color: #ffffff;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.features-list {
    margin-top: 20px;
    padding-left: 0; /* Reset padding for list in LTR */
    list-style: none; /* Remove default list style */
}

.features-list li {
    font-size: 1.2rem; /* Increased for list items */
    margin-bottom: 15px;
    color: #ededed;
    position: relative;
    padding-left: 35px; /* Space for the icon */
    text-align: left; /* Align list items to the left */
}

.features-list li strong {
    color: #00eeff; /* Highlight key features in cyan */
    font-weight: 600;
}

.features-list .feature-icon {
    position: absolute;
    left: 0; /* Changed to left for LTR */
    top: 50%;
    transform: translateY(-50%);
    color: #00eeff; /* Icon color */
    font-size: 1.5rem; /* Slightly increased icon size */
    width: 30px;
    text-align: center;
}


/* Footer Styles (Existing styles from your CSS are integrated here) */
.skytronix-footer {
    background-color: #0c0a1e; /* Dark background color */
    color: #e0e0e0; /* Light text color for general content */
    font-family: 'Poppins', sans-serif;
    text-align: left; /* Align footer content to the left for LTR */
}

.skytronix-footer .footer-brand {
    color: #00eeff; /* Cyan color for the brand name */
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.9rem; /* Slightly increased */
}

.skytronix-footer .footer-text {
    color: #b0b0b0; /* Slightly lighter text for descriptive content */
    font-size: 1.05rem; /* Slightly increased */
    line-height: 1.6;
}

.skytronix-footer .footer-heading {
    color: #ffffff; /* White color for section headings */
    font-size: 1.25rem; /* Slightly increased */
    font-weight: 600;
    margin-bottom: 1rem;
}

.skytronix-footer .footer-link {
    color: #b0b0b0; /* Link color */
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1.05rem; /* Slightly increased */
    display: block; /* Make links block to give them full line space */
    margin-bottom: 0.5rem; /* Space between links */
}

.skytronix-footer .footer-link:hover {
    color: #00eeff; /* Cyan hover color for links */
}

.skytronix-footer .footer-divider {
    border-color: #333333; /* Color of the horizontal line */
    opacity: 0.7;
}

.skytronix-footer .footer-copyright {
    color: #909090; /* Copyright text color */
    font-size: 0.95rem; /* Slightly increased */
}

.skytronix-footer .footer-bottom-link {
    color: #909090; /* Links in the bottom section */
    text-decoration: none;
    font-size: 0.95rem; /* Slightly increased */
    transition: color 0.3s ease;
}

.skytronix-footer .footer-bottom-link:hover {
    color: #ededed; /* Hover color for bottom links */
}

/* Media Queries for Responsiveness */
@media (max-width: 992px) {
    .header .navbar-nav .nav-link {
        margin-left: 0; /* Remove left margin on smaller screens */
        text-align: center;
    }
    .header .navbar-brand.logo {
        text-align: center;
        width: 100%;
        margin-bottom: 10px;
    }
    .hero-title {
        font-size: 3rem; /* Adjusted for smaller screens */
    }
    .title {
        font-size: 2.2rem; /* Adjusted for smaller screens */
    }
    .content p,
    .features-list li {
        font-size: 1.1rem; /* Adjusted for smaller screens */
    }
    .features-list li {
        padding-left: 0; /* Remove padding for icon on smaller screens */
        text-align: left;
    }
    .features-list .feature-icon {
        position: static; /* Make icons inline on smaller screens */
        transform: none;
        margin-right: 10px; /* Add some space after icon */
    }
    .skytronix-footer .col-lg-4,
    .skytronix-footer .col-lg-2,
    .skytronix-footer .col-lg-3 {
        text-align: center !important; /* Center text for all columns on smaller screens */
    }
    .skytronix-footer .list-unstyled {
        padding-left: 0; /* Reset padding for list in LTR */
    }
    .skytronix-footer .list-inline {
        text-align: center !important;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem; /* Adjusted for smaller screens */
    }
    .title {
        font-size: 2rem; /* Adjusted for smaller screens */
    }
    .content p,
    .features-list li {
        font-size: 1.05rem; /* Adjusted for smaller screens */
    }
    .skytronix-footer .col-md-6 {
        margin-bottom: 20px;
    }
    .skytronix-footer .list-inline-item {
        display: block;
        margin-bottom: 10px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem; /* Adjusted for smallest screens */
    }
    .title {
        font-size: 1.7rem; /* Adjusted for smallest screens */
    }
    .content {
        padding: 20px;
    }
}
