@import url('https://fonts.googleapis.com/css?family=Montserrat:500&display=swap');
@import url('https://fonts.googleapis.com/css?family=Dancing+Script&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans&display=swap');

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

body {
    margin: 0 auto;
	background: #FFF;
	font-family: 'Open Sans', sans-serif;
}

header {
	height: 200px;
}
.black {
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.nav
  {
      width: 100%;
      background-color: #fff;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      padding: 20px 2%;
      position: fixed;
      top: 0px;
      z-index: 10;
      box-shadow: 1px 1px 10px rgba(0,0,0,0.5);
  }
  
  .logohead{
      height:100px;
      width:100px;
  }
  
  /*#list-switch{*/
  /*  margin-right: 9%;*/
  /*}*/

  .nav li, a, button
  {
      float: left;
      font-family: "Montserrat", sans-serif;
      font-weight: 500;
      font-size: 13px;
      color: #2E3D49;
      display: block;
      text-decoration: none;
      text-align: center;
  }
  
  .nav ul li img {
      width: 20px;
      margin-right: 10px;
      transform: translateY(5px);
      padding-top: 5px;
  }
  
  .nav ul li 
  {
      list-style: none;
      display: inline-block;
      padding: 0px 20px;
  }
  
  .nav ul li a
  {
      transition: all 0.3s ease 0s;
  }
  
  .nav ul li a:hover
  {
	color: #fff;
	border-radius: 5px;
	background: #6C3483;
  }
  
  .nav button
  {
      padding: 9px 25px;
      background: linear-gradient(to right, #FA4B37, #6C3483);
      color: #fff;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      outline: none;
      transition: all 0.3s ease 0s;
  }
  #srchbtn {
      padding: 9px 20px;
  }
  #srchbtn img {
      width: 15px;
      filter: brightness(100);
  }
  .nav button:hover
  {
      opacity: .9;
  }
  /*.nav .search*/
  /*{*/
      
  /*}*/
  /*.nav .search .srch*/
  /*{*/
  /*    font-size: 13px;*/
  /*    width: 300px;*/
  /*    border: none;*/
  /*    outline: none;*/
  /*    border-bottom: 2px solid #FA4B37;*/
  /*    padding: 9px;*/
  /*}*/
  /*.nav .search button*/
  /*{*/
  /*    margin-right: 5px;*/
  /*    float: right;*/
  /*    margin-left: 10px;*/
  /*}*/
  /*.nav .switch-tab {*/
  /*    cursor: pointer;*/
  /*    visibility: hidden;*/
  /*}*/
  /*.nav .switch-tab img {*/
  /*    width: 20px;*/
  /*}*/
  /*.nav .check-box {*/
  /*    cursor: pointer;*/
  /*    visibility: hidden;*/
  /*}*/

.active {
	color: #fff;
	border-radius: 5px;
	background: #6C3483;
}
.logo img{
	width: 100px;
	cursor: pointer;
	transition: all 1s;
}

a, button {
	float: left;
	font-family: "Montserrat", sans-serif;
	font-weight: 500;
	font-size: 15px;
	color: #2E3D49;
	display: block;
	text-decoration: none;
	text-align: center;
}

/*main-heading*/

.head-container {
	margin: 6%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-around;
}

.main-head {
    align-items: center;
    font-family: 'Roboto Slab', serif;
    /* font-family: 'Arial', sans-serif; */
    font-size: 58px;
    font-weight: 1000;
    color: #FF4500;
    text-align: center;
    text-transform: uppercase;
}

.quote {
	width: 800px;
	transform: translateY(-50px);
}
.quote h5 {
	margin-top: 20px;
	color: #0009;
	line-height: 20px;
}
.quote p {
    margin-top:10%;
	font-size: 50px;
	color: #2e2e2e;
}
.quote .play {
	margin-top: 20px;
	display: flex;
	/* justify-content: center; */
	align-items: center;
}
.quote .play img {
	width: 45px;
	cursor: pointer;
	filter: drop-shadow(0 0 10px #0002);
}
.quote .play span a{
	margin-left: 10px;
	font-size: 20px;
	font-weight: 900;
	color: rgba(0, 0, 0, 0.8);
	cursor: pointer;
}
.svg-image img{
	width: 500px;
	filter: drop-shadow(0 20px 10px rgba(0,0,0,0.2));
}

/* SIDE MENU */
.menu {
	cursor: pointer;
	width: 25px;
	display: none;
}
.side-menu {
	width: 100%;
	height: 100%;
	background: rgba(154,81,160,255);
	position: absolute;
	top: 0;
	transition: .8s;
	z-index: 2000;
	transform: translateX(-100%);
}
.side-menu ul {
	margin-top: 35%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	/* background: #FA4B37; */
}
.side-menu ul li {
	list-style: none;
	/* background: #009900; */
	display: flex;
	justify-content: center;
	align-items: center;
	/* border-bottom: 1px solid #fff; */
	/* padding: 10px 0px; */
}
.side-menu ul li:hover a{
	background: #fff;
	color: #6C3483;
}
.side-menu ul li a{
	color: #FFF;
	width: 100%;
	font-size: 1em;
	/* background: #2E3D49; */
	text-decoration: none;
	padding: 15px 0px;
}
.close img{
	float: right;
	width: 35px;
	cursor: pointer;
	margin: 10px;
}
.user {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 10%;
}
.user img {
	width: 60px;
	border-radius: 50%;
	border: 2px solid #fff;
	filter: drop-shadow(0 10px 20px #0004);
	margin-right: 30px;
	cursor: pointer;
}
.user p {
	color: #fff;
	cursor: pointer;
}
.user img, .user p {
	opacity: 1;
}
/*Common things in all sections*/
#about_section, #portfolio_section, #team_section, #services_section, #contactus_section, #OurClients_section {
	font-family: 'Open Sans', sans-serif;
	color: #2E3D49;
    text-align: center;
	position: relative;
}

/*POPULAR SUBJECTS*/
.cbox {
	position: relative;
	width: 100%;
	display: inline-flex;
	flex-wrap: wrap;
	justify-content: center;
}
.cbox .det {
	width: 250px;
	height: 80px;
	margin: 10px;
	background: #fff;
	cursor: pointer;
}
.cbox .det a{
	justify-content: space-around;
	width: 250px;
	padding: 28px;
	border-radius: 10px;
	border: 1px solid #FA4B37;
	font-size: 15px;
	color: #272529;
	font-family: cursive;
	text-decoration: none;
}
.cbox .det a:hover {
	background: linear-gradient(to right, #FA4B37, #6C3483);
	color: white;
}
.cbox .det a:hover img{
	filter: brightness(100);
}
.cbox img {
	width: 20px;
	margin-right: 20px;
}


/*ABOUT*/
.abouttitle{
    font-size: 48px; 
    padding: 80px; 
    font-weight: 700;
    font-family: 'Times New Roman', Times, serif;
}

.about-content {
	width: 80%;
	flex-wrap: wrap;
	/*display: flex;*/
	align-items: center;
}

.about-content .side-text h2 {
	padding: 10px;
}
.about-content .side-text p {
	padding: 10px;
}
.about-content .side-image img {
width: 550px;
	height: 368px;
	border-radius: 5px;
}

/*PORTFOLIO*/
.diffSection {
	width: 100%;
	/*position: relative;*/
	justify-content: center;
	align-items: center;
}
.diffSection .content {
	margin: 10px;
	text-align: center;
	padding: 10px 100px;
	font-size: 1.1em;
}
.porttitle{
    font-size: 48px; 
    padding: 100px; 
    padding-bottom: 40px; 
    font-weight: 700;
    font-family: 'Times New Roman', Times, serif;
}
.extra {
	width: 100%;
}
.extra p {
	padding: 30px;
	padding-bottom: 150px;
	font-size: 50px;
	text-align: center;
	color: #fff;
	background-image: linear-gradient(rgba(0,0,0,0),rgba(0,0,0,0.7)),url("images/extra/b1.jpg");
	background-size: cover;
	background-attachment: fixed;
	font-family: cursive;
	z-index: -9;
}
.smbox {
	display: flex;
	flex-wrap: wrap;
	transform: translateY(-100px);
	justify-content: center;
}
.smbox span {
	margin: 1%;
	background: #fff;
	box-shadow: inset 0px 0px 25px rgba(0,0,0,0.2),
						0 0 40px rgba(0,0,0,0.3);
	border-radius: 10px;
	padding: 30px 50px;
	cursor: pointer;
}
.smbox span:hover {
	transform: scale(1.3);
	transition: .5s ease;
}
.smbox .data {
	font-size: 80px;
	color: #FF4500;	
}
.smbox .det {
	font-size: 20px;
	color: #272529;
	font-family: cursive;
}

/*Title*/
.title {
	font-family: "Times New Roman", Times, serif;
	font-size: 48px;
	font-weight: 700;
	text-align: center;
	color: #2E3D49;
}

/*TEAM SECTION*/
.teamtitle{
    font-size: 48px; 
    padding-top: 100px; 
    padding-bottom: 60px; 
    font-weight: 700;
    font-family: 'Times New Roman', Times, serif;
}
.totalcard {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	margin-bottom: 50px;
}
.totalcard .card {
	margin: 50px;
	width: 300px;
	border-radius: 10px;
	background: #fff;
}
.totalcard .card{
	box-shadow: inset 0 0 10px rgba(0,0,0,0.4),
					0 0 10px rgba(0,0,0,0.3);
}
.card:nth-child(1){
	border-top: 5px solid green;
}

.card:nth-child(1):hover {
	box-shadow: inset 0px 0px 10px rgba(0,255,0,0.5),
				1px 1px 30px rgba(0,255,0,0.5);
}

.totalcard .card img {
	width: 100px;
	height: 100px;
	margin-top: 5px;
	cursor: pointer;
	border-radius: 50px;
	transition-duration: .8s;
}
.totalcard .card img:hover {
	transform: scale(2.0);
	border-radius: 0;
	box-shadow: 0 0 20px rgba(0,0,0,0.5);
}
#detail p{
	font-size: 15px;
	line-height: 25px;
	font-variant: small-caps;
	text-align: center;
	margin: 25px;
	margin-bottom: 0px;
	margin-top: 0px;
}
#detail button {
	outline: none;
	border-radius: 10px;
	border-style: none;
	border: 1px solid black;
	padding: 9px 20px;
	cursor: pointer;
	transition-duration: .4s;
}
#detail a {
	bottom: 80px;
	text-decoration: none;
	margin-bottom: 30px;
	margin-top: 20px;
	margin-left: 20px;
	align-self: center;
}

.btn-akhil{
    margin-left:70px;
}

.btn-akhil:hover {
	background: rgba(0,255,0,0.7);
	color: #fff;
}

.btn-roshan:hover {
	background: rgba(0,255,0,0.7);
	color: #fff;
}
.btn-roshan2:hover {
	background: rgba(0,0,255,0.5);
	color: #fff;
}
.card-title {
	font-size: 17px;
	color: #343A40;
	padding: 20px;
	font-weight: 700;
}

/*Service Section*/
.service-swipe {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	background-image: linear-gradient(rgba(0,0,0,0),rgba(0,0,0,0.7)),url("images/extra/b3.jpg");
	background-size: cover;
	background-attachment: fixed;
}
.service-swipe .s-card img {
	width: 100px;
}
.service-swipe a {
	padding: 0;
	margin: 40px 10px;
}
.service-swipe .s-card {
	display: flex;
	justify-content: space-around;
	padding: 10px;
	align-items: center;
	text-align: center;
	width: 350px;
	height: 200px;
	box-shadow: inset 0 0 20px rgba(255,255,255,0.05),
					0 0 50px rgba(0,0,0,0.8);
	border-radius: 5px;
	cursor: pointer;
	transition-duration: .5s;
}
.service-swipe .s-card p {
	color: #f2f2f2;
	font-size: 1.2em;
	font-family: 'Open Sans',sans-serif;
}
.service-swipe .s-card:hover {
	box-shadow: 0 0 50px rgba(255,255,255,0.8);
	transform: translateY(-10px);
}

/*Contact Us Section*/
.contacttitle{
    font-size: 48px; padding: 100px; font-weight: 700;font-family: 'Times New Roman', Times, serif;
}

label {
    display: inline-block;
    margin-bottom: 5px;
}


.imp {
    color: red;
}

#additionalDetailsSection, #professionalFields, #fresherFields, #onlineCoursesFields, #collegeCorporateFields {
	display: none;
}

.csec {
    background: linear-gradient(to right, #FA4B37, );
    background-attachment: fixed;
    position: absolute;
    width: 100%;
    height: 250px;
    top: 200px;
    content: '';
    transform-origin: top right;
    transform: skewY(-10deg);
    z-index: -1;
}

.back-contact {
    margin-top: 0px;
    transform: translateY(-50px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cc {
    max-width: 600px;
    width: 90%;
    border-radius: 10px;
    justify-content: center;
    box-shadow: 1px 1px 20px rgba(0,0,0,0.4);
    background: #fff;
}

.cc form {
    margin: 5%;
    margin-top: 40px;
    width: 90%;
    height: 100%;
}

.cc form label {
    display: block;
    color: #2E3D49;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}

.cc form input,
.cc form textarea,
.cc form select {
    width: 100%;
    padding: 10px;
	margin-top: -55px;
    margin-bottom: 15px;
    border-radius: 5px;
    box-shadow: inset 0 0 5px lightgray;
    border: 1px solid rgba(0,0,0,0.2);
    outline: none;
    color: #2E3D49;
    font-weight: 600;
}

form textarea {
    height: 100px;
}

#csubmit {
    background: linear-gradient(to right, #FA4B37, #6C3483);
    border-radius: 5px;
    border-style: none;
	margin-bottom: 40px;
    outline: none;
    width: 100%;
    padding: 15px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}

#fsubmit {
    background: linear-gradient(to right, #FA4B37, #6C3483);
    border-radius: 5px;
    border-style: none;
	margin-bottom: 40px;
    outline: none;
    width: 100%;
    padding: 15px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}

/* Additional Styling for Dropdown */
.cc form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: transparent;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%232E3D49" height="24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-position: right 10px top 50%;
    background-repeat: no-repeat;
}

/* Hover effect for submit button */
#csubmit:hover {
    background: linear-gradient(to left, #FA4B37, #6C3483);
}

#fsubmit:hover {
    background: linear-gradient(to left, #FA4B37, #6C3483);
}


/*REVIEW SECTION*/

#makeitfull {
	display: flex;
	justify-content: center;
	transform: translateY(35px);
}
#makeitfull img {
	width: 50px;
}
.review {
	background: #F8F8F8;
	width: 100%;
}
.rev-container {
	padding: 10px 10%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}
.rev-container .rev-card {
	/*overflow: hidden;*/
	width: 550px;
	height: 240px;
	margin-bottom: 40px;
	background: #fff;
	display: flex;
	padding: 10px;
	box-shadow: 2px 2px 20px rgba(0,0,0,0.2);
}
.rev-card:hover {
	box-shadow: 1px 1px 5px rgba(0,0,0,0.2);
}
.identity {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding: 10px;
}
.identity img {
	width: 120px;
	height: 120px;
	transition-duration: .8s;
	border-radius: 50%;
}
.identity img:hover {
	transform: scale(2.2);
	border-radius: 0px;
	box-shadow: 0 0 20px rgba(0,0,0,0.3);
}
.identity p {
	width: 150px;
	font-weight: bold;
	color: #2E3D49;
	text-align: center;
}
.identity h6 {
	width: 150px;
	text-align: center;
}
.identity .rating img {
	width: 12px;
	height: 12px;
	margin-right: 5px;
}
.rev-cont {
	overflow: hidden;
}
.rev-cont #title {
	padding: 10px;
	color: #2E3D49;
	font-weight: bold;
}
.rev-cont #content {
	padding: 10px;
	font-size: .9em;
	color: #2E3D49;
	line-height: 22px;
	text-align: justify;
}

/* Our clients */

.title2{
	margin-right: 6%;
	font-size: 48px;
	font-weight: 700;
    color: #2E3D49;
}
.shortdesc2{
    color: #2E3D49;
	font-size: 20px;
	margin-bottom: 5%;
	font-weight: 400;
}

/*FEEDBACK*/
.logofoot{
    height:100px;
    width:100px;
}
.feedbacktitle{
    font-size: 48px;
    font-weight: 700;
    font-family: 'Times New Roman', Times, serif;
}
.title2 {
	position: relative;
	margin-top: 150px;
	margin-left: 100px;
	font-family: 'Times New Roman', Times, serif;
}

.title2 .shortdesc2 {
	padding: 10px;
	font-family: 'Open Sans', sans-serif;
	font-size: 15px;
	color: #2E3D49;
	margin-bottom: 10px;
}
.feedbox {
	margin-top: 50px;
	width: 100%;
	display: flex;
	background-image: linear-gradient(rgba(0,0,0,0),rgba(0,0,0,0.7)),url("images/extra/b4.jpg");
	background-size: cover;
	padding: 50px 80px;
	background-attachment: fixed;
}
.feed {
	width: 800px;
	height: 400px;
	position: relative;
	border-radius: 10px;
	justify-content: center;
	box-shadow: inset 0 0 90px rgba(0,0,0,0.6),
					0 0 80px rgba(0,0,0,0.2);
	background: rgba(0,0,0,0.4);
}
.feed form {
	width: 100%;
	height: 100%;
	padding: 20px;
}

.feed form label {
	position: absolute;
	color: #f2f2f2;
	font-size: 10px;
	font-weight: 800;
}
.feed form input, .feed textarea {
	padding: 15px;
	border-radius: 5px;
	box-shadow: inset 0 0 5px lightgray;
	border: 1px solid rgba(0,0,0,0.2);
	outline: none;
	color: #2E3D49;
	background: #fff9;
	font-weight: 600;
}
.feed form input {
	margin-bottom: 15px;
	width: 50%;
}
.feed form .fname {
	width: 25%;
}
.feed form textarea {
	width: 100%;
	height: 100px;
}
.feed #csubmit {
	margin-top: 25px; 
	background: linear-gradient(to right, #FA4B37, #6C3483);
	border-radius: 5px;
	border-style: none;
	outline: none;
	width: 100%;
	padding: 15px 25px;
	color: #fff;
	font-size: 12px;
	cursor: pointer;
}

.feed #fsubmit {
	margin-top: 25px; 
	background: linear-gradient(to right, #FA4B37, #6C3483);
	border-radius: 5px;
	border-style: none;
	outline: none;
	width: 100%;
	padding: 15px 25px;
	color: #fff;
	font-size: 12px;
	cursor: pointer;
}

/*SCROLLING TEXT*/
.marqu {
	text-align: center;
	justify-content: center;
	color: #fff;
	font-size: 20px;
	padding: 10px;
}

/*FOOTER*/
.logohead{
      height:100px;
      width:100px;
  }
footer {
	color: #E5E8EF;
	background: #000D;
	padding: 50px 0; 
}
footer .footer-container {
	max-width: 1300px;
	margin: auto;
	padding: 0 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap-reverse;
}
footer .social-media img{
	width: 22px;
}
footer .logo {
	width: 180px;
	color: #fff;
}
footer .social-media a{
	margin-right: 10px;
	font-size: 22px;
	text-decoration: none;
}
footer .right-col h1{
	font-size: 26px;
}
footer .border{
	width: 100px;
	height: 4px;
	background: linear-gradient(to right, #FA4B37, #6C3483);
	margin: 2px;
}
footer .newsletter-form {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}
footer input::placeholder {
  color: white !important;
}
footer .txtb {
	flex: 1;
	padding: 18px 40px;
	font-size: 16px;
	background: #343A40;
	border: none;
	font-weight: 700;
	outline: none;
	border-radius: 5px;
	min-width: 260px;
	margin-top: 20px;
	color: white;
}
footer .btn {
	margin-top: 20px;
	padding: 18px 40px;
	font-size: 16px;
	color: #f1f1f1;
	background: linear-gradient(to right, #FA4B37, #6C3483);
	border: none;
	font-weight: 700;
	outline: none;
	border-radius: 5px;
	margin-left: 20px;
	cursor: pointer;
	transition: opacity .3s linear;	
}
footer .btn:hover {
	opacity: .7;
}

/*PROPERTIES FOR MAKING WEBSITE RESPONSIVE*/
@media screen and (max-width: 960px) {
    .logofoot{
      width:45px;
      height:45px;
  }
	.footer-container {
		max-width: 600px;
	}
	.right-col {
		width: 100%;
		margin-bottom: 60px;
	}
	.left-col {
		width: 100%;
		text-align: center;
	}
	.social-media {
		display: flex;
		justify-content: center;
	}

	.service-container .right-side img {
		width: 90%;
	}
	.title {
		margin-top: 0px;
	}
	
}
@media screen and (max-width: 700px) {
	footer .btn{
		margin: 0;
		width: 100%;
		margin-top: 20px;
	}
	.svg-image img {
		width: 90%;
		margin: 20px;
		/* align-self: center; */
	}
}

@media screen and (max-width: 1000px) {	
	.feedbox form input, .feedbox form .fname{
		width: 100%;
	}
}

@media only screen and (max-width: 768px) {
    /*nav bar*/
  .nav {
    padding: 15px 2%; 
    height: 60px; 
  }
  
  .logohead{
      height:35px;
      width:35px;
  }
  
  /* #list-switch{*/
  /*  margin-right: 6%;*/
  /*}*/
  .nav a{
    font-size: 10px;
    /*margin-left:-5px;*/
  }
 
	.nav ul li{
		/*width: 100%;*/
		 padding:0px 1px;
		 margin:0px 6px;
		margin-bottom: 5px;
	}
	
	.get-started {
	margin-left: 40px;
	padding: 5px 20px;
	border: 2px solid #9a51a0;
	border-radius: 20px;
	text-decoration: none;
	
	transition: .5s;
	background-color: #9a51a0;
	color: #fff;
}
.get-started:hover {
	color: #2e2e2e;
	background: #fff;
}
  
  /*main- heading*/
  .head-container {
    justify-content: center;
  }

  .main-head {
    margin-top: -30%;
    font-size: 32px; 
  }

  .quote h5 {
    font-size: 15px; 
  }

  .quote p {
    font-size: 25px; 
  }
  
  /*Popular Technologies*/
  .title {
    font-size: 35px; 
  }

  .cbox .det {
    width: 40%; 
    max-width: none; 
    height: auto;
    margin: 10px;
    text-align:center;
  }

  .cbox .det a {
    width: 90%;
    max-width: none; 
    padding: 20px;
  }

  .cbox img {
    width: 15px; 
    margin-right: 10px; 
  }
  
  /*About Us*/
  
    .abouttitle {
        font-size: 36px; 
        padding: 10px; 
    }
    
    .aboutImg{
        height:300px;
        width:350px;
    }
    
    .aboutDiv{
        height:300px;
        width:400px;
    }
    
    .side-image{
        width:40%;
    }
    .side-text h2{
        font-size:25px;
    }
    .side-text p{
        font-size:15px;
    }
    
    /*Portfolio*/
    
    .porttitle {
        font-size: 35px; 
        padding: 50px; 
        padding-bottom: 20px;
    }
    
    .diffSection .content {
        padding: 10px; 
        font-size:15px;
    }
    
    .extra p {
        font-size: 25px; 
    }

    .smbox {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.smbox span {
    margin: 1%;
    background: #fff;
    box-shadow: inset 0px 0px 10px rgba(0,0,0,0.2),
                0 0 20px rgba(0,0,0,0.3);
    border-radius: 10px;
    padding: 15px 25px;
    cursor: pointer;
}

.smbox span:hover {
       transform: scale(1.1);
       transition: .5s ease;
    }

    .smbox .data {
        font-size: 25px;
        color: #FF4500;
    }

    .smbox .det {
        font-size: 15px; 
        color: #272529;
        font-family: cursive;
    }

     /*Creator*/
    .teamtitle {
       font-size: 25px; 
       padding-top: 0px; 
       margin-top:-50px;
       padding-bottom: 15px; 
    }

    .totalcard .card {
        margin: 15px; 
        width: 280px; 
    }

    .totalcard .card img {
        width: 60px; 
        height: 60px;
        border-radius: 30px; 
    }

    #detail p {
        font-size: 15px; 
        line-height: 18px; 
        margin: 10px; 
    }

    #detail button {
        padding: 6px 15px;
        margin-left:15px;
        border-radius: 6px;
    }

    #detail a {
        bottom: 40px; 
        margin-bottom: 15px;
        margin-top: 5px; 
        margin-left: 5px;
    }

    .card-title {
        font-size: 15px; 
        padding: 12px; 
    }

    /*Service*/
    .service-swipe .s-card {
        width: 250px;
        height: 120px;
        margin: 15px;
    }

    .service-swipe .s-card img {
        width: 60px;
    }

    .service-swipe a {
        margin: 15px 10px;
    }

    .service-swipe .s-card p {
        font-size:15px;
    }
    
    /*Students Review*/
     #makeitfull img {
        width: 30px;
    }

    .rev-container .rev-card {
        width: 100%;
        height: 250px;
        margin-bottom: 20px;
    }

    
    #title{
        font-size:20px;
    }
    .identity .rating img {
    width: 9px;
    height: 9px;
    margin-right: 2px;
}
    
    .identity{
        width:25%;
    }
    
    .rev-cont{
        width:80%;
    }
    
    .identity img {
    width: 60px;
    height: 60px;
    transition-duration: .8s;
    border-radius: 50%;
}


/*Contact Us*/
    .contacttitle{
      font-size:35px;
    }
    
    /*Clients*/
    .title2 {
        font-size: 35px;
        margin-right:110px;
    }

    .shortdesc2 {
        font-size: 15px;
    }
    
    /*feedBack*/
    .feedbacktitle{
        font-size:35px;
    }
    
    
  
}
/* ADD Photo Poster */

#overlay {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
}

#poster {
    position: relative;
    background-color: #fff;
    max-width: 80%;  /* Limit the maximum width of the poster */
    padding: 20px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    margin: 0 auto;
    line-height:1.5;
}

#closeBtn {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #333;
    color: #fff;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
}

#homepage {
    /* Add styles for your homepage content */
    padding: 20px;
    max-width: 80%;  /* Limit the maximum width of the homepage content */
    margin: 0 auto;  /* Center the homepage content */
    line-height:1.5;
}

#poster img {
    max-width: 100%; /* Ensure the image scales down within its container */
    height: auto;    /* Maintain aspect ratio */
}
#poster, #homepage {
    max-width: 800px; /* Adjust the maximum width as needed */
    max-height: 500px; /* Set a maximum height for the content */
    overflow-y: auto;  /* Add vertical scrollbar if content exceeds max-height */
    margin: 0 auto;   /* Center the content */
    object-fit:contain;
}

