@import 'https://fonts.googleapis.com/css?family=Montserrat:300, 400, 700&display=swap';
* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}
html {
	font-size: 10px;
	font-family: 'Montserrat', sans-serif;
	scroll-behavior: smooth;
}
a {
	text-decoration: none;
}
.container {
	min-height: 100vh;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}
p {
	color: black;
	font-size: 1.4rem;
	margin-top: 5px;
	line-height: 2.5rem;
	font-weight: 300;
	letter-spacing: 0.05rem;
}
.projects-title {
	font-size: 4rem;
	font-weight: 300;
	color: black;
	margin-bottom: 10px;
	text-transform: uppercase;
	letter-spacing: 0.2rem;
	text-align: center;
}
.section-title {
	font-size: 4rem;
	font-weight: 300;
	color: black;
	margin-bottom: 30px;
	text-transform: uppercase;
	letter-spacing: 0.2rem;
	text-align: center;
}

.section-title span {
	color: crimson;
}

.projects-title span {
	color: crimson;
}


.cta {
	display: inline-block;
	padding: 10px 30px;
	color: white;
	background-color: transparent;
	border: 2px solid crimson;
	font-size: 2rem;
	text-transform: uppercase;
	letter-spacing: 0.1rem;
	margin-top: 30px;
	transition: 0.3s ease;
	transition-property: background-color, color;
}
.cta:hover {
	color: white;
	background-color: crimson;
}
.brand h1 {
	font-size: 3rem;
	letter-spacing: 5px;
	/*text-transform: uppercase;*/
	color: white;
}
.brand h1 span {
	color: crimson;
}

/* Header section */

.logo-icon {
  height: 55px;
  width: auto;
  vertical-align: middle;
  
}

#header {
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100vw;
	height: auto;
}
#header .header {
	min-height: 8vh;
	background-color: rgba(31, 30, 30, 0.24);
	transition: 0.3s ease background-color;
}
#header .nav-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 100%;
	max-width: 1300px;
	padding: 0 10px;
}
#header .nav-list ul {
	list-style: none;
	position: absolute;
	background-color: rgb(31, 30, 30);
	width: 100vw;
	height: 100vh;
	left: 100%;
	top: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	z-index: 1;
	overflow-x: hidden;
	transition: 0.5s ease left;
}
#header .nav-list ul.active {
	left: 0%;
}
#header .nav-list ul a {
	font-size: 2.5rem;
	font-weight: 500;
	letter-spacing: 0.2rem;
	text-decoration: none;
	color: white;
	text-transform: uppercase;
	padding: 20px;
	display: block;
}
#header .nav-list ul a::after {
	content: attr(data-after);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0);
	color: rgba(240, 248, 255, 0.021);
	font-size: 13rem;
	letter-spacing: 50px;
	z-index: -1;
	transition: 0.3s ease letter-spacing;
}
#header .nav-list ul li:hover a::after {
	transform: translate(-50%, -50%) scale(1);
	letter-spacing: initial;
}
#header .nav-list ul li:hover a {
	color: crimson;
}
#header .hamburger {
	height: 60px;
	width: 60px;
	display: inline-block;
	border: 3px solid white;
	border-radius: 50%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 100;
	cursor: pointer;
	transform: scale(0.8);
	margin-right: 20px;
}
#header .hamburger:after {
	position: absolute;
	content: '';
	height: 100%;
	width: 100%;
	border-radius: 50%;
	border: 3px solid white;
	animation: hamburger_puls 1s ease infinite;
}
#header .hamburger .bar {
	height: 2px;
	width: 30px;
	position: relative;
	background-color: white;
	z-index: -1;
}
#header .hamburger .bar::after,
#header .hamburger .bar::before {
	content: '';
	position: absolute;
	height: 100%;
	width: 100%;
	left: 0;
	background-color: white;
	transition: 0.3s ease;
	transition-property: top, bottom;
}
#header .hamburger .bar::after {
	top: 8px;
}
#header .hamburger .bar::before {
	bottom: 8px;
}
#header .hamburger.active .bar::before {
	bottom: 0;
}
#header .hamburger.active .bar::after {
	top: 0;
}
/* End Header section */

/* home Section */
#home {
	background-image: url(./img/Homepage.png);
	background-size: cover;
	background-position: center left;
	position: relative;
	/*z-index: 1;*/
	/*object-fit:cover;
	width:100%;
	height:100%;
	object-position:center;
	transform:translateX(-50%);*/
}
#home::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-color: black;
	opacity: 0.7;
	z-index: -1;
}
#home .home {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 50px;
	justify-content: flex-start;
}
#home h1 {
	display: block;
	width: fit-content;
	font-size: 3rem;
	position: relative;
	color: transparent;
	animation: text_reveal 0.5s ease forwards;
	animation-delay: 1s;
}
#home h1:nth-child(1) {
	animation-delay: 1s;
}
#home h1:nth-child(2) {
	animation-delay: 2s;
}
#home h1:nth-child(3) {
	animation: text_reveal_name 0.5s ease forwards;
	animation-delay: 3s;
}
#home h1 span {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 0;
	background-color: crimson;
	animation: text_reveal_box 1s ease;
	animation-delay: 0.5s;
}
#home h1:nth-child(1) span {
	animation-delay: 0.5s;
}
#home h1:nth-child(2) span {
	animation-delay: 1.5s;
}
#home h1:nth-child(3) span {
	animation-delay: 2.5s;
}

/* End home Section */

/* Services Section */
#services .services {
	flex-direction: column;
	text-align: center;
	max-width: 1500px;
	margin: 0 auto;
	padding: 100px 0;
	
	background-color: white; /* #a11212;Chilli red */
}
#projects .projects {
	flex-direction: column;
	text-align: center;
	max-width: 1500px;
	margin: 0 auto;
	padding: 100px 0;
}
#services .service-top {
	max-width:835px;
	margin: 0 auto;
}

#projects .service-top {
	max-width: 1090px;
	margin: 0 auto;
}

#services .service-bottom {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 50px;
}
#services .service-item {
	/*flex-basis: 80%;
	display: flex;
	align-items: flex-start;*/
	justify-content: center;
	flex-direction: column;
	padding: 50px;
	border-radius: 10px;
	background-image: url(./img/HomeDB.png);
	/*background-size: cover;*/
	margin: 10px 5%;
	position: relative;
	z-index: 1;
	/*overflow: hidden;*/
}
#services .service-item::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-image: linear-gradient(60deg, #29323c 0%, #485563 100%);
	opacity: 0.9;
	z-index: -2;
}
#services .service-bottom .icon {
	height: 80px;
	width: 80px;
	margin-bottom: 20px;
}
#services .service-item h2 {
	font-size: 2rem;
	color: white;
	margin-bottom: 10px;
	text-transform: uppercase;
	justify-content: center;
	align-items: center;
	text-align: center;
	
}
#services .service-item p {
	color: white;
	text-align: left;
	align-items: center;
	text-align: center;
}
/* End Services Section */

/* Pricing section*/
    .packages {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
      margin: 40px 20px;
	  
	  
	 /*margin: 0;
      font-family: 'Segoe UI', sans-serif;
      
      /*color: white;
      text-align: center;*/
    }
    .card {
      background-color:#a11212;/*crimson; /*Chilli red */
      color: white;
      border-radius: 10px;
      width: 280px;
      padding: 30px 20px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      transition: transform 0.3s;
    }
    .card:hover {
      transform: scale(1.05);
    }
    .icon {
      font-size: 40px;
      margin-bottom: 15px;
    }
    .title {
      font-size: 2.5rem;
      font-weight: bold;
      margin-bottom: 10px;
	  font-family: "Times New Roman", Times, serif;

    }
    .desc {
      font-size: 1.25rem;
	  margin-top:30px;
    }
	.desc-sub{
		margin-top:30px;
		font-size: 1.5rem;
		font-weight: bold;
	
	}
	  

/*Ends Pricing section*/




/* Projects section */
#projects .projects {
	flex-direction: column;
	max-width: 1200px;
	margin: 0 auto;
	padding: 100px 0;
}
#projects .projects-header h1 {
	margin-bottom: 50px;
}
#projects .all-projects {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	margin-top: 50px;
}
#projects .project-item {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	width: 80%;
	margin: 20px auto;
	overflow: hidden;
	border-radius: 10px;
}
#projects .project-info {
	padding: 30px;
	flex-basis: 50%;
	height: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-direction: column;
	background-image: linear-gradient(60deg, #29323c 0%, #485563 100%);
	background-color: black;
    color: white;
}
#projects .project-info h1 {
	font-size: 4rem;
	font-weight: 500;
}
#projects .project-info h2 {
	font-size: 1.8rem;
	font-weight: 500;
	margin-top: 10px;
}
#projects .project-info p {
	color: white;
}
#projects .project-img {
	flex-basis: 50%;
	height: 300px;
	overflow: hidden;
	position: relative;
}
#projects .project-img:after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-image: linear-gradient(60deg, #2e3c4c 0%, #64778b 100%);
	opacity: 0.1;
}
/*#projects .project-img img {
	transition: 0.3s ease transform;
}
#projects .project-item:hover .project-img img {
	transform: scale(1.1);
}*/
/* End Projects section */

/* About Section */
#about .about {
	/*flex-direction: column-reverse;
	text-align: center;
	max-width: 1200px;
	margin: 0 auto;
	padding: 100px 20px;*/
	
	flex-direction: column;
	text-align: center;
	max-width: 1070px;
	margin: 0 auto;
	/*padding: 100px 0;*/
	 padding: 0;
	
}
.slider-wrapper {
      width: 100%;
      overflow: hidden;
      position: relative;
	  margin: 0 auto;
	  margin-top: -150px;
    }

    .slider-container {
      display: flex;
      animation: slide 10s linear infinite;
      gap: 40px;
      padding: 20px 0;
    }

    .feature-box {
     /* flex: 0 0 220px;
      max-width: 220px;
      height: 220px;
      background: white;
      border-radius: 100%;
      border: 4px solid #c62828;
      padding: 25px;
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1); */
	  
	  flex: 0 0 100%;
      max-width: 200px;
      min-width: 200px;
      height: 200px;
      margin-right: 100px;
      background: white;
      border: 4px red;
      border-radius: 100%;
      padding: 25px 25px;
      text-align: center;
      transition: box-shadow 0.2s;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      color: black;
    }
	
	 .feature-box:hover {
      box-shadow: 0 8px 25px rgba(229, 57, 53, 0.25);
    }

    .feature-icon {
      font-size: 42px;
      margin-bottom: 16px;
      color: #c62828;
    }

    .feature-title {
      font-size: 1.7rem;
      font-weight: bold;
      color: #111;
      margin-bottom: 8px;
    }

    .feature-desc {
      font-size: 1.4rem;
      padding: 0 10px;
      color: #c62828;
    }

    @keyframes slide {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-50%);
      }
    }

    /* Responsive for tablets and phones */
    @media (max-width: 768px) {
      .section-title {
        font-size: 2rem;
      }

     

      .slider-container {
        animation-duration: 10s; /* slower on smaller screens */
        gap: 20px;
      }

      .feature-box {
        flex: 0 0 180px;
        max-width: 180px;
        height: 180px;
        padding: 20px;
      }

      .feature-icon {
        font-size: 36px;
      }

      .feature-title {
        font-size: 0.95rem;
      }

      .feature-desc {
        font-size: 0.85rem;
      }
    }

    @media (max-width: 480px) {
      .slider-container {
        animation-duration: 1s;
      }

      .feature-box {
        flex: 0 0 160px;
        max-width: 160px;
        height: 160px;
      }

      .feature-icon {
        font-size: 32px;
      }
    }
/* End About Section */

/* contact Section */
#contact .contact {
	flex-direction: column;
	max-width: 1200px;
	margin: 0 auto;
	
	width: 90%;
}
#contact .contact-items {
	/* max-width: 400px; */
	width: 100%;
	
}
#contact .contact-item {
	width: 80%;
	padding: 20px;
	text-align: center;
	border-radius: 10px;
	padding: 30px;
	margin: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	box-shadow: 0px 0px 18px 0 #0000002c;
	transition: 0.3s ease box-shadow;
}
#contact .contact-item:hover {
	box-shadow: 0px 0px 5px 0 #0000002c;
}
#contact .icon {
	width: 70px;
	margin: 0 auto;
	margin-bottom: 10px;
}
#contact .contact-info h1 {
	font-size: 2.5rem;
	font-weight: 500;
	margin-bottom: 5px;
}
#contact .contact-info h2 {
	font-size: 1.3rem;
	line-height: 2rem;
	font-weight: 500;
}
/*End contact Section */

/* Footer */
#footer {
	background-image: linear-gradient(60deg, #29323c 0%, #485563 100%);
}
#footer .footer {
	min-height: 200px;
	flex-direction: column;
	padding-top: 50px;
	padding-bottom: 10px;
}
#footer h2 {
	color: white;
	font-weight: 500;
	font-size: 1.8rem;
	letter-spacing: 0.1rem;
	margin-top: 10px;
	margin-bottom: 10px;
}
#footer .social-icon {
	display: flex;
	margin-bottom: 30px;
}
#footer .social-item {
	height: 50px;
	width: 50px;
	margin: 0 5px;
}
#footer .social-item img {
	filter: grayscale(1);
	transition: 0.3s ease filter;
}
#footer .social-item:hover img {
	filter: grayscale(0);
}
#footer p {
	color: white;
	font-size: 1.3rem;
}
/* End Footer */

/* Keyframes */
@keyframes hamburger_puls {
	0% {
		opacity: 1;
		transform: scale(1);
	}
	100% {
		opacity: 0;
		transform: scale(1.4);
	}
}
@keyframes text_reveal_box {
	50% {
		width: 100%;
		left: 0;
	}
	100% {
		width: 0;
		left: 100%;
	}
}
@keyframes text_reveal {
	100% {
		color: white;
	}
}
@keyframes text_reveal_name {
	100% {
		color: crimson;
		font-weight: 500;
	}
}
/* End Keyframes */

/* Media Query For Tablet */
@media only screen and (min-width: 768px) {
	.cta {
		font-size: 2.5rem;
		padding: 20px 60px;
	}
	h1.section-title {
		font-size: 4rem;
		
	}
	

	/* home */
	#home h1 {
		font-size: 7rem;
	}
	/* End home */

	/* Services Section */
	#services .service-bottom .service-item {
		flex-basis: 45%;
		margin: 4.5%;
	}
	/* End Services Section */

	/* Project */
	#projects .project-item {
		flex-direction: row;
	}
	#projects .project-item:nth-child(even) {
		flex-direction: row-reverse;
	}
	#projects .project-item {
		height: 400px;
		margin: 0;
		width: 100%;
		border-radius: 0;
	}
	#projects .all-projects .project-info {
		height: 100%;
	}
	#projects .all-projects .project-img {
		height: 100%;
	}
	/* End Project */

	/* About */
	#about .about {
		flex-direction: row;
	}
	#about .col-left {
		width: 600px;
		height: 400px;
		padding-left: 60px;
	}
	#about .about .col-left .about-img::after {
		left: -45px;
		top: 34px;
		height: 98%;
		width: 98%;
		border: 10px solid crimson;
	}
	#about .col-right {
		text-align: left;
		padding: 30px;
	}
	#about .col-right h1 {
		text-align: left;
	}
	/* End About */

	/* contact  */
	#contact .contact {
		flex-direction: column;
		padding: 100px 0;
		align-items: center;
		justify-content: center;
		min-width: 20vh;
	}
	#contact .contact-items {
		width: 100%;
		display: flex;
		flex-direction: row;
		justify-content: space-evenly;
		margin: 0;
	}
	#contact .contact-item {
		width: 30%;
		margin: 0;
		flex-direction: row;
	}
	#contact .contact-item .icon {
		height: 100px;
		width: 100px;
	}
	#contact .contact-item .icon img {
		object-fit: contain;
	}
	#contact .contact-item .contact-info {
		width: 100%;
		text-align: left;
		padding-left: 20px;
	}
	/* End contact  */
}
/* End Media Query For Tablet */

/* Media Query For Desktop */
@media only screen and (min-width: 1200px) {
	/* header */
	#header .hamburger {
		display: none;
	}
	#header .nav-list ul {
		position: initial;
		display: block;
		height: auto;
		width: fit-content;
		background-color: transparent;
	}
	#header .nav-list ul li {
		display: inline-block;
	}
	#header .nav-list ul li a {
		font-size: 1.8rem;
	}
	#header .nav-list ul a:after {
		display: none;
	}
	/* End header */

	#services .service-bottom .service-item {
		flex-basis: 22%;
		margin: 1.5%;
	}
}
/* End  Media Query For Desktop */
<style>
    * {
      box-sizing: border-box;
    }
    body {
      margin: 0;
      font-family: 'Inter', sans-serif;
      background-color: #fdfdfd;
      color: #333;
    }
    .section {
      padding: 60px 30px;
      max-width: 1200px;
      margin: auto;
      text-align: center;
    }
    .section h2 {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 10px;
    }
    .section p {
      font-size: 1rem;
      color: #777;
      margin-bottom: 50px;
    }


	
.floating-buttons {
  position: fixed;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.call-button,
.whatsapp-button {
  background-color:  #1EBE4A; /* #25D366; /* WhatsApp green */
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.call-button {
  background-color: black;/* #00aaff; /* Call button blue */
}

.call-button:hover,
.whatsapp-button:hover {
  transform: scale(1.1);
}

.call-button img,
.whatsapp-button img {
  width: 24px;
  height: 24px;
}

/*FAQs*/

.faq-title span {
	color: crimson;
}
   :root {
      --primary: #0d3b66;
      --accent: #27ae60;
      --background: #f8f9fa;
      --text: #2f2f2f;
      --muted: #666;
    }

    
    .faq-container {
      max-width: 900px;
      margin: auto;
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 20px 30px rgba(0, 0, 0, 0.08);
      padding: 50px 40px;
    }

    .faq-title {
      font-size: 2.2rem;
      text-align: center;
      font-weight: 700;
      margin-bottom: 40px;
    }

    .accordion-item {
      border-bottom: 1px solid #e0e0e0;
    }

    .accordion-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 10px;
      cursor: pointer;
      transition: background 0.3s;
    }

    .accordion-header:hover {
      background-color: #f0f0f0;
    }

    .accordion-question {
      font-size: 1.4rem;
      color: var(--text);
      font-weight: 600;
    }

    .accordion-icon {
      font-size: 1.5rem;
      color: var(--accent);
      transition: transform 0.3s;
    }

    .accordion-content {
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      padding: 0 10px;
      transition: all 0.4s ease;
      font-size: 1.2rem;
      color: var(--muted);
      line-height: 1.6;
    }

    .accordion-content.active {
      padding: 15px 10px 25px;
      max-height: 500px;
      opacity: 1;
    }

    .accordion-header.active .accordion-icon {
      transform: rotate(45deg);
    }

    @media (max-width: 600px) {
      .faq-title {
        font-size: 1.7rem;
      }
    }
/*FAQs*/


/* Get quotes start*/

.floating-buttons-get {
	
  position: fixed;
  top: 70%;
  right: 20px;
  /*transform: translateY(-50%);*/
 /* z-index: 9999;*/
  display: flex;
  flex-direction: column;
  gap: 15px;
	
	
}

.open-modal-btn {
      padding: 14px 28px;
      font-size: 1.5rem;
      background-color: crimson;
      color: white;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      margin: 100px auto;
      display: block;
	  font-weight: 600;
    }

    /* Modal styles */
    .modal {
      display: none;
      position: fixed;
      z-index: 1000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      overflow: auto;
      background: rgba(0, 0, 0, 0.5);
      animation: fadeIn 0.3s ease-in-out;
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    .modal-content {
      background-color: #fff;
      margin: 10% auto;
      padding: 30px 40px;
      border-radius: 16px;
      max-width: 500px;
      position: relative;
      box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }

    .modal-content h2 {
      text-align: center;
      margin-bottom: 20px;
      color: #0d3b66;
    }

    .close-btn {
      position: absolute;
      top: 15px;
      right: 20px;
      font-size: 1.5rem;
      color: #999;
      cursor: pointer;
    }

    .form-group {
      margin-bottom: 20px;
    }

    .form-group label {
      font-weight: 600;
      margin-bottom: 6px;
      display: block;
      color: #333;
    }

    .form-group input {
      width: 100%;
      padding: 12px;
      border-radius: 8px;
      border: 1px solid #ccc;
      font-size: 1rem;
    }

    .btn-group {
      display: flex;
      gap: 12px;
      margin-top: 20px;
    }

    .btn-group button {
      flex: 1;
      padding: 12px;
      font-weight: bold;
      font-size: 1rem;
      border: none;
      border-radius: 8px;
      cursor: pointer;
    }

    .email-btn {
      background-color: #0d3b66;
      color: white;
    }

    .email-btn:hover {
      background-color: #093054;
    }

    .whatsapp-btn {
      background-color: #25D366;
      color: white;
    }

    .whatsapp-btn:hover {
      background-color: #1ebe57;
    }

    @media (max-width: 600px) {
      .modal-content {
        margin: 20% auto;
        padding: 25px;
      }

      .btn-group {
        flex-direction: column;
      }
    }
/* Get quotes ends-->
  </style>
