
@import url('https://fonts.googleapis.com/css2?family=Homemade+Apple&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');
*
{
    font-family: "Work Sans", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    margin: 0;
    padding: 0;
}
/*------Navigation_bar-------*/
#nav-bar {
  transition: all 0.3s ease-in-out;
  position: sticky;
  top: 50px;
  z-index: 10;
  width: 100%;
}

.navbar-scrolled {
  background: #01003c !important;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.navbar-nav {
  display: flex;
  align-items: center;
}

.navbar-nav li {
  padding: 0 10px;
}

.navbar-nav li a {
  text-align: left;
}

#nav-bar ul li a:hover {
  color: lightseagreen !important;
}

.navbar {
  background: transparent;
}

.navbar-toggler {
  border: none !important;
  outline: none !important;
}

.nav-link {
  color: rgb(255, 255, 255) !important;
  font-weight: 700;
  font-size: 16px;
  font-family: 'Work Sans', sans-serif;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
  .navbar-nav {
      flex-direction: column;
      text-align: center;
      width: 100%;
  }

  .navbar-nav li {
      padding: 10px 0;
  }

  .navbar-collapse {
      background: #01003c;
      padding: 10px;
      border-radius: 5px;
  }

  .nav-link {
      display: block;
      padding: 10px;
      font-size: 18px;
  }

  .navbar-toggler {
      display: block;
      color: white;
  }
}
/*----------Banner-------------*/
.img{
    background: url('pics/homepg-banner.jpg')no-repeat;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
  }
  .img::before{
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(0, 24, 49, 0.9) 45%, rgba(80, 151, 186, 0.6) 100%);
  }
  .center{
    position: absolute;
    top: 52%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    padding: 0 20px;
    text-align: left;
  }
  .center .title{
    color: #fff;
    font-size: 70px;
    font-weight: bolder;
    margin-bottom: -40px;
    text-shadow: 0 0 7px lightseagreen,
        0 0 10px lightseagreen,
        0 0 20px #01003c,
        0 0 30px #01003c,
        0 0 40px #01003c,
        0 0 55px #01003c;
  }
  .center .title1{
    color: #fff;
    font-size: 70px;
    font-weight: bolder;
    margin-bottom: -10px;
    text-shadow: 0 0 7px lightseagreen,
        0 0 10px lightseagreen,
        0 0 20px #01003c,
        0 0 30px #01003c,
        0 0 40px #01003c,
        0 0 55px #01003c;
  }
  .center .sub_title{
    color: #bfbfbf;
    font-size: 25px;
    font-weight: 600;
    font-family: 'Homemade Apple', sans-serif;
    font-style: italic;
    text-shadow: 0 0 5px black;
  }
  .center .btns{
    margin-top: 20px;
  }
  .center .btns button{
    height: 55px;
    width: 170px;
    border-radius: 30px;
    border: none;
    border: 2px solid lightseagreen;
    font-size: 20px;
    font-weight: 500;
    padding: 0 10px;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
  }
  .center .btns button:first-child{
    color: lightseagreen;
    background: none;
  }
  .btns button:first-child:hover{
    border: 2px solid lightseagreen;
    background: lightseagreen;
    color: white;
  }
  @media (max-width: 768px) {
    .img {
        height: 70vh; /* Reduce height for tablets */
        background-size: cover;
    }

    .center {
        top: 40%;
        padding: 0 10px;
    }

    .center .title {
        font-size: 50px; /* Reduce title size */
        margin-bottom: -20px;
    }

    .center .title1 {
        font-size: 50px; /* Reduce title size */
        margin-bottom: -10px;
    }

    .center .sub_title {
        font-size: 20px;
    }

    .center .btns button {
        height: 45px;
        width: 140px;
        font-size: 18px;
    }
}

/* ======= Mobile Phones (Extra Small Screens) ======= */
@media (max-width: 480px) {
    .img {
        height: 60vh; /* Reduce height */
        background-size: cover;
        background-position: top;
    }

    .center {
        top: 35%; /* Keep it vertically centered */
        text-align: center; /* Ensure everything is centered */
        width: 100%;
        padding: 0 15px;
    }

    .center .title {
        font-size: 35px; /* Reduce title size */
        margin-bottom: -18px;
    }

    .center .title1 {
        font-size: 35px; /* Reduce title size */
        margin-bottom: -5px;
    }

    .center .sub_title {
        font-size: 15px;
    }

    .center .btns button {
        height: 35px;
        width: 120px;
        font-size: 14px;
    }
}
    /*---------Overview----------*/
    .overview {
      background-image: linear-gradient(rgba(255, 255, 255, 0.8),rgba(255, 255, 255, 0.8)), url(pics/building.jpg);
      background-position: center;
      background-size: cover;
      color: #000000!important;
      background-attachment: fixed;
      color: #333;
      padding: 20px;
    }

    .container {
      max-width: 1200px;
      margin: 50px auto;
      display: flex;
      justify-content: space-between;
      gap: 20px;
    }
    .card {
      flex: 1;
      background: rgba(255, 255, 255, 0.9); /* Semi-transparent white */
      border-radius: 8px;
      padding: 20px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      text-align: center;
    }

    .card h1 {
      font-size: 1.6rem;
      margin-bottom: 15px;
      color: #1a237e; /* Dark blue */
      font-weight: bolder;
    }
    .card p {
      font-size: 1rem;
      line-height: 1.6;
      color: #666;
    }
    .divider {
      width: .8px;
      background-color: #8e8e8e;
      height: auto;
      margin: 0 10px;
    }

    @media (max-width: 768px) {
      .overview {
          padding: 20px; /* Reduce padding */
      }
  
      .container {
          flex-direction: column; /* Stack sections vertically */
      }
  
      .card {
          width: 100%; /* Adjust width for smaller screens */
      }
  }
    /*---------formula to success----------*/
    .formula{
      background-image: url(pics/navyblue-background.jpg);
      background-size: cover;
      background-position: center;
      padding: 40px;
      text-align: center;
      color: #fff;
    }
    .subhead h2{
      font-weight: 700;
      font-family: 'Homemade Apple', sans-serif;
      font-size: 40px;
      margin-bottom: -20px;
    }
    .subhead h3{
      font-weight: 700;
      font-size: 80px;
    }
    .content-formula1 p{
      font-size: 20px;
      font-family: "Poppins", serif;
      margin-bottom: -15px;
    }
    .content-formula1 p:hover{
      font-size: 25px;
      font-weight: 700;
      font-family: "Poppins", serif;
      margin-bottom: -15px;
      text-shadow: 0 0 7px #01003c,
        0 0 10px #01003c,
        0 0 20px goldenrod,
        0 0 30px goldenrod,
        0 0 40px goldenrod,
        0 0 55px goldenrod,
        0 0 70px goldenrod;
    }
    .content-formula2 p{
      font-size: 35px;
      font-family: "Poppins", serif;
      margin-bottom: -25px;
    }
    .content-formula2 p:hover{
      font-size: 40px;
      font-weight: 700;
      font-family: "Poppins", serif;
      margin-bottom: -15px;
      text-shadow: 0 0 7px #01003c,
        0 0 10px #01003c,
        0 0 20px goldenrod,
        0 0 30px goldenrod,
        0 0 40px goldenrod,
        0 0 55px goldenrod,
        0 0 70px goldenrod;
    }
    .content-formula3 p{
      font-size: 50px;
      font-family: "Poppins", serif;
    }
    .content-formula3 p:hover{
      font-size: 55px;
      font-weight: 700;
      font-family: "Poppins", serif;
      text-shadow: 0 0 7px #01003c,
        0 0 10px #01003c,
        0 0 20px goldenrod,
        0 0 30px goldenrod,
        0 0 40px goldenrod,
        0 0 55px goldenrod,
        0 0 70px goldenrod;
    }

    @media (max-width: 768px) {
      .formula {
          padding: 20px; /* Reduce padding */
      }
  
      .subhead h2 {
          font-size: 25px; /* Adjust heading size */
      }
  
      .subhead h3 {
          font-size: 50px; /* Adjust heading size */
      }
  
      .content-formula1 p {
          font-size: 13px; /* Adjust font size */
          margin-bottom: 0px;
      }
  
      .content-formula2 p {
          font-size: 16px; /* Adjust font size */
          margin-bottom: 0px;
      }
  
      .content-formula3 p {
          font-size: 30px; /* Adjust font size */
      }
  }
    
/*----------------INDUSTRIES------------*/
#industries
{
  margin: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
}
#industries h4
{
  font-size: 50px;
  font-weight: bolder;
  text-align: center;
  text-transform: uppercase;
  padding-top: 10px;
  color: #01003c;
}
.ind-container
{
  padding-top: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}
.s-ind
{
  background-image: url(pics/org-bg.jpg);
  text-align: center;
  border: 1px solid transparent;
  border-radius: 20px;
}
.s-ind:hover
{
  background: #01003c;
  cursor: pointer;
  transition: 0.7s;
  color: #efefef;
}
.s-ind__logo
{
  padding-top: 20px;  
}
.ind-info
{
  padding: 2rem;
}
.ind-info h5
{
  font-weight: bold;
}

@media (max-width: 768px) {
  .ind-container {
      grid-template-columns: repeat(2, 1fr); /* 2 columns for medium screens */
  }
}

@media (max-width: 600px) {
  .ind-container {
      grid-template-columns: 1fr; /* 1 column for small screens */
  }
}

/*----------------ABOUT------------*/
.about-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 90px;
  background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(0, 24, 49, 0.9) 45%, rgba(80, 151, 186, 0.6) 100%), url(pics/about-banner.jpg);
  background-size: cover;
  background-position: center;
  color: white;
}

.about-section_content {
  max-width: 700px;
  margin-left: -40%;
}
.about-section_content h1 {
  font-weight: bold;
  font-size: 4rem;
  margin-bottom: 20px;
  color: lightseagreen;
  font-family: 'Work Sans', sans-serif;
}
.about-section_content p {
  font-size: 1.2rem;
  line-height: 1.8;
  font-family: 'Work Sans', sans-serif;
}
@media (max-width: 768px) {

  .about-section {
    padding: 50px 20px;
    background-position: center center;
    background-attachment: scroll;
    height: 70vh;
    text-align: center; /* Center the text */
  }

  .about-section_content {
    max-width: 90%;
    margin-left: auto; /* Remove negative margin */
    margin-right: auto;
  }

  .about-section_content h1 {
    font-size: 2.5rem; /* Reduce size for better mobile layout */
  }

  .about-section_content p {
    font-size: .8rem;
    line-height: 1.6;
  }

  .about-content .container {
      grid-template-columns: 1fr; /* 1 column for small screens */
  }
}
/*----------------ABOUT-CONTENT------------*/
.about-content {
  background-image: linear-gradient(rgba(255, 255, 255, 0.8),rgba(255, 255, 255, 0.8)), url(pics/building.jpg);
  background-position: center;
  background-size: cover;
  color: #000000!important;
  background-attachment: fixed;
  padding: 10px;
}

.about-content .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  gap: 20px;
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 20px;
}

.about-content .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  line-height: 1.6;
}

.about-content .content h2 {
  font-size: 2.2rem;
  font-weight: bolder;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: lightseagreen;
}

.about-content .content p {
  font-size: 1.2rem;
  line-height: 1.5;
  text-align: justify;
  color: #01003c;
}

.image {
  border-radius: 8px;
  overflow: hidden;
  margin: 20px;
}

.image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.row-span {
  grid-column: span 2;
  text-align: center;
}

.row-span h3 {
  margin-top: 20px;
}

@media (max-width: 768px) {
  .about-content {
    background-attachment: scroll; /* Prevent fixed background issues on mobile */
    padding: 30px 15px; /* Reduce padding for smaller screens */
  }

  .about-content .container {
    grid-template-columns: 1fr; /* Single column layout */
    gap: 15px;
    margin: 30px auto;
  }

  .about-content .content {
    text-align: center; /* Center text for better readability */
  }

  .about-content .content h2 {
    font-size: 1.8rem; /* Slightly smaller for mobile */
  }

  .about-content .content p {
    font-size: 1rem;
    text-align: center; /* Center paragraph text */
  }

  .image {
    margin: 10px auto; /* Center image */
  }

  .row-span {
    grid-column: span 1; /* Ensure full width */
  }
}
/*----------------ABOUT------------*/
.services-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 90px;
  background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(0, 24, 49, 0.9) 45%, rgba(80, 151, 186, 0.6) 100%), url(pics/services-banner.jpg);
  background-size: cover;
  background-position: center;
  color: white;
}

.services-section_content {
  max-width: 700px;
  margin-left: -40%;
}
.services-section_content h1 {
  font-weight: bold;
  font-size: 4rem;
  margin-bottom: 20px;
  color: lightseagreen;
  font-family: 'Work Sans', sans-serif;
}
.services-section_content p {
  font-size: 1.2rem;
  line-height: 1.8;
  font-family: 'Work Sans', sans-serif;
}

@media (max-width: 768px) {

  .services-section {
    padding: 50px 20px;
    background-position: center center;
    background-attachment: scroll;
    height: 70vh;
    text-align: center; /* Center the text */
  }

  .services-section_content {
    max-width: 90%;
    margin-left: auto; /* Remove negative margin */
    margin-right: auto;
  }

  .services-section_content h1 {
    font-size: 2.5rem; /* Reduce size for better mobile layout */
  }

  .services-section_content p {
    font-size: .8rem;
    line-height: 1.6;
  }

  .services-content .container {
      grid-template-columns: 1fr; /* 1 column for small screens */
  }
}
/*----------------services------------*/
.services {
  padding: 40px;
}

.services-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.services-card {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  width: 300px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.services-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
}

.services-card h3 {
  font-size: 25px;
  margin: 10px 0;
  color: #01003c;
  font-weight: bold;
}

.services-card p {
  font-size: 15px;
  color: #666;
  flex-grow: 1;
}

.learn-more {
  background-color: #01003c;
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 5px;
  margin-top: 10px;
  align-self: stretch;
}

.learn-more:hover {
  background-color: lightseagreen;
}
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top:0;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
  padding: 60px;
  border-radius: 10px;
  display: flex;
  width: 100%;
  height: 100%;
  text-align: left;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  justify-content: center;
}
.modal-content {
  max-width: 1000px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  background: white;
  padding: 50px;
  margin: 10% auto;
  width: 90%;
  border-radius: 10px;
  transition: all 5s ease-in-out;
}
.modal-content h3 {
  font-size: 30px;
  margin: 10px 0;
  color: #01003c;
  font-weight: bold;
}
.close {
  float: right;
  cursor: pointer;
}
@media (max-width: 768px) {
  .container {
      grid-template-columns: repeat(2, 1fr);
  }
}
/*----------------blog-content------------*/
.blog-sect {
  display: flex;
  justify-content: center;
  padding: 60px;
  background-color: whitesmoke;
  box-shadow: 
  inset 0px 10px 10px rgba(0, 0, 0, 0.4),  /* Top shadow */
  inset 0px -10px 10px rgba(0, 0, 0, 0.4); /* Bottom shadow */
}
.blog-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns */
  gap: 20px;
  max-width: 1000px;
}
.blog-card {
  display: flex;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  height: 150px; /* Consistent card size */
}

.blog-card:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.blog-image {
  width: 40%;
  height: 100%;
  object-fit: cover;
}

.blog-content {
  width: 60%;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.blog-title {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  transition: color 0.3s;
  text-align: left;
}

.blog-title:hover {
  color: lightseagreen;
}

/* Responsive Design */
@media (max-width: 900px) {
  .blog-container {
      grid-template-columns: repeat(2, 1fr); /* 2 columns for medium screens */
  }
}

@media (max-width: 600px) {
  .blog-container {
      grid-template-columns: 1fr; /* 1 column for small screens */
  }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-content {
  background: #fff;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 1000px; /* Prevents it from being too wide */
    max-height: 90vh; /* Prevents overflow */
    overflow-y: auto; /* Enables scrolling for long content */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.close {
  float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}
/*----------------footer------------*/
#Footer{
  width: 100%;
  display: inline-block;
  background: #fff;
  height: 40vh;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  text-decoration: underline;
}

.footer-left img {
  width: 30%;
  height: 100%;
  object-fit: cover;
}

.footer-distributed{
	background: #01003c;
	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;
}

.footer-distributed .footer-left,
.footer-distributed .footer-center,
.footer-distributed .footer-right{
	display: inline-block;
	vertical-align: top;
}

/* Footer left */

.footer-distributed .footer-left{
	width: 40%;
}

/* The company logo */

.footer-distributed h3{
	color:  #ffffff;
	font-size: 30px;
	margin: 0;
}

/* Footer links */

.footer-distributed .footer-links{
	color:  #ffffff;
	margin: 20px 0 12px;
	padding: 0;
}

.footer-distributed .footer-links a{
	display:inline-block;
	line-height: 1.8;
  font-weight:400;
	text-decoration: none;
	color:  inherit;
}

.footer-links a:hover{
  color: lightseagreen!important;
  font-weight: bold;
}

.footer-distributed .footer-company-name{
  padding-top: 10px;
  font-family: 'Times New Roman', Times, serif;
  font-size: 17px;
  font-weight: 700;
  color: white;
}

.footer-distributed .footer-company-line{
  margin-top: -15px;
  font-family: 'Homemade Apple', sans-serif;
  font-size: 12px;
  color: wheat;
  word-spacing: 3px;
}

/* Footer Center */

.footer-distributed .footer-center{
	width: 35%;
}

.footer-distributed .footer-center i{
	background-color:  #33383b;
	color: #ffffff;
	font-size: 25px;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	text-align: center;
	line-height: 42px;
	margin: 10px 15px;
	vertical-align: middle;
}

.footer-distributed .footer-center i.fa-envelope{
	font-size: 17px;
	line-height: 38px;
}

.footer-distributed .footer-center p{
	display: inline-block;
	color: #ffffff;
  font-weight:400;
	vertical-align: middle;
  font-size: 15px;
	margin:0;
}

.footer-distributed .footer-center p span{
	display:block;
	font-weight: normal;
	font-size: 15px;
	line-height:2;
}

.footer-distributed .footer-center p a{
	color:  lightseagreen;
	text-decoration: none;;
}

.footer-distributed .footer-links a:before {
  content: "|";
  font-weight:300;
  font-size: 20px;
  left: 0;
  color: #fff;
  display: inline-block;
  padding-right: 5px;
}

.footer-distributed .footer-links .link-1:before {
  content: none;
}

/* Footer Right */

.footer-distributed .footer-right{
	width: 20%;
}

.footer-distributed .footer-company-about{
	line-height: 20px;
	color:  #92999f;
	font-size: 13px;
	font-weight: normal;
	margin: 0;
}

.footer-distributed .footer-company-about span{
	display: block;
	color:  #ffffff;
	font-size: 14px;
	font-weight: bold;
	margin-bottom: 20px;
}

.footer-distributed .footer-credits{
	color:  #4a4b4b;
	font-size: 13px;
	font-weight: normal;
	margin-top: 20px;
}

@media (max-width: 880px) {
  .footer-distributed {
    font: bold 14px sans-serif;
  }

  .footer-distributed .footer-left,
  .footer-distributed .footer-center,
  .footer-distributed .footer-right {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }

  .footer-distributed .footer-center i {
    font-size: 18px; /* Reduce icon size */
    width: 30px;
    height: 30px;
    line-height: 30px;
    margin: 5px;
  }

  .footer-distributed .footer-left img {
    width: 80px; /* Adjust logo size */
  }
}
/*----------------CONTACT------------*/
#contact {
  background: linear-gradient(rgba(0, 55, 164, 0.5),rgba(2, 104, 147, 0.5)), url('pics/blue-b.jpg') no-repeat center center/cover;
  height: 150vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.container-contact {
  display: flex;
  width: 80%;
  max-width: 1100px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.left-section {
  flex: 1;
  padding: 40px;
  color: white;
  position: relative;
}
.left-section h1 {
  font-size: 28px;
  font-weight: 600;
}
.left-section p {
  font-size: 14px;
  margin: 15px 0;
}
.contact-details {
  position: absolute;
  bottom: 20px;
  left: 40px;
  font-size: 14px;
  color: white;
}
.contact-details p {
  margin: 5px 0;
}
.contact-details i {
  margin-right: 8px;
}
.contact-details a{
  color:  lightseagreen;
	text-decoration: none;
  }
.right-section {
  flex: 1;
  background: #181818;
  padding: 40px;
  color: white;
  display: flex;
  flex-direction: column;
}
.right-section h2 {
  font-size: 24px;
  margin-bottom: 10px;
}
.right-section p {
  font-size: 14px;
  margin-bottom: 20px;
}
form {
  display: flex;
  flex-direction: column;
}
form input, form textarea {
  background: #2b2b2b;
  border: none;
  padding: 12px;
  margin-bottom: 15px;
  color: white;
  border-radius: 5px;
}
form textarea {
  height: 100px;
  resize: none;
}
button {
  background: #01003c;
  color: white;
  border: none;
  padding: 12px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
  transition: 0.3s;
}
button:hover {
  background: lightseagreen;
}
@media (max-width: 768px) {
  #contact {
    padding-top: 60px; /* Adjust spacing */
    height: 190vh;
  }

  .container-contact {
    flex-direction: column; /* Stack sections */
    width: 90%;
    margin-top: 20px; /* Adds space above */
  }

  .left-section, 
  .right-section {
    padding: 30px; /* Adjust padding */
    text-align: center; /* Center text */
  }

  .left-section h1 {
    font-size: 20px; /* Adjust font size */
  }

  .right-section h2 {
    font-size: 20px;
  }

  .contact-details {
    position: static; /* Remove absolute positioning */
    margin-top: 30px; /* Adds space */
    text-align: center;
  }

  .contact-details p{
    font-size: 13px;
  }

  form input, 
  form textarea {
    padding: 10px;
    font-size: 14px;
  }

  button {
    font-size: 14px;
    padding: 10px;
  }
}