@import url('https://fonts.googleapis.com/css2?family=Scope+One&display=swap');


@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --full-width: 100vw;
}

body,
html {
    height: 100%;
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    background: black;
}



/* Navbar container adjustments */

nav.navbar {
  padding: 15px 20px; /* Adjust top/bottom padding instead of image */
}
@media (max-width: 768px) {
  .logo img {
    max-height: 50px;
  }
}


.navbar {
  padding: 10px 20px;
}

nav.navbar .container-fluid {
  display: flex !important;
  align-items: center;
}


.container-fluid {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  height: auto;
}

/* Logo adjustments */
.logo {
  display: flex;
  align-items: center;
}

.logo img {
  max-height: 60px;    /* Prevent overflow */
  width: auto;
  display: block;
}

/* Nav links styling */
.nav-links {
  display: flex;
  color: white;
  border-radius: 30px;
  padding: 18px 60px;  
  gap: 30px;
  font-weight: 500;
   font-family: "Lato", sans-serif;
  background: linear-gradient(
  to right,
  rgba(0, 0, 64, 0.4),
  rgba(72, 61, 139, 0.4),
  rgba(138, 43, 226, 0.4),
  rgba(255, 105, 180, 0.4),
  rgba(75, 0, 130, 0.4)   
  );
}

/* Contact button */
.contact-btn {
  border-radius: 30px;
  padding: 18px 45px;  
  font-weight: 500;
  color: white;
  text-decoration: none;
   font-family: "Lato", sans-serif;
  background: linear-gradient(
  to right,
  rgba(0, 0, 64, 0.4),
  rgba(72, 61, 139, 0.4), 
  rgba(138, 43, 226, 0.4), 
  rgba(255, 105, 180, 0.4),  
  rgba(75, 0, 130, 0.4)  
  );
}

.contact-btn:hover {
  background-color: white;
  color: black;
}

/* Hamburger toggler */
.navbar-toggler {
  border: none;
  font-size: 1.5rem;
  background: transparent;
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
 margin: 10px 25px 0px;
  width: 30%;
  height: 30vh;
    background-color: black;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 20px;
}

.mobile-menu a {
  color: white;
  font-size: 18px;
  margin: 10px 0;
  text-decoration: none;
}

.close-icon {
  position: absolute;
  top: 20px;
  left:0;
  margin: 0px 8px 0px;
  top: 0;
  font-size: 30px;
  cursor: pointer;
  color: white;
}

/* Responsive behavior */
@media (max-width: 991px) {
  .d-lg-flex {
    display: none !important;
  }
  .navbar-toggler {
    display: block;
  }
  .nav-links {
    flex-direction: column;
    align-items: start;
    padding: 15px;
    width: 100%;
    background: none;
    border-radius: 0;
  }
}

@media (min-width: 992px) {
  .navbar-toggler {
    display: none;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .mobile-menu {
    display: none !important;
  }
}

.hero-section {
    background-size: cover;
    background-position: center;
    max-height: 100vh;
    height: 100%;
    position: relative;
    z-index: 1;
    overflow: hidden;
}


/*
.background-video {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  max-height: 100%;
  height:100vh;
  object-fit: cover;
  z-index: -1;
}
*/


/* Background video styles */
.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; 
  z-index: -2;
}

/*-----------------------nav-card -------------------------------------*/

.hero-card {
    color:white;
    border-radius: 40px;
    padding: 40px;
    max-width: 450px;
    height: 450px;
    border: 1px solid #00f0ff; 
    box-shadow: 0 0 10px #00f0ff, 0 0 20px #00f0ff;
    background: linear-gradient(
    to right,
    rgba(0, 0, 64, 0.4),
    rgba(72, 61, 139, 0.4), 
    rgba(138, 43, 226, 0.4), 
    rgba(255, 105, 180, 0.4), 
    rgba(75, 0, 130, 0.4)
    );
}

@media only screen and (max-width: 400px) {
    .bg {
        min-height: 630px;
    }
}

@media only screen and (max-width: 500px) {
     .bg{
        min-height: 642px;
    }
}
   
.hero-card h1 {
    font-size: 50px;
     font-family: "Lato", sans-serif;
    font-weight: 200 !important;
    line-height: 1.1; 
}

.hero-card h5 {
    font-weight:500;
     font-family: "Scope", sans-serif;
}

.hero-card p {
    font-size: 16px;
     font-family: "Scope", sans-serif;
}

.hero-card a {
     font-family: "Lato", sans-serif;
}

.hero-card .btn-outline {
    border: 1px solid white;
    border-radius: 30px;
    padding: 10px 25px;
    color: white;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
}


.hero-card .btn-outline:hover {
    background-color: white;
    color: black;
    cursor: pointer;
}

@media (max-width: 768px) {
    .hero-card {
        padding: 30px 20px;
        margin: 20px;
    }

    .hero-card h1 {
        font-size: 30px;
    }
}

/*----------------------black section--------------------------------*/

.green-section {
    background-color: black;
    color: #00f0ff;
    padding: 80px 0;
}

.green-section h1 {
    font-size: 52px;
    line-height: 1.2;
    font-weight: 400;
     font-family: "Lato", sans-serif;
    color: #00f0ff;
}

.green-section p {
     font-family: "Lato", sans-serif;
    font-size: 16px;
    color: white;
}

.green-section .btn-outline {
    background-color: white;
    color: black;
    border-radius: 30px;
    padding: 6px 20px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 20px;
}

/*----------------float container -------------------*/
.float-container {
    position: relative;
    height: 450px;
    width: 100%;
}

.float-img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 20px;
    position: absolute;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.img-top-right {
    top: 0;
    right: 0;
    animation: floatY 4s ease-in-out infinite;
}


.img-middle-left {
    top: 140px;
    left: 150px;
    animation: floatX 5s ease-in-out infinite;
}

.img-bottom-right {
    bottom: 0;
    right: 40px;
    animation: floatY 6s ease-in-out infinite;
}

@media (max-width: 768px) {
    .green-section {
        padding: 50px 0;
    }
    h1 {
        font-size: 36px;
    }
    .float-container {
        height: auto;
        position: static;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .float-img {
        position: static;
        width: 120px;
        height: 120px;
        box-shadow: none;
    }
}


/* Keyframes for infinite float effect */
@keyframes floatY {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes floatX {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(15px);
    }

    100% {
        transform: translateX(0);
    }
}

/*-----------------services --------------------*/

#services{
    background-color:#040120 ;
}

.section-title {
  
     font-family: "Lato", sans-serif;
    font-size: 48px;
    font-weight: 700;
    color:#00f0ff;
}

.tag-btn {
    background-color: black;
    color: white;
    font-weight: 500;
    font-size: 14px;
    padding: 6px 19px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 16px;
}

.service-card {
    text-align: center;
    padding: 10px 20px;
    perspective: 1000px;
}

.service-card img {
  width: 100%;
  height: 350px;              /* Maintain original aspect ratio */
  max-width: 100%;
  border-radius: 30px;
  margin-bottom: 20px;
  object-fit: cover;       /* <-- Show full image without cropping */
  display: block;
}

.service-title {
     font-family: "Lato", sans-serif;
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
     color: white;
}

.service-title::before {
    content: '';
    width: 8px;
    height: 8px;
    background-color: #00f0ff; 
    border-radius: 50%;
    display: inline-block;
}

.service-subtext {
    font-size: 14px;
    color: white;
     font-family: "Lato", sans-serif;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 32px;
    }

    .service-card img {
        height: 220px;
    }
}

@media (max-width: 600px) {
  .service-card img {
    border-radius: 20px;
    height: auto;        /* Don't fix height */
    max-height: 250px;   /* Optional limit */
  }

  .service-card {
    padding: 10px;
  }
}


/*--------------------testimonial--------------*/

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
     font-family: "Lato", sans-serif;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background-color: white;
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 24rem;
}

.testimonial-image {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.testimonial-name {
    font-size: 1.25rem;
    font-weight: bold;
    color: rgb(31, 41, 55);
}

.testimonial-role {
    font-size: 0.875rem;
    color: rgb(75, 85, 99);
    margin-bottom: 1.5rem;
}

.testimonial-text {
    color: rgb(55, 65, 81);
    margin-bottom: 1.5rem;
    line-height: 1.625;
}

.rating {
    display: flex;
    gap: 0.25rem;
}

.star {
    width: 1.5rem;
    height: 1.5rem;
}

.star.filled {
    color: rgb(250, 204, 21, 0.671);
    fill: rgba(250, 204, 21, 0.671);
}

.star.empty {
    color: rgb(209, 213, 219);
}


/*-------------contact_section-------------*/

  .contact_section {
      background: url('../images/contact.jpeg') no-repeat center center/cover;
      min-height: 100vh;
      display: flex;
      align-items: center;
    }

    .hero-card1 {
      background-color: #fffdf9;
      border-radius: 30px;
      padding: 40px 30px;
      max-width: 600px;
      width: 100%;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
      margin-right: 5%;
    }

    .hero-card1 h1 {
     font-family: "Lato", sans-serif;
      font-size: 32px;
      color: black;
      margin-bottom: 30px;
    }

    label {
      font-size: 14px;
      margin-bottom: 6px;
      color: black;
    }

    .form-control {
      border-radius: 999px;
      border: 1px solid  #1b164c;;
      padding: 12px 20px;
      font-size: 15px;
      background-color: #fff;
    }

    textarea.form-control {
      border-radius: 20px;
      resize: none;
    }

    .submit-btn {
      background-color: black;
      color: #fff;
      border: none;
      width: 100%;
      padding: 14px;
      border-radius: 999px;
      font-weight: 500;
      font-size: 16px;
      margin-top: 20px;
      transition: 0.3s ease;
    }

    .submit-btn:hover {
      background-color: #17154d;
    }

    @media (max-width: 768px) {
      .hero-card1 {
        margin: 0 auto;
        padding: 30px 20px;
      }

      .contact_section {
        padding: 20px 10px;
        justify-content: center !important;
      }
    }

    /*------------footer-------------*/
    
.footer{
	background: black;
	box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12);
	box-sizing: border-box;
	width: 100%;
	text-align: left;
	font: bold 16px sans-serif;
	padding: 55px 50px;
    color:#fff!important;
}

.footer .footer-left,
.footer .footer-center,
.footer .footer-right{
	display: inline-block;
	vertical-align: top;
}

/* Footer left */

.footer .footer-left{
	width: 40%;
}


.footer h3{
	color:  #ffffff;
    font-size: 50px;
    font-family: "Lato", sans-serif;
    font-weight: 50;
	margin: 0;
}

.footer h3 span{
	color:   #1b164c;
}

/* Footer links */

.footer .footer-links{
	color:  #ffffff;
	margin: 20px 0 12px;
	padding: 0;
}

.footer .footer-links a{
	display:inline-block;
	line-height: 1.8;
    font-weight:400;
	text-decoration: none;
	color:  inherit;
}

.footer .footer-name{
    color: grey;
	font-size: 14px;
	font-weight: normal;
	margin: 0;
}

/* Footer Center */

.footer .footer-center{
	width: 35%;
}

.footer .footer-center i{
	background-color:  white;
	color: black;
	font-size: 25px;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	text-align: center;
	line-height: 42px;
	margin: 10px 15px;
	vertical-align: middle;
}

.footer .footer-center i.fa-envelope{
	font-size: 17px;
	line-height: 38px;
}

.footer .footer-center p{
	display: inline-block;
	color: #ffffff;
    font-weight:400;
	vertical-align: middle;
	margin:0;
}

.footer .footer-center p span{
	display:block;
	font-weight: normal;
	font-size:14px;
	line-height:2;
}

.footer .footer-center p a{
	color:  teal;
	text-decoration: none;
}

.footer .footer-links a:before {
  content: "|";
  font-weight:300;
  font-size: 20px;
  left: 0;
  color: #fff;
  display: inline-block;
  padding-right: 5px;
  
}

.footer-links>a{
     font-weight: 300;
      font-family: "Lato", sans-serif;
}

.footer .footer-links .link-1:before {
  content: none;
}


/*--------------------------*/
.footer-center.address-wrapper {
  display: flex;
  flex-direction: row; 
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding: 15px;
  width: 40%;
  flex-wrap: wrap;

}

.footer-center.address-wrapper > div {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-width: 300px;
  flex: 1;
}


.footer-center.address-wrapper i {
  font-size: 18px;
  margin-top: 2px;
  color: black;
  flex-shrink: 0;
}


.footer-center.address-wrapper p,
.footer-center.address-wrapper a {
  margin: 0;
  line-height: 1.5;
  color: white;
  font-size: 14px;
  text-decoration: none;
}

.footer-center.address-wrapper a:hover {
  text-decoration: underline;
}

/* Wrap address text */
.p-address p {
  word-break: break-word;
}

@media (min-width: 600px) {
  .footer-center.address-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-center.address-wrapper > div {
    width: 100%;
  }
}

/*------------------ Footer Right ---------------------*/
.footer .footer-about{
	line-height: 20px;
	color:  #92999f;
	font-size: 13px;
	font-weight: normal;
	margin-top: 5px;
     font-family: "Lato", sans-serif;
}

.footer .footer-about span{
	display: block;
	color:  #ffffff;
	font-size: 14px;
	font-weight: bold;
	margin-bottom: 20px;
}

.footer .footer-socials{
	margin-top: 25px;
}

.footer .footer-socials a{
	display: inline-block;
	font-size: 35px;
	cursor: pointer;
	color: #ffffff;
	text-align: center;
	line-height: 35px;
	margin-right: 5px;
	margin-bottom: 5px;
}

.footer .logo {
    max-width: 100px;
    height: 100px;
    width: 150px;
    margin-bottom: 15px;
}

.footer .p-address p span{
    font-weight: 20px;
     font-family: "Lato", sans-serif;
}

.footer .footer-links{
	color:  #ffffff;
	margin: 20px 0 12px;
	padding: 0;
}


/* Responsive Footer for Mobile */
@media (max-width: 800px) {
    .footer {
        text-align: center;
        font: bold 14px sans-serif;
    }

    .footer .footer-left,
    .footer .footer-center,
    .footer .footer-right {
        width: 100%;
        display: block;
        margin-bottom: 30px;
        text-align: center;
    }

	.footer .footer-center i{
		margin-left: 0;
	}

    .footer .footer-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .footer .footer-socials {
        margin-top: 10px;
    }

    .footer .footer-socials a {
        font-size: 20px;
        
    }

    .footer .address-wrapper i,
    .footer .footer-center i {
        display: inline-block;
        margin-right: 8px;
    }

    .footer .address-wrapper p,
    .footer .footer-center p {
        display: inline-block;
        margin: 0;
    }

    .footer .address-wrapper .txt {
        margin-top: 10px;
    }

    .footer .footer-about {
        font-size: 14px;
        padding: 0 15px;
    }

    .footer-name {
        font-size: 14px;
    }
}

/*--------------------------scrollButton---------------------------*/


 