@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  
}
body{
    color: #000;
    font-family: "Merriweather", serif;
}
.background{
    position: relative;
    background: linear-gradient(170deg, #f5f57b 35%, #fff6fb 100%);
}
.logo{
    font-size: 2em;
    font-weight: 600;
    flex: 1;
    color: #600081;
    display: flex;
    align-items: center;
}
.logo img{
    width: 70px;
    margin-right: 1%;
}
.navbar{
    width: 100%;
    margin: auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1;
    top: 0;
    position: fixed;
    font-family: "Ubuntu", serif;
}
.navbar.scrolled{
    background-color: #fff066;
    box-shadow: rgba(0,0,0,0.35) 0 5px 15px;
}
.nav_items{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.item{
    display: flex;
    justify-content: center;
}
.nav_items li{
    list-style: none;
    padding: 1em;
}
.nav_items li a{
    text-decoration: none;
    transition: 0.3s;
    font-size: 16px;
    font-weight: 600;
    color: #600081;
    letter-spacing: 1px;
}
.nav_items li::after{
    content: '';
    width: 0;
    height: 2px;
    background-color: #64009e;
    display: block;
    margin: auto;
    transition: 0.5s;
}
.nav_items li:hover::after{
    width: 100%;
}
.nav_menu{
    display: none;
}
.main{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
    width: 90%;
    padding: 12em 2em 4em 2em;
    margin: auto;
}
.main h1{
    font-size: 3.5em;
    color: #473829;
    line-height: 1.5;
    padding: 2% 0;
}
.left h3{
    font-size: 20px;
    color: #555;
}
.left p{
    font-size: 14px;
    line-height: 1.5rem;
    padding: 4% 0;
    color: #555;
}
.right{
    display: flex;
    justify-content: center;
    align-items: center;
}
.right img{
    width: 650px;
    max-width: 100%;
    height: auto;
}
.btn{
    padding: 12px 25px;
    background-color: #ffe400;
    color: #600081;
    font-size: 25px;
    font-weight: 600;
    /* border-radius: 25px; */
    border: 2px solid #000;
    transition: all 0.5s linear;
}
.btn:hover{
    background-color: transparent;
    cursor: pointer;
    color: #000;
}
/* _____________features */
.sec{
    width: 85%;
    margin: auto;
    text-align: center;
    padding: 5em 0 3em 0;
}
.heading{
    color: #600081;
    font-size: 3em;
    letter-spacing: 1px;
    padding-bottom: 12px;
}
.para{
    font-size: 14px;
    color: #555;
}
.box{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    margin-top: 6em;
}
.boxes{
    max-width: 400px;
    margin: auto 1em;
    padding: 25px;
    background-color: #fff7b4;
    box-shadow: rgba(0,0,0,0.35) 0 5px 15px;
    border-radius: 10px;
    position: relative;
    cursor: pointer;
}
.sub_heading{
    padding-bottom: 13px;
}
.para_1{
    font-size: 13px;
    line-height: 1.9;
    color: #555;
}
.boxes h2{
    margin-top: 1em;
}
.boxes i{
    position: absolute;
    top: 0;
    left: 50%;
    font-size: 2em;
    background-color: #64009e;
    padding: 20px;
    border-radius: 50%;
    color: #fff066;
    transform: translate(-50%, -50%);
    transition: all 0.7s linear;
}
.boxes:hover i{
    cursor: pointer;
    border: 10px double #ffe400;
    transform: translate(-50%, -50%) rotateY(40deg);
}
/* __________about */
.about_box{
    /* display: grid; */
    grid-template-columns: repeat(3,1fr);
    gap: 1em;
    align-items: center;
    font-size: 30px;
}
.about_box li{
    list-style: none;
}
.left_box,.right_box{
    text-align: left;
}
.mid img{
    width: 400px;
}
.left_box li,.right_box li{
    padding: 14px 0;
}
.left_box li i,
.right_box li i{
    color: #fff;
    padding: 1px;
    background: linear-gradient(to bottom, #c402ff, #c5a800);
    border-radius: 50%;
    margin-right: 12px;
}
.btn1{
    margin-top: 12px;
    background: #fff066;
}
/* ___________blog */
.blog{
    width: 100%;
    background-color: #fef183;
    padding: 5em 0;
    margin: 4em 0;
}
.b_blog{
    display: flex;
    justify-content: space-between;
    width: 80%;
    align-items: center;
    margin: auto;
    padding-top: 4em;   
}
.blog_box h1{
    padding: 12px 0;
    font-size: 2.7em;
}
/* ___________contact */
.box_1{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    align-items: center;
    gap: 3em;
}
.contact_left,.contact_right{
    display: grid;
    /* grid-template-columns: 1fr 1fr; */
    /* grid-template-rows: auto; */
    gap: 5px;
}
.contact_left input,
.contact_left select,
.contact_left email,
.contact_left textarea{
    padding: 15px;
    outline: none;
    background: #fcffe7;
    /* border: 2px solid #600081; */
    /* border-radius: 15px; */
    box-shadow: rgba(0,0,0,0.35) 0 5px 15px;
}
.contact_left input{
    margin: 2% 0;
}
.contact_right img{
    width: 100%;
    border-radius: 10px;
}
/* __________footer */
footer{
    background-color: #f5f57b;
    margin-top: 7em;
}
.footer_container{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 4rem 2rem;
    width: 82%;
    margin-bottom: 3em;
    text-align: left;
}
.footer_logo img{
    max-width: 40px;
}
.footer_logo span{
    display: flex;
    font-weight: 800;
    font-size: 1.8rem;
}
.footer_col h4{
    margin-bottom: 2rem;
    font-size: 2rem;
    color: #600081;
}
.footer_links{
    display: grid;
    gap: 1rem;
    list-style: none;
}
.footer_links a{
    text-decoration: none;
    color: #473829;
    letter-spacing: 1px;
}
.footer_links a:hover{
    color: #600081;
}
.footer_text{
    margin: 2rem 0;
    text-align: left;
}
.footer_socials{
    display: flex;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
}
.footer_socials a{
    font-size: 1.8rem;
    text-decoration: none;
    padding: 4%;
    background-color: #600081;
    color: #fff;
}
.footer_socials a:hover{
    background-color: #c402ff;
    color: #f5f57b;
}
.footer_bar{
    padding: 1rem;
    font-size: 1rem;
    text-align: center;
}

@media only screen and (max-width:1160px){
    .about_box {
        grid-template-columns: repeat(2, 1fr);
    }
    .box_1{
        gap: 1em;
    }
}
@media only screen and (max-width:980px){
    .box{
        grid-template-columns: repeat(2,1fr);
    }
    .boxes {
        margin: 2em;
    }
    .b_blog{
        width: 90%;
    }
    .box_1 {
        grid-template-columns: repeat(1, 1fr);
    }
    .footer_container {
        grid-template-columns: repeat(3, 1fr);
    }
    .main{
        width: 95%;
        gap: 0;
    }
    .about_box .right_box{
        grid-column: 1 / span 3;
        margin-top: 2em;
    }
}
@media only screen and (max-width:850px){
    .main{
        padding: 8em 0em 4em 1em;
    }
    .footer_container {
        grid-template-columns: repeat(2, 1fr);
    }
    .box,.about_box ,.main{
        grid-template-columns: repeat(1, 1fr);
    }
    .boxes{
        margin: 2em auto;
        max-width: 500px;
    }
    .about_box .right_box{
        grid-column: 1/ span 1;
    }
    .b_blog{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    .blog_box{
        padding-bottom: 2em;
    }
}
@media only screen and (max-width:700px){
    .nav_items{
        position: absolute;
        top: -1%;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 5em 0 2em 0;
        gap: 0.9rem;
        background-color: #fff066;
        transition: 0.5s;
        z-index: -1;
        transform: translateY(-100%);
        flex-direction: column;
    }
    .item{
        flex-direction: column;
    }
    .nav_items.open{
        transform: translate(0);
    }
    .nav_menu{
        display: block;
        font-size: 2em;
    }
}
@media only screen and (max-width:550px){
    .mid img {
        width: 300px;
    }
    .b_blog,.contact_left,.footer_container{
        grid-template-columns: 1fr;
    }
}

:root {
    --primary-color: #149e9e;
    --secondary-color: #e8e8e8;
    --text-dark: #0f172a;
    --text-light: #94a3b8;
    --white: #ffffff;
  }

  /* testminoals */

  .testimonials{
	min-height: 100vh;
	background: #081131;
	width: 100%;
}
.container{
	max-width: 1170px;
	margin: auto;
}
.testimonials .title{
	margin-bottom:60px
}
.testimonials .title h1{
	text-align: center;
	color:#fff;
	font-size: 36px;
	margin:0;
}
.testimonials .slider{
	border:1px solid #7e8bb6;
	max-width: 600px;
	margin: auto;
	text-align: center;
	padding:30px;
	background-color: #081131;
	border-radius: 50px;
   }

   .testimonials .slider-indicator{
	text-align: center;
	padding-bottom:30px;
}

.testimonials .slider-indicator img{
	max-height:80px;
	max-width:80px;
	border-radius:50% 0% 50% 0%;
	display: inline-block;
	margin:0 8px;
	opacity:0.2;
	border:4px solid #fff;
	cursor: pointer;
	transition: opacity 1s ease;
}

.testimonials .slider-indicator img.active{
	opacity:1;
}

.testimonials .slider p{
	font-size:18px;
	color:#fff;
	word-spacing: 2px;
}

.testimonials .slider .client-info h3{
	font-weight: bold;
	color:#0059f7;
	font-size:18px;
	margin:30px 0 10px;
}

.testimonials .slider .client-info span{
	display: block;
	font-size:16px;
	color:#f1f3f2;
}

.testimonials .slider .slide{
	display: none;
}

.testimonials .slider .slide.active{
	display: block;
	animation: slide 1s ease;
}
 
@keyframes slide{
	0%{
		opacity: 0;
		transform: translateX(-15px);
	}
	100%{
		opacity: 1;
		transform: translateX(0px)
	}
}


/* features */

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.feature {
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    transition: transform 0.3s;
    text-align: center;
    color: white; /* Text color for better contrast */
}

.feature i {
    font-size: 2em;
    margin-bottom: 10px; /* Space between icon and text */
}


/* Different background colors for each feature */
.feature-cctv {
    background-color: #3498db; /* Blue */
}

.feature-safety {
    background-color: #e74c3c; /* Red */
}

.feature-staff {
    background-color: #f39c12; /* Orange */
}

.feature-environment {
    background-color: #2ecc71; /* Green */
}

.feature:hover {
    transform: scale(1.05); /* Scale up on hover */
}


/* meet our team */
a,
a:hover,
a:focus,
a:active {
  text-decoration: none;
  outline: none;
}
a {
  font-style: normal;
  text-decoration: none;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}
a,
a:active,
a:focus {
  color: #333;
  text-decoration: none;
  transition-timing-function: ease-in-out;
  -ms-transition-timing-function: ease-in-out;
  -moz-transition-timing-function: ease-in-out;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-timing-function: ease-in-out;
  transition-duration: 0.2s;
  -ms-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  -webkit-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
}
.sec-title {
  position: relative;
  margin-bottom: 70px;
}
.sec-title .title {
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 1em;
  color: #ff8a01;
  font-weight: 500;
  background: rgb(247, 0, 104);
  background: -moz-linear-gradient(
    to left,
    rgba(247, 0, 104, 1) 0%,
    rgba(68, 16, 102, 1) 25%,
    rgba(247, 0, 104, 1) 75%,
    rgba(68, 16, 102, 1) 100%
  );
  background: -webkit-linear-gradient(
    to left,
    rgba(247, 0, 104, 1) 0%,
    rgba(68, 16, 102, 1) 25%,
    rgba(247, 0, 104, 1) 75%,
    rgba(68, 16, 102, 1) 100%
  );
  background: linear-gradient(
    to left,
    rgba(247, 0, 104) 0%,
    rgba(68, 16, 102, 1) 25%,
    rgba(247, 0, 104, 1) 75%,
    rgba(68, 16, 102, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#F70068',endColorstr='#441066',GradientType=1);
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  letter-spacing: 5px;
  margin-bottom: 15px;
}
.sec-title h2 {
  position: relative;
  display: inline-block;
  font-size: 48px;
  line-height: 1.2em;
  color: #1e1f36;
  font-weight: 700;
}
.sec-title .text {
  position: relative;
  font-size: 16px;
  line-height: 28px;
  color: #888;
  margin-top: 30px;
}
.sec-title.light h2,
.sec-title.light .title {
  color: #fff;
  -webkit-text-fill-color: inherit;
}
.speakers-section-three {
  position: relative;
  padding: 120px 0 90px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}
.speaker-block-three {
  position: relative;
  margin-bottom: 50px;
}
.speaker-block-three .inner-box {
  position: relative;
  background-color: #fff;
  overflow: hidden;
  padding-bottom: 30px;
  max-width: 300px;
  margin: 0 auto;
  overflow: hidden;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 300ms ease;
  -moz-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  transition: all 600ms ease;
}
.speaker-block-three .inner-box:hover {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
.speaker-block-three .image-box {
  position: relative;
  display: block;
  text-align: center;
  padding: 50px 0;
}
.speaker-block-three .image-box:before {
  position: absolute;
  left: -10px;
  right: -10px;
  top: -4px;
  height: 100%;
  background-image: url(https://i.ibb.co/LSL9C6r/shape-5.png);
  -webkit-transform: scale(-1);
  -moz-transform: scale(-1);
  -ms-transform: scale(-1);
  -o-transform: scale(-1);
  transform: scale(-1);
  background-repeat: no-repeat;
  background-position: right top;
  background-size: cover;
  content: "";
}
.speaker-block-three .image-box .image {
  position: relative;
  display: inline-block;
  height: 130px;
  width: 130px;
  overflow: hidden;
  border: 4px solid #ec7561;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  z-index: 9;
  margin-bottom: 0;
  -webkit-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  transition: all 600ms ease;
}
.speaker-block-three .inner-box:hover .image-box .image {
  border-radius: 0;
}
.speaker-block-three .image-box .image img {
  display: block;
  width: 100%;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
.speaker-block-three .inner-box:hover .image img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.speaker-block-three .info-box {
  position: relative;
  display: inline-block;
  padding: 10px 30px;
  padding-right: 10px;
  background-color: #600081;
}
.speaker-block-three .info-box:before {
  position: absolute;
  left: 0;
  right: -30px;
  background-color: #600081;
  content: "";
  top: 0;
  height: 100%;
  -webkit-transform: skew(-30deg);
  -moz-transform: skew(-30deg);
  -ms-transform: skew(-30deg);
  -o-transform: skew(-30deg);
  transform: skew(-30deg);
  border-radius: 0 14px 14px 0;
}
.speaker-block-three .info-box .name {
  position: relative;
  font-size: 18px;
  line-height: 1.2em;
  color: #fff;
  font-weight: 500;
}
.speaker-block-three .info-box .name a {
  color: #fff;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
.speaker-block-three .info-box .name a:hover {
  color: #fff;
}
.speaker-block-three .info-box .designation {
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
  font-weight: 400;
}
.speaker-block-three .social-box {
  position: absolute;
  top: 90px;
  transform: translateX(-50px);
  -webkit-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  transition: all 600ms ease;
}
.speaker-block-three .social-box .social-links li {
  margin-bottom: 4px;
}
.speaker-block-three .inner-box:hover .social-box {
  transform: translateX(10px);
}
.speaker-block-two .social-links li {
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
}
.speaker-block-three .social-links li a i {
  position: relative;
  display: block;
  width: 32px;
  height: 32px;
  border: 1px solid #eee;
  font-size: 16px;
  line-height: 30px;
  background-color: #fff;
  text-align: center;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
.speaker-block-three .social-links li a:hover i {
  color: #fff;
  background: #050a48;
}
.size{
margin:20px;
width:100%;
height:100%;
}
.team_row{
   display: flex;
}

@media only screen and (max-width: 600px) {
    .team_row {
        display: inline-block;
    }
  }


  /* gallery */

  
/* Gallery Styles */
.gallery_container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  @media (min-width: 1300px) and (max-width: 2560px) {
    .popup-gallery {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 10px;
    }
  }
  
  @media (min-width: 700px) and (max-width: 1299px) {
    .popup-gallery {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
    }
  }
  
  @media (min-width: 300px) and (max-width: 699px) {
    .popup-gallery {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 5px;
    }
  }
  
  .gallery_item {
    margin-bottom: 5px;
    overflow: hidden;
  }
  
  .popup-gallery a {
    display: block;
    width: 100%;
    border: 1px solid #fff;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
  }
  
  .popup-gallery a:hover {
    transform: scale(1.05);
    border-color: #fff;
  }
  
  .popup-gallery img {
    display: block;
    width: 100%;
    object-fit: cover;
    min-height: 250px;
    max-height: 250px;
  }
  
  @media only screen and (max-width: 1000px) {
    .popup-gallery img {
      min-height: 150px;
      max-height: 150px;
    }
  }
  
  /* END  */
  
  .singicon_btn_nlf {
    position: absolute;
    top: 44%;
    bottom: 56%;
    left: 44%;
    right: 56%;
    opacity: 0;
  }
  
  .singicon_btn_nlf svg {
    color: #fff;
  }
  
  .popup-gallery a:hover .singicon_btn_nlf {
    opacity: 1;
  }
  
  .hover_affect_nlf:hover img {
    opacity: 0.5;
  }

  /* contact */

.contact-container {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    margin-top: 50px;
    padding: 20px;
    flex-wrap: wrap; /* This makes sure items wrap on smaller screens */
}

.contact-item {
    flex: 1;
    margin: 0 20px;
    text-align: center;
    min-width: 200px; /* Minimum width for each item */
    box-sizing: border-box; /* Ensure padding doesn't affect width */
}

.contact-item i {
    font-size: 3em;
    color: #050a48; /* Icon color */
    margin-bottom: 10px;
}

.contact-item h3 {
    margin-bottom: 10px;
    color: #333;
}

.contact-item p {
    color: #555;
    font-size: 1.1em;
}

.contact-item a {
    color: #007BFF;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column; /* Stack items vertically on smaller screens */
        align-items: center;
    }

    .contact-item {
        margin-bottom: 30px;
        width: 100%; /* Full width on smaller screens */
        text-align: center;
    }

    .contact-item i {
        font-size: 2.5em; /* Slightly smaller icons for smaller screens */
    }

    .contact-item h3 {
        font-size: 1.2em;
    }

    .contact-item p {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .contact-item i {
        font-size: 2em; /* Even smaller icons for very small screens */
    }
}

/* map */

.iframe-rwd  {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    }
    .iframe-rwd iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    }


    .para_2{
        text-decoration: none;
        color: #473829;
        letter-spacing: 1px;
        margin-top: 15px;
    }


    /* blogs */
    h6{
        margin-top: 10px;
        font-size: 16px;
    }
    .blog-container {
        display: flex;
        justify-content: space-between;
        padding: 20px;
        flex-wrap: wrap;
        background-color: rgb(241, 238, 172);
    }
    
    .blog-post {
        background-color: white;
        width: 30%;
        height: 80%;
        margin: 10px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 4px 8px rgba(198, 180, 17, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .blog-post img {
        width: 80%;
        height: auto;
    }
    
    .blog-post h2 {
        /* font-size: 1.8em; */
        padding: 15px;
        color: #333;
        
    }
    
    .blog-post .author {
        /* font-size: 0.9em; */
        color: #777;
        padding: 0 15px;
    }
    
    .blog-post .excerpt {
        padding: 0 15px;
        font-size: 12px;
        color: #555;
        margin-top: 10px;
      
    }
    
    .read-more {
        display: block;
        text-align: right;
        padding: 10px 15px;
        color: #0066cc;
        text-decoration: none;
        font-weight: bold;
    }
    
    .read-more:hover {
        color: #004999;
    }
    
    /* Hover effect animation */
    .blog-post:hover {
        transform: scale(1.05);
        box-shadow: 0 8px 16px #a7afbb;
    }
    
    
    .container {
        width: 80%;
        margin: 0 auto;
    }
    
    /* Responsive Design */
    @media (max-width: 1200px) {
        .blog-post {
            width: 45%;
        }
    }
    
    @media (max-width: 768px) {
        .blog-post {
            width: 100%;
            margin: 10px 0;
        }
    }
    
    @media (max-width: 480px) {
        header h1 {
            font-size: 2.2em;
        }
    
        header p {
            font-size: 1em;
        }
    
        .blog-container {
            padding: 10px;
        }
    }
    

    /* alert */

    .alert {
        position: fixed;
        top: 5%;
        right: 2%;
        background-image: linear-gradient(to right, #ff4b4b, #d12280);
        color: #fff;
        font-weight: 800;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
        padding: 20px;
        border-radius: 10px;
        transform: translateX(150%);
        transition: transform 0.3s ease-in-out;
    }
    
    .alert p {
        margin: 30px;
        letter-spacing: 1px;
    }
    
    .alert i {
        display: flex;
        justify-content: flex-end;
        font-size: 24px;
        cursor: pointer;
    }
    .announcement {
        font-size: 25px;
        font-weight: bold;
        color: #4CAF50;
        /* text-align: center; */
        animation: fadeInOut 4s ease-in-out infinite;
      }
      
    /* Fade In and Out Effect */
    @keyframes fadeInOut {
        0% {
        opacity: 0;
        }
        25% {
        opacity: 1;
        }
        50% {
        opacity: 0;
        }
        75% {
        opacity: 1;
        }
        100% {
        opacity: 0;
        }
    }
    

    /* blogs details */

    .heading1{
        font-size: 50px;
        font-family: cursive;
        color: orangered;
      }
      .para{
        font-size: 40px;
        margin-top:10px;
        color: cadetblue;
        
      }
      .content{
        margin-top:10px;
        margin-left: 30px;
        font-size: 20px;
      }