﻿f.container{
   max-width: 1140px; 
}
section{
    overflow-x:hidden;
}
h1,h2,h3,h4,h5{
 font-family:  "Laila", serif;


}
p,a,button,li{
  font-family: 'Roboto', sans-serif;

}
p{
     color: var(--text-color);
}
:root {
     --primary-color: #E5530A;
  --secondary-color: #FFD7A5;
  --accent-color: #4CAF50;
  --background-light: #FFFAF3;
  --background-neutral: #F5F5F5;
  --text-dark: #333333;
  --text-light: #FFFFFF;
   
}
.bg-secd{
     background-color: var(--secondary-color);
}
.slider_text_con{
    padding-top:50px;
}
h1 {
  font-size: 45px;   /* Main heading */
  font-weight: 700;  /* Bold font weight */
    
}

h2 {
  font-size: 35px;   /* Sub-heading */
  font-weight: 700;
}

h3 {
  font-size: 30px;   /* Smaller heading */
  font-weight: 700;
}
h4 {
  font-size: 25px;   /* Smaller heading */
  font-weight: 700;
}
h5 {
  font-size: 20px;   /* Smaller heading */
  font-weight: 700;
}

p {
  font-size: 16px;   /* Body text size */
  font-weight: 400;
  line-height: 1.6;  /* Better readability */
}


a {
  font-size: 18px;   /* Same size as paragraphs */
  font-weight: 400;
  text-decoration: none;  /* No underline */
}

.hilight{
    color:#F4A261;
}
/*animation*/
@keyframes customAnimation {
  0% {
    transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg);
  }
  100% {
    transform: translate3d(0px, 92.8774px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg);
  }
}

.element {
  animation: customAnimation 2s ease-in-out infinite;
  transform-style: preserve-3d;
  will-change: transform;
}
@keyframes upAndDown {
  0% {
    transform: translate3d(0px, 0px, 0px);
  }
  50% {
    transform: translate3d(0px, 92.8774px, 0px); /* Move down */
  }
  100% {
    transform: translate3d(0px, 0px, 0px); /* Move back up */
  }
}

.element1 {
  animation: upAndDown 2s ease-in-out infinite;
  transform-style: preserve-3d;
  will-change: transform;
}

@keyframes leftToRight {
  0% {
    transform: translate3d(0px, 0px, 0px);
  }
  50% {
    transform: translate3d(92.8774px, 0px, 0px); /* Move right */
  }
  100% {
    transform: translate3d(0px, 0px, 0px); /* Move back to the start */
  }
}

.element2 {
  animation: leftToRight 2s ease-in-out infinite;
  transform-style: preserve-3d;
  will-change: transform;
}
.spaces{
 
    /* Replace with your image URL */
    background-size:40%; /* Ensures the image covers the container */
    background-image: url('../img/bubbles.png');
    background-position:left top ;
    background-repeat: no-repeat;

}
.background-image {
    animation: zoomInAndOut 5s ease-in-out infinite; /* Adjust timing as needed */
    /* Replace with your image URL */
    background-size:contain; /* Ensures the image covers the container */
    background-image: url('../img/ihes.png');
    background-position: right 80%;
    background-repeat: no-repeat;

}

@keyframes zoomInAndOut {
  0% {
    background-size: 10px; /* Initial size */
  }
  50% {
    background-size:    50px; /* Zoom in */
  }
  100% {
    background-size:100px; /* Return to original size */
  }
}
  /* Circular Image Styling */
        .rotating-img {
         
            border-radius: 50%; /* Makes the image circular */
            animation: rotate 3s linear infinite;
        }

        /* Keyframes for rotation */
        @keyframes rotate {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }

/*animation end*/.gapes{
                     gap:15px;
                 }
/* Header start */
.logos{
    width:150px;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0px;
}

.navlink .navlink-inner {
    list-style: none;
    margin-left: 40px;
}

.navlink .navlink-inner  {

    font-weight: 450;
    color: white;
    /*padding:8px 10px;*/
}
/*.navlink .navlink-inner:hover{
    background-color:#FF8C00;
    border-radius:50px;
    color:white;

}*/

 .navlink-inner .nav-links.active {
        background-color:#253e3e;
  padding: 10px 24px;
  border-radius: 40px;
  color: white;
      }
.navlink {
    position: relative;
}

.navlink-inner:hover .dropdown-inner {
    display: block;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.2);
    padding-left: 0px;
    border-radius: 4px;
}

.navlink .dropdown.active .dropdown-inner {
    display: block;
}

.dropdown-inner {
    display: none; /* Hidden by default */
    position:absolute;/* Position it relative to its parent */
    top: 100%; /* Position it directly below the parent */
    left: 0;
    background-color: white; /* Ensure background color */
    width: 285px; /* Set a fixed width or adjust as needed */
    z-index: 1000; /* Ensure it stays on top of other content */
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    border-top: 5px solid black;
}

.dropdown-inner li {
    display: flex;
    align-items: center; /* Align icon and text vertically */
    padding: 10px 15px;
    color: black;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    background-color: white;
}

.dropdown-inner li:hover {
    background-color: #f0f0f0; /* Adds a hover effect */
}

.dropdown-inner img {
    width: 15px;
    margin-right: 10px; /* Add space between icon and text */
    transform: rotate(-90deg);
}

.hamberg {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;

   
  }


.hamberg span {
    display: block;
    width: 100%;
    height: 2px;
    margin-top: 6px;
    background-color: white !important;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 25px;
    color: white;
    cursor: pointer;
    display: none; /* Hidden initially */
}

.mbmenu {
    display: none;
}

.gry1 {
    height: 493px;
}

.gry2 {
    width: 250px;
    height: 165px;
}







.inner-imgs {
    width: 20px;
    height: 20px;
    margin-left: 5px;
}

.inner-imgs:hover {
    transform: rotate(90deg);
}

@media (max-width: 768px) {
    .logos{
    width:110px;
}
    .navlink {
        position: fixed;
        width: 300px;
        height: 100vh;
        top: 0;
        right: -500px;
        background-color:#D6981F;
        transition: 0.5s;
    }
    .dropdown-inner{
        position :relative !important;
    top: 10%;
    left: 0;
  
    width: 100%;
    z-index: 1
    }
    .ab-wth{
        width:100px !important;
    }
    .ab-wth img{
        padding:3px;
    }
    .navlink.active {
        right: 0 !important;
        z-index: 999999999999999;
    }

    .navfrt {
        flex-direction: column;
        padding-left: 0px;
    }

    .bg-footer {
        background-color: #2D6A4F;
        color: white;
    }

    .bg-footer p {
        color: white;
    }

    .bg-footer li {
        list-style: none;
        color: white;
        margin-bottom: 15px;
        font-weight: 800;
    }

    .bg-footer li a {
        padding-left: 10px;
        color: white;
        text-decoration: none;
        font-weight:900;
    }

    .bg-footer li a:hover {
        color: red;
    }

    .bg-footer ul {
        padding-left: 0px !important;
    }

    .ftr-img img {
        width: 20px;
        height: 20px;
        margin-right: 6px;
    }

    h4 {
        font-size: 20px;
        font-weight: 600;
    }

    .glly-mobile {
        flex-direction: column;
    }

    .gry1 {
        height: 200px;
    }

    .gry2 {
        width: 100% !important;
    }

    .send-column {
        display: none !important;
    }

    .hamberg {
        display: flex;
         background: black;
    width: 40px;
    height: 30px;
    padding:1px 2px 1px ;
    }

    .navlink .navlink-inner {
        padding: 20px 0;
        border-bottom: 1px solid white;
    }

    .close-btn {
        display: block; /* Show the close button on mobile view */
    }

    .navlink-inner.destop {
        display: block !important;
    }

    .mobile {
        display: none;
    }

    .dropdown-inner {
       
        top: 21px;
        left: 0;
        width: 100%;
    }

    .mbmenu {
        border: none !important;
        display: block;
    }
    .navlink .navlink-inner a{
     color:black !important;
     font-weight:800;
     font-size:18px !important;
}
    .navlink-inner .dropdown-inner li a{
        color:black !important;
    }
    .bg-inner .d-flex{
        flex-direction:column;
    }
    .video-container {
        margin-bottom:50px;
    }
}
header {
    position: relative;
    width: 100%;
    z-index: 999;
  /* Background color */
    padding: 10px 0;
    transition: top 0.5s ease, background-color 0.3s ease; /* Adjust transition speed */
     /*background:  #E5530A; /* Gradient */*/
    color:black;

}
.navlink .navlink-inner a{
     color: black;
     font-weight:800;
     font-size:18px !important;
}
/*.logos{
    background:white;
}*/
header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #6A006A;
}

/* Header end */

    /* Header end */
   /*contact*/
    .p-relative{
            position:relative;

        }
        .p-absolute{
              position:absolute;
        }
        .box-contact{
           box-shadow: -3px 0px 30px 0px rgba(0,0,0,0.1);
            padding:50px 20px 25px;
            text-align:center;
            border-radius:5px;
        }
        .ovelap{
            top:50px;
          width:100%;
          margin: 0 auto;
            z-index:-1;
            opacity:0;
            color: #f6f6f6;
  margin-bottom: 0;
  font-weight: bold;
  z-index: -1;
  font-size: 75px;
  transition: all 300ms ease-in-out;
  left:0;
        }
        .box-contact:hover   .ovelap {
               opacity:1;
        }
        .imge-container{
            width:75px; height:75px; border-radius:50px;background:#F8B88B;
            position:absolute;
            top:-40px;
            left:40%;
        }
        .contact-detail{
            padding:30px 30px;
            border:1px solid #F4F1EE;
        }
        .inner-p{
            padding:10px 20px;
        }
         .bg-footer {
        background-color: #6A006A;
        color: white;
    }

    .bg-footer p {
        color: white;
    }

    .bg-footer li {
        list-style: none;
        color: white;
        margin-bottom: 15px;
        font-weight: 800;
    }

    .bg-footer li a {
        padding-left: 10px;
        color: white;
        text-decoration: none;
        font-weight:900;
    }

    .bg-footer li a:hover {
        color: #EEBA0F;
    }

    .bg-footer ul {
        padding-left: 0px !important;
    }

    .ftr-img img {
        width: 20px;
        height: 20px;
        margin-right: 6px;
    }
        .tz-gallery .row > div {
            padding: 2px;
        }

        .tz-gallery .lightbox img {
            width: 100%;
            border-radius: 0;
      
        }
        .tab-content p{
            max-width:500px !important;
        }
.tz-gallery .lightbox:before {
    position: absolute;
    top: 40%;
    left: 40%;
    margin-top: -13px;
    margin-left: -13px;
    opacity: 0;
    color: #fff;
    font-size: 26px;
    font-family: 'Glyphicons Halflings';
    content: '';
    pointer-events: none;
    z-index: 9000;
    transition: 0.4s;
    background: url('../img/right-1.png');

    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    width: 100px;
    height: 100px;
}

        .tz-gallery .lightbox:after {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            background-color: rgba(46, 132, 206, 0.7);
            content: '';
            transition: 0.4s;
        }

        .tz-gallery .lightbox:hover:after,
        .tz-gallery .lightbox:hover:before {
            opacity: 1;
        }

        .p-relative {
            position: relative;
        }

        .p-absolute {
            position: absolute;
        }

       
        /*home*/

        .image-container {
  width: 100%; /* Set the container's width */
height:100%;/* Set the container's height */
  overflow: hidden; /* Ensure the image doesn't overflow */
  position:relative;
}

.image-container img {
  width: 100%;
  height: 100%;
 /* Ensure the image fills the container */
  transition: transform 0.5s ease; /* Smooth zoom effect */
}

.image-container:hover img {
  transform: scale(1.2); /* Zoom inside the image */
}
.service-inner{
        -webkit-transition: .5s;
    transition: .5s;
    box-shadow: 0 5px 10px 0 rgba(50, 65, 141, .07);
    position: relative;
    overflow: hidden;
   margin:5px;
   border-radius:10px;
}
.service-content{
    padding:20px 30px;
}
.service-inner:hover .image-container img, .service-inner:hover .image-container::before{
       -webkit-transform: scale(1.2);
    transform: scale(1.2);
}
.service-inner:hover {
    box-shadow: 0 0px 4px 0 rgba(0, 0, 0, .05);
}
.image-container::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition: .5s;
    transition: .5s;
    z-index: 1;
    background: rgba(0, 0, 0, .5);
}


.services{
    padding:0px 40px;
}
.service{
    padding:0px 10px;
    height:500px;
}
.img-1{
  max-width: 200px;
    height: auto;
    margin-bottom:30px;
    border-radius:10px;
}
.img-3{
  max-width: 200px;
    height: auto;
  border-radius:10px;
}
.img-2{
  max-width: 100%;
    height: auto;
  border-radius:10px;
}

.aboot{
    gap:30px;

}
.aboot{
    position:relative;
}
.aboot>*{
    flex-basis:50%;
   
}
.img-4{
    position:absolute;
    z-index:-1;
    top:0px;
    left:0;
   max-width:100%;
   height:100%;
}
section{
    overflow:hidden;
}
#portfolio {
    padding: 40px;
    margin: 0 auto;
}
.gallery-title
{
    font-size: 36px;
    color: #db584e;
    text-align: center;
    font-weight: 700;
    padding: 40px 20px 60px;
}
.filter-button
{
    font-size: 18px;
    border: 1px solid #db584e;
    border-radius: 5px;
    text-align: center;
    color: #db584e;
    margin-bottom: 30px;

}
.filter-button:hover
{
    font-size: 18px;
    border: 1px solid #db584e;
    border-radius: 5px;
    text-align: center;
    color: #ffffff;
    background-color: #db584e;

}
.btn-default:active .filter-button:active
{
    background-color: #db584e;
    color: white;
}

.port-image
{
    width: 100%;
}

.gallery_product
{
    margin-bottom: 30px;
}

.btn-default{
    margin-right:30px;
    
}
.gallery_product img{
    width:100%;
    height:100%;
}
.icon-img {
  width: 70px;
}
.icon-box-style1 .icon-box-item {
    background-color: #fc6539;
    padding: 52px 40px 44px 30px;
}
.icon-box-style1 .icon-box-item .icon-box-top {
    display: flex
;
    margin-bottom: 33px;
    padding-left: 22px;
}
.icon-box-style1 .icon-box-item .icon-box {
    margin-right: 11px;
    min-height: 89px;
    min-width: 87px;
    position: relative;
    top: 7px;
}
.icon-box-style1 .icon-box-item .icon-box:after {
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    content: "";
    height: 83px;
 top: -14px;
 position:absolute;
  width: 85px;
  left: -3px;
}
.icon-box-style1 .icon-box-item .title {
    color: #fff;
    font-size: 38px;
    line-height: 1.185;
    margin-bottom: 0;
}
.icon-box-style1 .icon-box-item.item-two {
    background-color: #001d23;
}
.icon-box-style1 .icon-box-item.item-three {
    background-color: #fea444;
}
.icon-box-style1 .icon-box-item .content p {
    color: #feece7;
    line-height: 1.667;
    margin-bottom: 32px;
}
.video-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
  padding: 0;
}

.video-item {
  position: relative;
  width: 200px;
  height: 120px;
  cursor: pointer;
}
header.sticky .navlink .navlink-inner .drop{
    color:black !important;
}
.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
}

.video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.video-modal.active {
  display: flex;
}

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

#video-player {
  width: 100%;
  height: 450px;
}

#close-modal {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #fff;
  border: none;
  padding: 10px;
  cursor: pointer;
}
/*slider */
/********************************/
/*       Coloring indicators    */
/********************************/
.carousel-animate .carousel-indicators > li {
    margin: 0 2px;
    background-color: #f39c12;
    border-color: #f39c12;
    opacity: 0.7;
}

.carousel-animate .carousel-indicators > li.active {
    width: 10px;
    height: 10px;
    opacity: 1;
}

/********************************/
/*          Hero Headers        */
/********************************/
.carousel-animate .hero {
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.75);
}

/********************************/
/*          Custom Buttons      */
/********************************/
.btn.btn-lg {
    padding: 10px 40px;
}

.btn.btn-hero,
.btn.btn-hero:hover,
.btn.btn-hero:focus {
    color: #f5f5f5;
    background-color: #1abc9c;
    border-color: #1abc9c;
    outline: none;
    margin: 20px auto;
}

/********************************/
/*          Media Queries       */
/********************************/
@media screen and (max-width: 640px) {
    .hero h1 {
        font-size: 2em;
    }
}

/********************************/
/*          Fade Effect         */
/********************************/
.carousel-fade .carousel-inner .item {
    transition-property: opacity;
}

.carousel-fade .carousel-inner .item,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
    opacity: 0;
}

.carousel-fade .carousel-inner .active,
.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
    opacity: 1;
}

.carousel-fade .carousel-inner .next,
.carousel-fade .carousel-inner .prev,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
    left: 0;
    transform: translate3d(0, 0, 0);
}

/************************************/
/*       BS background Images       */
/************************************/
.carousel-bg .carousel-inner .item {
    background-color: darkslategrey;
    background-size: cover;
    background-position: center;
    min-height: 480px;
}
.carousel-indicators{
    margin:0px !important;
}
.box::before {
  content: "";
  width: 50%;
  height: 75%;
  border-top: 208px solid rgba(7,0,2,.3);
  border-left: 140px solid rgba(240,74,126,.6);
  border-bottom: 188px solid transparent;
  border-right: 160px solid transparent;
  position: absolute;
  top: 0;
  left: -230px;
  z-index: 1;
  transition: all .4s ease-in-out;
}
.box {
  border: 5px solid #f5f5f5;
  background: linear-gradient(to top right,#fff 10%,#000 100%);
  font-family: 'Raleway', sans-serif;
  text-align: center;
  box-shadow: 0 0 15px 5px rgba(0,0,0,.07);
  overflow: hidden;
  position: relative !important;
}
.box img {
  width: 100%;
  height: auto;
  transform: scale(1,1);
  transition: all .3s ease-in-out;
}
.box .box-content {
  color: #fff;
  background-color: #fdb53cd4;
  width: 60%;
  padding: 10px 10px;
  transform: scale(0);
  position: absolute;
  top: 15px;
  right: 15px;
  transition: all .5s ease-in-out;
}
.box .title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 0;
}
.box .post {
  font-size: 15px;
  font-weight: 500;
  font-style: italic;
  text-transform: capitalize;
  display: block;
}
.box:hover::before {
  border-top: 325px solid #fdb53cd4;
  border-left: 422px solid #fdb53cd4;
  border-bottom: 218px solid transparent;
  border-right: 160px solid transparent;
  transform: rotate3d(0,0,1,52deg) scale3d(1,1,1);
  top: 103px;
  left: -350px;
}
.position-relative{
    position:relative !important;
}
.box .icon {
  padding: 0;
  margin: 0;
  list-style: none;
  position: absolute;
  left: 10px;
  bottom: 10px;
  z-index: 1;
  transition: all .5s ease-in-out;
}
.box:hover .box-content {
  transform: scale(1);
}
.font-hight{
    color:#fea444;
    font-weight:900;
}
.service-area{
    margin-top: -72px;
  position: relative;
  z-index: 2;
}
.btn-theme{
    font-family: "Laila", serif;
    color:white;
}
.hesder-top{
    background:#6A006A;
}
   
    .site-button {
    background-color: #EEBA0F;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    -webkit-transition: all .8s ease;
    -moz-transition: all .8s ease;
    -ms-transition: all .8s ease;
    -o-transition: all .8s ease;
    transition: all .8s ease;
}
    .site-button, .site-button-secondry {
    color: #fff;
    padding: 10px 20px;
    display: inline-flex
;
    font-size: 14px;
    outline: none;
    cursor: pointer;
    outline: none;
    border-width: 0;
    border-style: solid;
    border-color: transparent;
    line-height: 1.42857;
    margin-left: -1px;
    text-decoration: none !important;
    text-transform: uppercase;
    font-weight: 600;
}
    .site-button:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    right: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    -webkit-transition: all .8s ease;
    -moz-transition: all .8s ease;
    -ms-transition: all .8s ease;
    -o-transition: all .8s ease;
    transition: all .8s ease;
}
      .d-mobile{
          display:block;
      }
      header.sticky .navlink .navlink-inner a{
          color:white;
      }
      .fints{
           font-family:  "Laila", serif !important;
      }
           header.sticky .navlink .navlink-inner a
    .site-button:active, .site-button:hover, .site-button:focus, .active>.site-button {
    background-color: #a60000;
    color: #fff;
}
        @media (max-width: 768px) {
            .img-3{
                width:150px;
            }
            .d-mobile{
                display:none;
            }
        }
.all-heder {
    background-image: url('../image/con_1.jpg');
   
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 40% center;
}
 .all-inner {
  background: rgba(24, 26, 27, 0.5);
  width: 100%;
  height: 100%;
}
  .left-side{
            width:70px;
            height:70px; background:#6A006A;
            align-items:center;
                align-content: center;
  justify-items: center;
  text-align: center;
  border-radius:7px;
  margin-right:20px;
        }

            .left-side img {
                width:50px;
            
                }
                    .left-side1{
            width:40px;
            height:40px; background:green;
            align-items:center;
                align-content: center;
  justify-items: center;
  text-align: center;
  border-radius:7px;
  margin-right:20px;
        }

            .left-side1 img {
                width:20px;
            }
 .contact-detail{
            padding:50px 50px;
            border:1px solid #F4F1EE;
        }
@media (max-width: 768px) {
    .contact-detail{
        padding: 50px 20px;
    }
}



/* Section Styling */
.braille-section {
    background-color: #e0f4f9;
    padding: 20px;
}

/* Container for Flex Layout */
.braile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

/* Image Styling */
.image-container img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Content Styling */
.content-container h2 {
    font-size: 1.2rem;
    color: #005a8d;
    margin-bottom: 10px;
}

.content-container h1 {
    font-size: 1.8rem;
    font-weight: bold;
    color: #003366;
}

/* Responsive Design */
@media (min-width: 768px) {
    .braile {
        flex-direction: row;
        text-align: left;
    }

    .image-container img {
        max-width: 300px;
    }

    .content-container {
        max-width: 600px;
    }
}

@media (min-width: 1024px) {
    .content-container h1 {
        font-size: 2.2rem;
    }

    .content-container h2 {
        font-size: 1.4rem;
    }
}
.lapp{
    background:rgba(0,0,0,0.4);
    width:100%;
    height:100%;
}