    *{
        margin: 0;
        padding: 0;
        font-family: "PT Serif", serif;
        
    }
    #banner{
        background: linear-gradient(rgba(0,0,0,0.5),#2f638b),url(Images/banner.jpg);
        background-size: cover;
        background-position: center;
        height: 100vh;
    }
    .logo{
        width: 200px;
        position: absolute;
        top: 0%;
        left: 0%;

    }
    .banner-text{
        text-align: center;
        color: #fff;
        padding-top: 180px;
    }

    .banner-text h1{
        font-size: 130px;
        font-style: normal
    }
    .banner-text p{
        font-size: 20px;
        font-style: italic;
    }
    .banner-btn{
        margin: 70px auto 0;
        scroll-behavior: smooth;
    }

    .banner-btn a{
        width: 150px;   
        text-decoration: none;
        display: inline-block;
        vertical-align: middle;
        margin: 0 10px;
        padding: 12px 0;
        color: #fff;
        background: transparent;
        border: .5px solid #fff;
        text-decoration: none;
        position: relative;
        z-index: 1;
        transition: color 0.5s;

    }

    .banner-btn a span{
        width: 0%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        background: #2f638b;
        z-index: -1;
        transition: 0.5s;
    }

    .banner-btn a:hover span{
        width: 100%;

    }

    .banner-btn a:hover{
        color: #000;

    }

    #sideNav{
        width: 250px;
        height: 100vh;
        position: fixed;
        right: -250px;
        top: 0;
        background: #2f638b;
        z-index: 2;
        transition: 0.5s;
    }

    nav ul li{
        list-style: none;
        margin: 50px 20px;
    }

    nav ul li a{
        text-decoration: none;
        color: #fff;
    }

    #menuBtn{
        width: 50px;
        height: 50px;
        background: #2f638b;
        text-align: center;
        position: fixed;
        right: 30px;
        top: 20px;
        border-radius: 3px;
        z-index: 3;
        cursor: pointer;
    }

    #menuBtn img{
        width: 20px;
        margin-top: 15px;
    }

    @media screen and (max-width: 770px){
        .banner-text h1{
        font-size: 44px;
        font-style: normal
        }
        .banner-btn a{
            display: block;
            margin:  20px auto;
        }
    }

    /*--Features--*/
    #feature{
        width: 100%;
        padding: 70px 0;
    }
    .title-text{
        text-align: center;
        padding-bottom: 70px;
    }

    .title-text h1{
        margin: auto;
        font-size: 20px;
        color:#2f638b;
        font-weight: bold;
        position: relative;
        z-index: 1;
        display: inline-block;
    }
    .title-text h1::after{
        content: '';
        width: 50px;
        height: 35px;
        background: linear-gradient(#2f638b,#fff);
        position: absolute;
        top: -10px;
        left: 8;
        z-index: -1;
        transform: rotate(10deg);
        border-top-left-radius: 35px;
        border-bottom-right-radius: 35px;
    }
    .title-text p{
    font-size:40px;
    color:#000000;
        font-weight: bold;
    }
    .title-text h1{
        font-size:50px;
    }
    .feature-box {
        width: 80%; 
        margin: auto;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        margin-bottom: 50px;
    }

    /* Text Headings – now shared for all */
    .text-features {
        color: #2f638b;
        flex-basis: 50%;
        text-align: left; /* You can adjust center/left */
        transform: translateY(15px); /* Uniform vertical adjustment */
    }

    /* Images */
    .features-img,
    .features-img1,
    .features-img2 {
        flex-basis: 50%;
        margin: auto;
    }

    .features-img img,
    .features-img1 img,
    .features-img2 img {
        width: 70%;
        border-radius: 50px;
    }

    /* Specific image horizontal adjustments to maintain original layout */
    .features-img { transform: translateX(370px); }
    .features-img1 { transform: translateX(390px); margin-top: 50px; }
    .features-img2 { transform: translateX(410px); margin-top: 50px; }

    html {
        scroll-behavior: smooth;
    }

    html, body {
    overflow-x: hidden;
    }

    @media screen and (max-width: 770px){
        .title-text hi{
            font: 35px;
        }
        .text-features{
            flex-basis: 100%;
        }
    }
    /*gallery*/

    .gallery {
        padding: 100px 0 20px;
        background: #130000;
    }
    /*footer*/
    #footer { 
        padding: 100px 0 20px;
        background: #efefef;
    }
    .footer-row{
        width: 80%;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;

    }

    .footer-left,.footer-right{
        flex-basis: 45%;
        padding: 10px;
        margin-bottom: 20px;
    }

    .footer-right{
        text-align: right;
    }

    .footer-row h1{
        margin: 10px 0;
    }

    .footer-row p{
        line-height: 35px;
    }

    .i{
        color:#2f638b;
    }

    .footer-left .far, .footer-right .fas{
        font-size: 20px;
        color: #2f638b;
        margin: 10px;
    }
    .social-links{
        text-align: center;
    }
    .social-links .fab{
        height: 40px;
        width: 40px;
        font-size: 20px;
        line-height: 40px;
        border: 1px solid #2f638b;
        margin: 40px 5px 0;
        color: #2f638b;
        cursor: pointer;
        transition: .5s;
    }

    .social-links .fab:hover{
        background: #2f638b;
        color: #fff;
        transform: translateY(-7px);

    }

    @media screen and (max-width: 768px) {

    /* SECTION SPACING */
    #feature {
        padding: 50px 15px;
    }

    /* TITLE TEXT */
    .title-text p {
        font-size: 26px;
    }

    .title-text h1 {
        font-size: 32px;
    }

    /* FEATURE BOX STACKING */
    .feature-box {
        width: 100%;
        flex-direction: column;
        text-align: center;
    }

    /* TEXT */
    .text-features {
        flex-basis: 100%;
        text-align: center;
        transform: none;
        margin-bottom: 20px;
    }

    /* IMAGES */
        .feature-box {
        width: 100%;
        flex-direction: column;
        align-items: center;
    }

    /* IMAGE WRAPPERS */
    .features-img,
    .features-img1,
    .features-img2 {
        flex-basis: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        transform: none;       /* remove desktop shifts */
        margin: 20px 0;
    }

    /* ACTUAL IMAGES */
    .features-img img,
    .features-img1 img,
    .features-img2 img {
        width: 90%;
        max-width: 400px;      /* keeps images from being too large */
        margin: 0 auto;
        display: block;
        border-radius: 20px;
    }


    /* FOOTER */
    .footer-row {
        width: 100%;
        flex-direction: column;
        text-align: center;
    }

    .footer-left,
    .footer-right {
        flex-basis: 100%;
        text-align: center;
    }

    .footer-row p {
        line-height: 28px;
    }

    /* SOCIAL ICONS */
    .social-links .fab {
        margin: 20px 10px 0;
    }

    /* GALLERY PADDING */
    .gallery {
        padding: 60px 15px;
    }
    }



    @media screen and (max-width: 768px) {

    .features-img,
    .features-img1,
    .features-img2 {
        transform: translateX(0) !important;
        margin-left: auto;
        margin-right: auto;
    }

    .features-img img,
    .features-img1 img,
    .features-img2 img {
        display: block;
        margin: 0 auto;
    }
    }

    @media screen and (max-width: 768px) {
    .features-img img {
        transform: translateX(-10px); /* move left */
    }

    .features-img1 img {
        transform: translateX(-10px);
    }

    .features-img2 img {
        transform: translateX(-10px);  /* move right */
    }

    .gallery {
    padding: 80px 0;
    background: #eb0000; /* or whatever bg you want */
    }
    }
    .gallery-grid img {
        width: 90%;
        max-width: 600px;      /* keeps images from being too large */
        border-radius: 20px;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .gallery-grid img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.4s ease;
    }
    .social-links a {
    color: inherit;
    text-decoration: none;
    }

    .social-links a:hover {
    text-decoration: underline;
    }

.footer-right a {
  color: #2f638b;
  text-decoration: none;
  font-weight: 500;
}

.footer-right a:hover {
  text-decoration: underline;
}

.footer-right i {
  margin-right: 8px;
  color: #2f638b;
}
.reviews,
#footer {
  margin: 0;
}