@import url('https://fonts.googleapis.com/css2?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&display=swap');

*{
   margin: 0;
   padding: 0;
   box-sizing: border-box;
   font-weight: 400;
   font-size: normal;
   line-height: normal;
  
}

body {
   background-color: #000;
}

#logo {
   width: 15%;
   height: auto;
   display: block;
   margin-left: 50px;
   float: left;
   border: 2px solid #FFF;

}

.header {
   min-height: 100vh;
   width: 100%;
   background-image: linear-gradient(rgba(4, 9, 30,0.7),rgba(4, 9, 30,0.7)),url(images/BG2.jpg);
   background-position: center;
   background-size: 100% 100%;
   position: relative;
}


.text-box {
   width: 90%;
   color: #FFF;
   position: absolute;
   top: 20%;
   left: 50%;
   transform: translate(-50%, 50%);
   text-align: center;
}

.text-box h1 {
   font-size: 70px;
  
}

.text-box p {
   margin: 10px 0 40px;
   font-size: 20px;
   color: #fff;
}

nav {
   display: flex;
   padding: 2% 6%;
   justify-content: space-between;
   align-items: center;
   font-family: sans-serif;
   
   
}

nav img {
   width: 150px;
   opacity: 0.8;
}

.nav-links {
   flex: 1;
   text-align: right;
   margin-top: 2px;
}

.nav-links ul {
   list-style: none;
   padding: 0;
   margin: 0;
   display: flex;
   justify-content: flex-end; 
}

.nav-links ul li {
   display: inline-block;
   padding: 8px 12px;
   position: relative;
}

.nav-links ul li a {
   color: #FFF;
   text-decoration: none;
   font-size: 16px;
   display: inline-block; 
}

.nav-links ul li::after {
   content: '';
   width: 0;
   height: 2px;
   background: #fff;
   display: block;
   margin: auto;

}

.nav-links ul li:hover::after {
   width: 100%;
}

.sidebar {
   height: 100%;
   width: 0;
   position: fixed;
   top: 0;
   left: 0;
   background-color: #333;
   overflow-x: hidden;
   transition: 0.5s;
   padding-top: 60px;
   z-index: 1000;
} 

.sidebar a {
   padding: 8px 8px 8px 32px;
   text-decoration: none;
   font-size: 25px;
   color: #FFF;
   display: block;
   transition: 0.3s;
}

.sidebar a:hover {
   color: #f1f1f1;
   cursor: pointer;
}

.sidebar .close-btn {
   position: absolute;
   top: 0;
   right: 25px;
   font-size: 36px;
   margin-left: 50px;
}

.fa fa-bars{
   display: none;
   
}

@media only screen and (max-width: 768px) {
   .header{
      min-height: 30vh;
      width: 100%;
      background-image: linear-gradient(rgba(4, 9, 30,0.7),rgba(4, 9, 30,0.7)),url(images/BG2.jpg);
      background-position: center;
      background-size: 100% 100%;
      position: relative;
   }

   nav {
      padding: 2% 4%;
   }

   .nav-links {
      display: none;
   }

   .text-box{
      position: relative;
      z-index: 900;

   }
   .text-box h1 {
      font-size: 40px;
     
   }

   .text-box p {
      font-size: 10px;
   }

   #logo{
      width: 50px;
      margin-left: 0;
   }

   .fa-bars {
      display: block;
      color: #fff;
   }

   .fa-bars:hover{
      cursor: pointer;
   }

}

.sidebar.open {
   width: 250px;
}

.site-footer {
   background-color: #333;
   color: #fff;
   text-align: center;
}

.footer-content {
   display: flex;
   flex-wrap: wrap;
   justify-content: space-between;
   max-width: 1200px;
   margin: 0 auto;
 }


.footer-about,
.footer-contact,
.footer-social {
   flex: 1;
   margin: 10px;
   min-width: 200px;
}

.footer-about h2,
.footer-contact h2,
.footer-social h2 {
   border-bottom: 2px solid #fff;
   padding-bottom: 10px;
   margin-bottom: 20px;
   font-size: 18px;
   font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.footer-about p,
.footer-contact p {
   font-size: 16px;
   line-height: 1.5;
   font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.footer-contact a {
   color: #fff;
   text-decoration: none;
}

.footer-contact a:hover {
   text-decoration: underline;
}

.footer-contact i {
   margin-right: 10px;
   font-size: 24px; 
   color: #333; 
   vertical-align: middle; 
}

.footer-contact i.material-icons {
   font-size: 24px; 
   color: #555; 
}

.footer-contact i.fa{
   font-size: 24px; 
   color: #007bff; 
}


.footer-social ul {
   list-style: none;
   padding: 0;
}

.footer-social ul li {
   display: inline;
   margin: 0 10px;
}

.footer-social ul li a {
   color: #fff;
   font-size: 24px;
   text-decoration: none;
   transition: color 0.3s ease;
}


.footer-social ul li a:hover {
   color: #f0f0f0;
}

.footer-bottom {
   margin-top: 20px;
   font-size: 14px;
   font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.container{
   margin: 4rem 6rem;
}

.container h2{
   font-size: 25px;
}

.card-portfolio{
   display: flex;
   align-items: center;
   justify-content: space-between;
   margin-top: 4.5rem;
   margin-left: 4.5rem;
  
}

.image {
   position: relative;
   width: 50%;
   display: flex;
   justify-content: space-between;
   z-index: -99;
}


.image img{
   width: 80%;
   height: 500px;
   object-fit: cover;
   border-radius: 6px;
   box-shadow: -1px 1px 62px -18px rgba(0,0,0,0.19);
}


.image img:hover {
   transform: translateY(-15px); 
   cursor: pointer;
}

@media (max-width: 1024px) {
   .card-portfolio {
      flex-direction: column; 
      align-items: center;
      margin-left: 2rem;
      margin-top: 3rem;
   }

   .image {
      width: 80%; 
   }

   .image img {
      margin-top: 2.5rem;
      width: 100%; 
      height: auto; 
   }
}


@media (max-width: 768px) {
   .card-portfolio {
      margin-left: 1rem;
      margin-top: 2rem;
   }

   .image {
      width: 100%; 
   }

   .image img {
      width: 100%; 
      height: auto; 
   }
}

.card-container {
   display: flex;
   gap: 20px;
   align-items: center;
   justify-content: center; 
   flex-wrap: wrap; 
   padding: 20px; 
}

.card {
   background-color: #fff;
   border-radius: 10px;
   box-shadow: 0 4px 8px rgba(0,0,0,0.2);
   overflow: hidden;
   transition: transform 0.3s ease-in-out;
   width: 300px;
   cursor: pointer;
}

.card:hover{
   transform: translateY(15px);
}

.card img {
   width: 100%;
   height: 500px; 
   object-fit: cover; 
}

.card-content {
   padding: 15px;
}

.card h3 {
   margin-top: 0;
   text-align: center;
}

.services h2{
   color: #fff;
   font-size: 30px;
   text-align: center;
   font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.container h2 {
   color: #fff;
   font-size: 30px;
   text-align: center;
}
.services .photo img {
   width: 300px;
   height: auto;
   float: left;
   margin: 50px 40px 50px 70px;
   border-radius: 10px;
}
.services .content p {
   color: #FFF;
   font-size: 18px;
   margin: 100px 40px 10px 50px;
   text-align: justify;
   font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
   line-height: 30px;
}
.about h2{
   color: #fff;
   font-size: 30px;
   text-align: center;
   font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.container h2 {
   color: #fff;
   font-size: 30px;
   text-align: center;
}

.content1 {
   display: flex;
   align-items: center;
   margin-right: 100px;
   gap: 20px;
}

.content1 img {
   width: 320px;
   height: auto;
   border-radius: 10px;
   margin: 10px 10px 30px 50px; 
}

.content1 p {
   color: #fff;
   font-size: 18px;
   text-align: justify;
   line-height: 30px;
   
}

.highlight {
   font-size: 2em; 
   font-weight: bold;
   color: #FFF; 
   text-transform: uppercase; 
   background-color: #000; 
   padding: 5px; 
   border-radius: 3px; 
}
.row {
   display: flex;
   justify-content: space-around; 
   align-items: flex-start; 
   flex-wrap: wrap; 
   text-align: center;
   margin-top: 20px; 
}

.column {
   flex: 1; 
   max-width: 22%; 
   padding: 30px;
   height: 300px;
   background-color: #f1f1f1;
   border: 6px solid #FFF;
   text-align: center;
   box-sizing: border-box;
   margin: 10px; 
}

.column h2 {
   font-size: 23px;
   font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
   font-weight: 500;
}

.column ul li {
   font-size: 20px;
   font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
   text-align: justify;
}

.collection h2 {
   color: #FFF;
   font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
   font-size: 30px;
   text-align: center;
}
.card-collection {
   display: flex;
   align-items: center;
   justify-content: space-between;
   margin-top: 1.5rem;
   margin-right: 2.5rem;
   margin-left: 2.5rem;
   margin-bottom: 4.5rem;
  
}
.card-collection .image img{
   width: 100%;
   padding: 5px;
   border-radius: 10px;
}
.collection .topic h3 {
   color: #FFF;
   font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
   font-size: 25px;
   text-align: center;
  
}
.collection .card-collection .image img:hover {
   transform: translateY(-15px); 
   cursor: pointer;
}

@media (max-width: 1024px) {
   .card-collection {
      flex-direction: column; 
      align-items: center;
      margin: 1.5rem 1.5rem 4.5rem 1.5rem; 
   }

   .collection h2 {
      font-size: 26px; 
   }

   .collection .topic h3 {
      font-size: 22px;
   }

   .card-collection .image img {
      width: 90%; 
   }
}


@media (max-width: 768px) {
   .card-collection {
      flex-direction: column; 
      align-items: center;
      margin: 1rem 1rem 3rem 1rem; 
   }

   .collection h2 {
      font-size: 22px; 
   }

   .collection .topic h3 {
      font-size: 20px; 
   }

   .card-collection .image img {
      width: 100%; 
      padding: 3px; 
   }
}

input[type=text], select, textarea {
   width: 100%; 
   padding: 12px; 
   border: 1px solid #ccc; 
   border-radius: 4px; 
   box-sizing: border-box; 
   margin-top: 6px; 
   margin-bottom: 16px; 
   resize: vertical;
 }
 input[type=submit] {
   background-color: #04AA6D;
   color: white;
   padding: 12px 20px;
   border: none;
   border-radius: 4px;
   cursor: pointer;
 }
 input[type=submit]:hover {
   background-color: #45a049;
 }
 input[type=reset] {
   background-color: #04AA6D;
   color: white;
   padding: 12px 20px;
   border: none;
   border-radius: 4px;
   cursor: pointer;
 }
 input[type=reset]:hover {
   background-color: #45a049;
 }
 .contact-container {
   border-radius: 5px;
   background-color: #f2f2f2;
   padding: 30px;
   width: 80%;
   margin-left: 8rem;
   margin-right: 4.5rem;
   margin-bottom: 4.5rem;
   margin-top: 2.5rem;
   font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
 }

.contact H2 {
   color: #FFF;
   font-size: 30px;
   font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
   text-align: center;
   margin-bottom: 5px;
}

@media only screen and (max-width: 768px) {
   .contact-container {
       padding: 0 20px;
       margin-left: 45px;
   }

   .contact-container label {
       font-size: 14px;
   }

   .contact-container input[type="text"], .contact-container select, .contact-container textarea {
       width: 100%;
       font-size: 14px;
       margin-bottom: 10px;
   }

   .contact-container input[type="submit"], .contact-container input[type="reset"] {
       width: 100%;
       padding: 10px;
       font-size: 16px;
       margin-bottom: 10px;
   }

}

/* For very small screens like mobile phones */
@media only screen and (max-width: 480px) {
   .contact-container {
       padding: 0 10px;
   }

   .contact-container label {
       font-size: 12px;
   }

   .contact-container input[type="text"], .contact-container select, .contact-container textarea {
       font-size: 12px;
       margin-bottom: 8px;
   }

   .contact-container input[type="submit"], .contact-container input[type="reset"] {
       font-size: 14px;
       margin-bottom: 8px;
   }
}


@media only screen and (max-width: 1024px) {
   .content1 {
       flex-direction: column;
       align-items: center;
       margin-right: 0;
   }

   .content1 img {
       width: 80%; 
       margin: 10px 0;
   }

   .content1 p {
       font-size: 16px; 
       text-align: center;
       line-height: 28px;
       padding: 0 20px; 
   }

   .highlight {
       font-size: 1.8em; 
       padding: 4px;
   }
}


@media only screen and (max-width: 767px) {
   .content1 {
       flex-direction: column;
       align-items: center;
       margin-right: 0;
   }

   .content1 img {
       width: 100%; 
       margin: 10px 0;
   }

   .content1 p {
       font-size: 14px; 
       text-align: center;
       line-height: 24px;
       text-indent: 0;
       padding: 0 10px; 
   }

   .highlight {
       font-size: 1.5em; 
       padding: 3px;
   }

   .about h2,
   .container h2 {
       font-size: 24px; 
   }
}
