/* Urbanist Font- Used in Every Pages so importing at once */
@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

html{
    scroll-behavior: smooth;
}
* {
    zoom: 1;
    margin: 0;
    padding: 0;
}
body {
    margin: 0;
    padding: 0;
    font-family: "Urbanist", sans-serif;
    font-weight: 500;
    font-style: normal;
    box-sizing: border-box;
    /* border-right: 1px solid #E9E8FF; */
    /* max-width: 1920px; */
    margin: 0 auto;
}

.top {
    /* background-image: linear-gradient(360deg, #100d14e6, #2c1b39); */
    background-image: linear-gradient(140deg, #5f0a87, #a4508b);
    padding: 0px 40px;
}

.navbar {
    display: flex;
    align-items: center;
    box-sizing: border-box;
    justify-content: space-between;
    position: relative;
}

.navbar a {
    font-size: 18px;
}

.navbar-logo img {
    cursor: pointer;
    width: 200px;
    padding: 10px 0;
    margin-left: 30px;
}
.navbar-logo-text{
    display: inline-block;
    color: white;
    font-size: 100px;
    text-decoration: none;
    padding: 10px 25px;
}
.icon {
    display: inline-block;
    width: 1.2em;
    height: 1.2em;
    stroke-width: 0;
    stroke: currentColor;
    fill: currentColor;
}

.navbar-nav {
    display: flex;
    gap: 80px;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    flex-shrink: 1;
    font-size: 18px;
}
.navbar-nav__links {
    display: flex;
    border: 1px solid rgba(50, 50, 50, 0.2);
    padding: 20px 20px;
    border-radius: 5px;
    gap: 40px;
    flex-grow: 1;
}
.navbar-nav__social {
    display: flex;
    gap: 15px;
}

.navbar-nav li {
    list-style: none;
}
.navbar-nav li a {
    text-decoration: none;
    color: white;
}
.navbar-right{
    display: flex;
    gap: 30px;
    padding: 20px 0;
    align-items: center;
    position: relative;
}

.navbar-nav__actions {
    display: flex;
    gap: 30px;
    padding: 20px 0;
}

.navbar-nav__actions li {
    list-style: none;
}
.navbar-nav__actions li a {
    text-decoration: none;
    color: white;
}

.navbar-subscribe {
    padding: 10px 40px;
    border: 1px solid #1200DE;
    transition: all 0.4s;
}
.navbar-subscribe:hover {
    background-color: #1200DE;
    border: 1px solid white;
}
.navbar .responsive-btn {
    display: none;
}
.navbar .responsive-btn button {
    background: none;
    border: none;
}
.responsive-btn button i {
    cursor: pointer;
    color: #fff;
    font-size: 20px;
}


.dropdown-menu {
    display: none;
    background-color: rgba(44, 27, 57, 1);
    position: absolute;
    width: 100%;
    top: 94px; 
    left: 0;
    z-index: 1000;
}
.dropdown-menu ul {
    list-style-type: none;
    padding: 10px 0;
}
.dropdown-menu ul li {
    padding: 10px 20px;
}
.dropdown-menu ul li a {
    color: white;
    text-decoration: none;
    display: block;
}


.banner {
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    padding: 40px 10px;
    flex-wrap: wrap;
}

.banner h1 {
    margin: 0;
}

.banner-banner {
    margin-right: 30px;
    background-color: #CBBCDA;
    border-radius: 10px;
}
.banner .globe {
    /* height: 500px; */
    /* border-radius: 50%; */
    padding: 0 80px;
}

.banner-hero {
    padding: 20px;
    width: 40%;
}
.banner-hero h1 {
    color: white;
    font-weight: 700;
    font-size: 65px;
}
.banner-hero h2 {
    margin: 0;
    color: white;
    font-size: 25px;
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-style: normal;
    margin: 25px 0;
}
.banner-hero p {
    color: white;
    font-size: 18px;
    font-weight: 400;
    margin: 0;
    font-style: normal;
}

.gradient-btn {
    font-size: 22px;
    display: inline-block;
    margin: 40px 0;
    color: white;
    padding: 20px 50px;
    font-family: "Lato", sans-serif;
    font-weight: 700;
    background-image: linear-gradient(140deg, #5f0a87, #a4508b);
    border: 1px solid white;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.4s;
}
.gradient-btn:hover{
    transform: translateY(-4px);
}

.banner-img img{
    height: 400px;
    border-radius: 50%;
}



/* Blog CSS */
.blog-section{
    padding: 40px;
}
.blog-section h1{
    margin: 0;
    text-align: center;
}

.blog-main{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    width: 100%;
    justify-content: center;
    gap: 20px;
    padding: 40px 0;
    overflow: hidden;

}

.blog-card{
    position: relative;
    border-radius: 10px;
    padding: 0;
    max-width: 400px;
    width: 100%;
    box-sizing: border-box;
    transition: all 0.4s;
    overflow: hidden;
    border: 1px solid #C0BFBF;

}
.blog-card__thumbnail{
    display: block;
    padding-bottom: 0;
    max-width: 100%;
    height: 250px;
    transition: all 0.4s;
    overflow: hidden;
}

.blog-card__thumbnail img:hover{
    transform: scale(1.07);
}
.blog-card__thumbnail img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s all ease-in-out;
}

.blog-card__content{
    padding: 20px 30px;
}


.blog-card__author{
    display: flex;
    gap: 10px;
    align-items: center;
}
.blog-card__author img{
    width: 32px;
}

.blog-card__author span{
    display: inline-block;
    color: #8F9BAD;
    font-family: Roboto;
    font-size: 14px;
    font-weight: 400;
}

.authorname::after{
    content: "•";
    padding-left: 10px;
    color: red;
}

.blog-card__title{
    display: inline-block;
    padding: 15px 0;
    text-decoration: none;
    color: #203656;
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    transition: all 0.3s;
}
.blog-card__title:hover{
    color: #FE4F70;
}

.blog-card p{
    color: #8F9BAD;
    text-align: justify;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    margin: 0;
}

.blog-card__actions{
    padding: 10px;
    margin-top: 20px;
    border-top: 1px solid #C0BFBF;
    display: flex;
    justify-content: space-between;
}
.blog-card__actions a{
    cursor: pointer;
    padding: 5px 0;
}

.blog-card__badge{
    position: absolute;
    font-size: 13px;
    font-family: "Roboto", sans-serif;
    top: 20px;
    left: 20px;
    background: linear-gradient(to right, #1a1321 0%, #6f468f 51%, #2d1c3a 100%);
    padding: 5px 15px;
    border-radius: 25px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    background-size: 200% auto;
}

.blog-card__badge:hover{
    background-position: right center;
}


/* Modal Search */
/*Dialog Styles*/
dialog {
	background-image: linear-gradient(140deg, #5f0a87, #a4508b);
	width: 100%;
    height: 100vh;
	padding-top: 5rem;
    padding-bottom: 5rem;
    padding-right: 2.5rem;
	border: 0;
	box-shadow: 0 5px 30px 0 rgb(0 0 0 / 10%);
    transition: all 0.3s;
	animation: fadeIn .5s;
	&::backdrop {
        animation: fadeIn 1s ease both;
		background-image: linear-gradient(360deg, rgba(16, 13, 20, 0.9), rgba(44, 27, 57, 1));
		z-index: 2;
		/* backdrop-filter: blur(20px); */
	}
	.x {
		border: none;
        font-size: 2rem;
		background: none;
		position: absolute;
		top:40px;
		right: 80px;
		transition: ease filter, transform 0.3s;
		cursor: pointer;
		transform-origin: center;
		&:hover {
			filter: grayscale(0);
			transform: scale(1.1);
		}
	}
	
}

/*General Styles*/

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: scale(0.5, 0.5);
      }
    
      100% {
        opacity: 1;
        transform: scale(1, 1);
      }
}



#dialog form{
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100vw;
    margin-top: 8rem;

}
#dialog input {
    background: transparent;
    color: white;
    width: 50%;
    padding: 2rem;
    margin: 2rem 2rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
    font-size: 18px;
}

#dialog input::placeholder{
    color: white;
}


/* Footer CSS Starts */

.footer-top {
    background: #281933;
    /* background-image: linear-gradient(360deg, rgba(16, 13, 20, 0.9), rgba(44, 27, 57, 1)); */
    background-image: linear-gradient(140deg, #5f0a87, #a4508b);
    color: white;
    padding: 30px 0;
    font-family: inter;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
  }
  .footer-top__container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 0 40px;
    align-items: flex-start;
    width: 100%;
    font-size: 19px;
    padding: 20px 0;

  }
  .footer-top__column {
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
  }
  .footer-top__column:nth-child(3){
    padding-top: 0;
  }
  .footer-top__logo {
    font-family: 'Brush Script MT', cursive;
    font-size: 2em;
  }
  .footer-top__tagline {
    font-family: 'Arvo', serif;
    font-size: 16px;
    margin-top: 5px;
  }
  .footer-top__links {
    list-style: none;
    padding: 0 40px;
    padding-top:10px;
    font-family: 'Lato', serif;
    font-size: 18px;
  }
  .footer-top__links li {
    margin-bottom: 10px;
  }
  .footer-top__links a {
    color: white;
    text-decoration: none;
  }
  .footer-bottom {
    display: flex;           
    align-items: center;     
    justify-content: center; 
    text-align: center;      
    font-size: 17px;
    font-weight: 500;
    background-color: #CBBCDA;
    height: 59px;
    color: black;
}
.footer-bottom span {
    padding: 1px;
}

  .email-subscription {
    display: flex;
    margin-right: 20px;
    margin-top: 20px;
    border: solid 1px white;
    border-radius: 7px;
    justify-content: space-between;
  }
  .email-input {
    width: 60%;
    padding: 10px;
    border: none;
    outline: none;
    border-radius: 5px;
    background-color: transparent;
    color: white;
  }
  .email-input::placeholder {
    color: white;
  }
  .subscribe-btn {
    width: 40%;
    padding: 10px;
    background-color:#5F0A87;
    border: none;
    border-radius: 5px;
    color: white;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
  }

  .footer-top__title{
    display: flex;
    align-items: center;
    text-align: center;
    gap: 10px;
  }
  .footer-top__title h3{
    font-family: 'Arvo', serif;
    font-size: 25px;
  }



  /* Blog Details Page CSS Starts */

::selection {
    background-color: #f8f2c6;
    color: #282424;
    text-shadow: none;
}

  .blog-container{
    padding:50px 100px;
    position: relative;
    max-width: 1190px;
    margin-left: auto;
    margin-right: auto;
  }
  .blog-container::after{
    display: block;
    content: "";
    clear: both;
  }
.blog-sidebar{
    position: sticky;
    float: left;
    width: 30%;
    top: 20px;
    /* margin: 10px; */
    font-family: 'Lato', serif;
   
}
.blog-sidebar ul li{
    list-style: none;
    padding-bottom: 20px;
}
.blog-sidebar ul li svg{
    padding-right: 10px;
}
.blog-sidebar ul{
    padding-top: 20px;
    padding-left: 40px;
}
.blog-sidebar__articleinfo{
    background-color: #fff;
    
    border: 1px solid #E9E8FF;
    border-radius: 10px;
    box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.03);
    padding: 20px;
}
.blog-sidebar__articleinfo ul,
.blog-sidebar__tableofcontents ul{
    font-weight: 600;
    color: #100d14e6;
}

.blog-sidebar__articleinfo span, 
.blog-sidebar__tableofcontents span{
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 900;
}

.blog-sidebar__tableofcontents{
    margin-top: 20px;
    padding: 20px;
}
.blog-sidebar__tableofcontents a{
    text-decoration: none;
    color: #1a1321
}
.blog-sidebar__tableofcontents a:hover{
    color: #01439C;
}
.blog-sidebar__tableofcontents ul li::before{
        display: inline-flex;
        content: '';
        background-image: url('assets/img/checkmark.svg');
        background-size: 15px 15px;
        color: #1200DE;
        height: 15px;
        width: 15px;
        margin-right: 10px;
}


.blog-content{
    width: 65%;
    float: right;
    box-sizing: border-box;
    background-color: white;
    border-radius: 10px;
    border: 1px solid #E9E8FF;
    box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.03);
}



.blog-inner__content{
    padding: 50px;
    font-family: 'Urbanist', sans-serif;
    align-items: center;
    letter-spacing: 0.1px;
}
.blog-inner__content-title{
    font-weight: 800;
    text-align: center;
}

.blog-inner__content-pubdate{
    display: flex;
    justify-content: center;
    font-weight: 600;
    gap: 10px;
    font-size: 18px;
    padding: 30px 0;
    color: #4D6385;
}
.blog-inner__content p{
    color: #282424;
    letter-spacing: 0.1px;
    word-wrap: break-word;
    line-height: 1.9;
    font-size: 18px;
    font-weight: 500;
    padding-top: 8px;
    margin-bottom: 24px;
    text-align: justify;  
}
.blog-inner__content h3{
    font-size: 24px;
    padding-top: 20.8px;
    margin-bottom: 14.4px;
    line-height: 1.5;
}
.blog-inner__content ul{
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 24px;
    margin-left: 45px;
}
.blog-inner__content ul li{
    list-style-type: disc;
    padding-bottom: 8px;
    line-height: 1.9;
    text-align: justify;
}

.blog-inner__content-gallery{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.blog-inner__content-gallery a{
    display: block;
    margin: 5px 0;
    max-width: 200px;
    width: 100%;
    border-radius: 5px;
    overflow: hidden;
}


.blog-inner__content-gallery img{
    width: 100%;
    object-fit: cover;
    height: 120px;
    transition: all .4s;
    border-radius: 5px;
}
.blog-inner__content-gallery a:hover img{
    transform: scale(1.1);
}


.blog-inner__content-share{
    border-top: 1px solid #E9E8FF;
    padding: 30px 0;
    text-align: center;
}
.blog-inner__content span{
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 20px;
}
.blog-inner__content span a{
    text-decoration: none;
    color: #1a1321;

}
.blog-inner__content-share svg{
    cursor: pointer;
    transition: all 0.3s;
}
.blog-inner__content-share svg:hover{
    transform: translateY(-2px);
}
.shareurl{
    display: block;
    margin-top: 40px;
    /* padding-top: 10px; */

}
.shareurl input{
    padding: 15px 10px;
    width: 50%;
    border: 1px solid #E9E8FF;
    border-radius: 5px;
    outline: none;
    font-size: 18px;
}
.shareurl a{
    padding: 15px 30px;
    text-decoration: none;
    margin-left: 0;
    background-color: #1200DE;
    border-radius: 5px;
    color: white;
    font-size: 18px;
    font-weight: 600;
    outline: none;
    border: none;
    transition: all .3s;
}
.shareurl a:hover{
    background-color: #2d1c3a;
    color: white;
}
.contact-section {
    display: flex;
    flex-wrap: wrap; 
    justify-content: center;
    padding: 85px;
    background-color: #ffff;
    font-family: 'Urbanist', sans-serif;
}

.contact-section h2 {
    font-size: 21px;
    margin-bottom: 40px;
    font-weight: 700;
    
}

.contact-section p {
    margin-bottom: 40px;
    font-family: 'Lato', sans-serif;
    width: 100%;
    max-width: 40rem; 
}


.contact-info .info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
    font-family: 'Lato', sans-serif;
}

.contact-info {
    margin: 0 auto;
    max-width: 40rem; 
}


.contact-form {
    margin: 20px auto;
    /* margin: 0 auto; */
    width: 100%; 
    max-width: 40rem; 
}

.contact-info .info span {
    padding-left: 14px; 
}

.contact-form h2 {
    font-size: 21px;
    font-weight: 700;
}

.contact-form form {
    /* display: flex; */
    flex-direction: column;
    gap: 15px;
}

.contact-form input {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: 'lato', sans-serif;
}

.contact-form textarea[name="message"] {
    height: 191px;
}

.contact-form button {
    padding: 10px 20px;
    background-color: #1200DE;
    border: none;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 30px;
    border-radius: 5px;
}

.contact-form input:last-of-type {
    margin-bottom: 30px;
}


.social-media {
    display: flex;
    gap: 32px;
    
}

.centered-section {
    display: flex;
    justify-content: center; 
    align-items: center; 
    flex-direction: column; 
    gap: 2rem; 
    max-width: 80%; 
    margin: 20px auto 0; 
    margin-top: -75px;
}
.map-container h1{
    margin-top: 2px;
    font-weight: 700;
}


.map-container {
    position: relative;
    margin-bottom: 51px;
    height: 20rem; 
    width: 100%;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    margin-top: 28px;
    border: 2px solid blue !important;
}
.map-container h2{
    font-weight: 700;
}
.map-container img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}


.thumbnail-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding-bottom: 30px;
}

.thumbnail-container img {
    width: 277px; 
    height: auto;
    
}


/* About Us Page CSS */
.about-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 40px 20px;
    font-family: 'Urbanist', sans-serif;
    position: relative;
    background-image: linear-gradient(140deg, #5f0a87, #a4508b);
}
.aboutus-team__container{
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 40px;
    justify-content: center;
    align-items: center;
    /* max-width: 100%; */

}
.aboutus-team__card{
    border: 1px solid #E9E8FF;
    /* background: linear-gradient(to  bottom, #7F00FF, #E100FF);  */
    /* background: linear-gradient(to top, #c471f5 0%, #fa71cd 100%); */
    /* background-image: linear-gradient(140deg, #f67062, #fc5296); */
    background-image: linear-gradient(140deg, #5f0a87, #a4508b);
    color: #E9E8FF;
    padding-top: 150px;
    border-radius: 20px;
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
}

.aboutus-team__card h2{
    font-size: 25px;
    cursor: auto;
}
.aboutus-team__card p{
    cursor: auto;
    color: #fffb00;
    padding-top: 20px;
    font-size: 18px;
    font-weight: 600;
}

.meet-team{
    display: block;
    padding: 20px 0;
    width: 100%;
    text-align: center;
}

.meet-team p{
    color: white;
    font-weight: 600;
    padding-bottom: 5px;
}
.meet-team__paragraph{
    font-family: 'Lato', sans-serif;
    color: white;
    font-weight: 400 !important;
    padding-top: 40px;
    padding-bottom: 20px;
    font-size: 20px;
    text-align: center;
    line-height: 1.4;
   
}
.meet-team h1{
    color: white;
    font-size: 30px;
    font-weight: 800;
}
.aboutus-team{
    text-align: center;
    width: 300px;
    position: relative;
    margin-top: 70px;
    cursor: pointer;
}
.aboutus-team img{
    cursor: pointer;
    position: absolute;
    left: 50%;
    top: -70px;
    transform: translateX(-50%);
    width: 60%;
    transition: all .3s;
}
.aboutus-team::before{
    content: '';
    position: absolute;
    left: 60%;
    top: -0;
    transform: translateX(-100%); /* Align the left edge with the image's center */
    width: 40%; /* 50% of the image's width (60% * 0.5) */
    height: 36%;
    box-shadow: -15px 15px 0px -9px #d303d3;
    z-index: 0; /* Ensure the shadow is below the image */
    pointer-events: none; /* Ensure it doesn't interfere with interactions */
    /* background: linear-gradient(to top, #c471f5 0%, #fa71cd 100%); */
    background-image: linear-gradient(140deg, #5f0a87, #a4508b);
    filter: blur(1px); /* Adjust the blur to mimic the shadow spread */
    opacity: 0.6; /* Adjust the opacity as needed */
    transition: ease-in-out .3s;
    
}

.aboutus-team:hover img{
        box-shadow: none;
}
.aboutus-team:hover::before{
        opacity: 0; 
}

.aboutus-team__social{
    /* border-top: 1px solid #E9E8FF; */
    padding: 30px 0;
}



.aboutus-team__social svg{
    color: white!important;
    padding-right: 12px;
    cursor: pointer;
    font-size: 19px;
    transition: all 0.3s;
}
.aboutus-team__social svg:hover{
    transform: translateY(-4px);
}


/* About Us Cards added later */
.who-we-are__container{
    display: flex;
    flex-wrap: wrap;
    padding: 60px;
    background-color: #F5F5F5;
    box-sizing: border-box;
    align-items: center;
    justify-content: space-around;
}
.who-we-are__container h1{
    width: 100%;
    text-align: center;
    padding-bottom: 60px;
    color: #5F0A87;
    position: relative;
    text-decoration: underline #5F0A87;
    text-underline-offset: 15px;
    text-decoration-thickness: 2px;
}
.who-we-are__container h1::before{
    content: "";
    width: 8px;
    height: 8px;
    background-color: #5F0A87;
    top: 43%;
    position: absolute;
    transform: translate(0, -50%);
    transform: rotate(45deg);
}

.who-we-are__container h1::after{
    content: "";
    width: 8px;
    height: 8px;
    background-color: #5F0A87;
    top: 43%;
    position: absolute;
    transform: translate(0, -50%);
    transform: rotate(45deg);
}
.who-we-are__container p{
    line-height: 1.4;
    letter-spacing: 0.4px;
    font-size: 16px;
}
.who-we-are__card{
    display: flex;
    max-width: 400px;
    flex-direction: column;
    background-color: white;
    align-items: center;
    border-radius: 40px;
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
    height: 100%;
    margin-bottom: 40px;
}

.our-projects-icon{
    padding-top: 50px;
    padding-bottom: 20px;
    width: 60px;
}
.our-projects-title{
    padding-bottom: 40px;
}
.who-we-are__absolute{
    display: flex;
    gap: 25px;
    flex-direction: column;
    position: absolute;
    right: 35px;
    bottom: 30px;
    width: 80%;
    align-items: center;
    text-align: center;
    color: white;
}
.who-we-are__container > div:nth-child(3) .who-we-are__absolute {
    bottom: 50px;
    gap: 50px;
  }
.who-we-are__absolute a{
    width: 40%;
    text-decoration: none;
    border-radius: 20px;
    border: 1px solid white;
    color: white;
    padding: 10px 15px;
    background-color: transparent;
    transition: ease-in-out 0.3s;
}

.who-we-are__absolute a:hover{
    background-color: white;
    color: #5F0A87;
    border: 1px solid black;
}

/* Homepage CSS */
.featured-section__heading{
    width: 100%;
    text-align: center;
    padding: 20px;
}
.featured-section__container{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 40px 20px;
    font-family: 'Urbanist', sans-serif;
    position: relative;
}
.featured-section__card{
    display: flex;
    flex-wrap: wrap;
    position: relative;
    border-radius: 21px;
    color: white;
    padding: 40px 20px;
    height: 180px;
    width: 100%;
    max-width: 370px;
    align-items: center;
}
.featured-section__card:nth-child(2){
    background-color: #7E3F83;
}
.featured-section__card:nth-child(3){
    background-color: #FF6481;
}
.featured-section__card:nth-child(4){
    background-color: #46AFC5;
}
.featured-section__meta ul{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.featured-section__meta{
    width: 40%;
}
.featured-section__meta img{
    width: 18px;
}

.featured-section__meta ul li{
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
    font-size: 14px;
    list-style-type: none;
}
.featured-section__meta img{
    fill: white;
}
.featured-section__meta ul li:nth-child(4){
    padding-left: 20px;
}
.featured-section__postdetails{
    width: 60%;
    
}
.featured-section__blogtitle{
    text-decoration: none;
    color: white;
    font-size: 25px;
    font-weight: 700;
    transition: all 0.3s;
}
.featured-section__blogtitle:hover{
    text-decoration: underline;
}

.featured-section__readmore{
    position: absolute;
    text-decoration: none;
    padding: 10px 20px;
    background-color: #282424;
    color: white;
    border-radius: 5px;
    transition: all 0.3s;
    margin-top: 20px;
    right: 25px;
    bottom: 20px;

}
.featured-section__readmore:hover{
    background-color: black;
}

.featured-section__category{
    position: absolute;
    top: 30px;
    left: 0;
    
}
.featured-section__category a{
    text-decoration: none;
    color: white;
    padding: 10px 10px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    background: rgba(255, 255, 255, 0.12) !important;
    transition: all 0.3s;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.25px;
}


.featured-section__category a:hover{
    padding-left: 15px;
}

.featured-section__star{
    position: absolute;
    top: 0;
    right: 35px;

}

.featured-section__star a{
    color: white;
    text-decoration: none;
    padding: 8px 10px;
    background: rgba(255, 255, 255, 0.12) !important;;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}
.featured-section__star svg{
    padding-top: 4px;
}


/* Home About Us Trending Styling */
.about-trending__container{
    display: flex;
    flex-wrap: wrap;
    padding: 40px;
    justify-content: space-between;
    font-family: 'Lato', sans-serif;
}

.about-trending__about{
    display: flex;
    /* gap: 20px; */
    align-items: center;
    flex-direction: column;
    width: 32%;
    flex-wrap: wrap;
    border: 1px solid #E9E8FF;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
}
.about-trending__team{
    position: relative;
}

.about-trending__team a{
    position: relative;
    display: inline-block;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden;
    border-radius: 100%;
    box-sizing: border-box;
    border: 1px solid #E9E8FF;
    width: 92px;
    height: 95px;
}


.about-trending__team img{
    cursor: pointer;
    width: 100%;
    height: 100%;
    margin-right: 5px;
    object-fit: cover;
}
.about-trending__team a::before {
	position: absolute;
	top: 0;
	left: -75%;
	z-index: 2;
	display: block;
	content: '';
	width: 50%;
	height: 100%;
	background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,.4) 100%);
	background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.4) 100%);
	-webkit-transform: skewX(-25deg);
	transform: skewX(-25deg);
}
.about-trending__team a:hover::before {
	-webkit-animation: shine .85s;
	animation: shine .85s;
}
@-webkit-keyframes shine {
	100% {
		left: 125%;
	}
}
@keyframes shine {
	100% {
		left: 125%;
	}
}

.about-trending__about h2{
    padding: 30px 0;
    font-size: 24px;
    font-weight: 900;
}
.about-trending__about h3{
    font-size: 20px;
    font-weight: 700;
    padding: 10px 0;
}
.about-trending__about p{
    padding: 10px 0;
    font-size: 14px;
    text-align: center;
    font-weight: 600;
}

.about-trending__about a{
    font-size: 16px;
    margin: 20px;
    padding: 10px 20px;
}
.about-trending__team{
    display: inline-block;
    padding: 20px 0;
    text-align: center;
}

.trending{
    width: 60%;
    box-sizing: border-box;
}
.trending h2{
    text-align: center;
    padding: 40px 0;
}
.trending__topics{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
    border: 1px solid #E9E8FF;
    background-color: white;
    padding: 20px;
    border-radius: 150px;
}
.trending__topics img{
    width: 80px;
    height: 80px;
    transition: all 0.3s;
}

.trending__topics a{
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #282424;
    gap: 10px;
    
}
.trending__topics a:hover img{
    transform: translateY(-4px);
}
.trending__topics span{
    font-size: 16px;
    font-weight: 700;
}


/* Home Email Subscription */
.subscribe-newsletter__container{
    background-color: #DEDADA;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.subscribe-newsletter__inner{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;

}
.subscribe-newsletter__inner h2{
    font-size: 30px;
    font-weight: 700;
}
.subscribe-newsletter__inner p{
    font-size: 20px;
    font-weight: 500;
}
.subscribe-newsletter__form{
    display: inline-flex;
    padding-top: 10px;
    width: 40%;
}

.subscribe-newsletter__form input[type="email"]{
    padding: 15px 20px;
    border: 1px solid #ccc;
    font-size: 16px;
    border-right: 0;
    outline: none;
    border-radius: 15px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    width: 70%;
}
.subscribe-newsletter__form input[type="submit"]{
    padding: 10px;
    border: 1px solid #ccc;
    color: white;
    border-radius: 15px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    background-color: #5F0A87;
    cursor: pointer;
    width: 30%;
    font-size: 20px;
}

.subscribe-newsletter__outer-left,
.subscribe-newsletter__outer-right{
    display: inline-block;
    position: absolute;
    height: 100%;
    z-index: 2;
}

.subscribe-newsletter__outer-left{
    top: 0;
    left: -180px;
}
.subscribe-newsletter__outer-right{
    top: 0;
    right: -180px;
}
.subscribe-newsletter__outer-left svg,
.subscribe-newsletter__outer-right svg{
    width: 400px;
    height: 400px;
}

.main-color{
    color: #FF6481;
}
.secondary-color{
    color: #A4508B;
}


@media only screen and (max-width: 1160px) {
    .navbar{
        justify-content: space-between;
    }
    .navbar-nav{
        align-items: flex-start;
    }
    .navbar-nav__links{
        border: 0;
        padding-top: 10px;
        padding-bottom: 0;
    }
    .navbar-nav__actions{
        padding: 20px 0;
    }
    .top {
        padding: 0;
    }
    .responsive-btn {
        display: block !important;
        padding-right: 20px;
    }
    .navbar-side{
        display: flex;
        gap: 20px;
        position: relative;
        box-sizing: border-box;
    }
    .navbar-logo{
        padding-left: 20px;
        cursor: auto;
    }
    .navbar-nav{
        position: absolute;
        box-sizing: border-box;
        z-index: 10;
        /* background-color: rgba(44, 27, 57, 1); */ 
        top: 100%;
        gap: 20px;
        padding: 10px 20px;
        border-radius: 0;
        display: none;
        transition: all 0.3s;
    }
    .navbar-nav{
        flex-direction: column;
        width: 100%;
        height:290px;
        background-image: linear-gradient(140deg, #5f0a87, #a4508b);
    }
    .navbar-nav__links{
        flex-wrap: wrap;
        flex-direction: column;
        gap: 20px;
    }
    .navbar-nav__actions{
        top: 220px;
    }
    .banner-hero{
        width: 100%;
    }
    .banner-img {
        display: none;
        justify-content: center;
    }

    #dialog input{
        width: 80%;
    }
    .thumbnail-container {
       display: flex;
       flex-direction: column;
       
    }
    .thumbnail-container img{
        width: 100% !important;
    }
    .contact-info{
        margin-bottom: 34px;
    }

    .blog-sidebar{
        display: none;
    }
    .blog-content{
        width: 100%;
    }

    .banner-hero{
        text-align: center;
    }

    .about-trending__about{
        display: block;
        width: 100%;
        text-align: center;
    }
    .about-trending__team a{
        width: 150px;
        height: 150px;
        margin-right: 20px !important;
    }

    .trending{
        width: 100%;
        text-align: center;
    }


    
   
}
@media only screen and (max-width: 900px) {
    .blog-container{
        padding: 40px 20px;
    }
    .trending__topics{
        border-radius: 0;;
    }

    /* Homepage Email Subscription */
    .subscribe-newsletter__form{
        width: 60%;
    }
     /* Homepage Email Subscription */
     .subscribe-newsletter__form{
        width: 50%;
    }

    .subscribe-newsletter__outer-left{
        left: -200px;
    }
    .subscribe-newsletter__outer-right{
        right: -200px;
    }
}

@media only screen and (max-width: 790px){
    
    .subscribe-newsletter__outer-left svg,
    .subscribe-newsletter__outer-right svg{
        width: 250px;
        height: 250px;
    }

    .subscribe-newsletter__outer-left{
        top: 80px;
        left: -120px;
    }
    .subscribe-newsletter__outer-right{
        top: 80px;
        right: -120px;
    }
}
@media only screen and (max-width: 600px) {
    .banner{
        padding: 20px;
    }
    .banner-hero{
        padding: 0;
    }
    .banner-hero h1 {
        font-size: 40px;
    }
    .banner-hero h2{
        font-size: 26px;
    }
    .banner-hero p{
        font-family: 'Lato', sans-serif;
        font-weight: 300;
        font-size: 14px;
    }
    .gradient-btn{
        font-size: 16px;
        padding: 10px 15px;
    }

    .responsive-btn {
        display: block !important;
    }
    .banner-img img {
        width: 100%;
    }
    .banner {
        flex-direction: column;
    }
    .globe {
        width: 100% !important;
    }

    .navbar-nav__actions{
        position: absolute;
        box-sizing: border-box;
        z-index: 10;
        top: 310px;
        right: 60px;
        margin-left: 20px;
        gap: 20px;
        padding: 10px 20px;
        border-radius: 0;
        display: none;
        transition: all 0.3s;
    }

    #dialog input{
        width: 100%;
    }
    .footer-top__container{
        display: inline;
        text-align: center;
        align-items: center;
        justify-content: center;
    }
    .footer-top__column{
        text-align: center;
        align-items: center;
        justify-content: center;
    }

    .blog-container{
        padding: 40px 0;
    }
    .blog-content{
        border-radius: 0;
    }
    .blog-inner__content{
        padding: 20px;
    }

    .blog-inner__content-gallery a{
        max-width: 100%;
    }
    .blog-inner__content-gallery img{
       height: 100%;
    }

    .centered-section h2{
        margin-left: 42px !important;
    }
    .contact-info{
        margin-bottom: 40px !important;
    }
    .contact-form button {
        margin-left: 3px !important;
    }
    .thumbnail-container {
       display: flex;
       flex-direction: column;
       
    }
    .thumbnail-container img{
        width: 100% !important;
    }
    .contact-info{
        margin-bottom: 34px !important;
    }

    .about-trending__team a{
        width: 110px;
        height: 110px;
        margin-right: 5px !important;
    }


    .subscribe-newsletter__form{
        width: 80%;
    }
   
     /* Homepage Email Subscription */
     

    .subscribe-newsletter__outer-left svg,
    .subscribe-newsletter__outer-right svg{
        width: 250px;
        height: 250px;
    }

    .subscribe-newsletter__outer-left{
        top: 80px;
        left: -150px;
    }
    .subscribe-newsletter__outer-right{
        top: 80px;
        right: -150px;
    }
}




