
@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Holtwood+One+SC&family=Inknut+Antiqua:wght@300;400;500;600;700;800;900&family=Miltonian&family=Nosifer&display=swap');

*{
  box-sizing: border-box;
  
  
}

html, body{
  scroll-behavior: smooth;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  min-height: 100vh;
  
}


.logo_name{

  display: flex;
  align-items: center; 
  gap: 10px; 
  font-family: Holtwood One SC, Arial, Helvetica, sans-serif;
  font-size: clamp(10px, 2vw, 25px);

}

.logo_name h3:hover{
  transition: ease 0.3s;
  color: rgb(182,159,6);
  cursor: pointer;
  transform: translateY(-10px) scale(1.05);
}

li, a, button {
  font-family: Abril Fatface, Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: black;
  text-decoration: none;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  width: 100%;
  padding: 10px 2%;
  gap: 10px;
  box-sizing: border-box;
  overflow-x: auto;
 
}


.logo{
  height: 39px;
  width: 39px;
  cursor: pointer;
}

.nav_links {
  list-style: none;
  display: flex;
  flex-wrap: nowrap;
  flex-shrink: 1;
}


.nav_links li{
  padding: 0px 20px;
}

.nav_links li a {
  transition: all 0.5 s ease 0s;
}

.nav_links li a:hover ,
.nav_links li svg{
  transition: 0.3s ease;
  color: rgb(182, 159, 6);
  cursor: pointer;
  
}

.menu {
  display: none;
}

.sidebar {
  position: fixed;
  margin: 0;
  top: 0;
  right: 0;
  height: 100vh;
  width:70%;
  z-index: 999;
  display: none;
  backdrop-filter: blur(10px);
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 20px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: -4px 0 15px rgba(0,0,0,0.2);
  
}

.sidebar .close {
  align-self: flex-end;
  margin-bottom: 30px;
  cursor: pointer;
}

.sidebar li {
  margin: 15px 0;
  text-align: center;
}

.sidebar li a {
  font-size: 1.5rem;
  font-weight: bold;
}

button {
  padding: 9px 25px;
  background-color: black;
  border: none;
  color: white;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease 0s;
}

button:hover{
  transition: 0.3s ease;
  background-color: rgb(182,159,6);
  transform: translateY(-10px) scale(1.05);
}


.main_body {
  height: auto;
  width: 100%;
  max-width: 1440px;
  position: relative;
  margin: 0 auto 200px auto;
  padding: 0 20px;
  box-sizing: border-box;
}


.console-block {
  font-family: Miltonian, 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-size: clamp(30px, 6vw, 74px);
  margin: 100px 50px 50px 50px;
  line-height: 1.4;
  position: relative;
  z-index: 2;
}

.console-line {
  margin: 0;
}

.console-name1 {
  font-family: Nosifer, Arial, Helvetica, sans-serif;
  text-shadow: 1px 1px 30px black;
  margin-left: 30px;
  font-size: clamp(45px, 9vw, 111px);
  transition: 0.3s ease;
  cursor: pointer;
  
}

.console-name2 {
  font-family: Nosifer, Arial, Helvetica, sans-serif;
  text-shadow: 1px 1px 30px black;
  margin-left: clamp(150px, 20vw, 200px);
  font-size: clamp(45px, 9vw, 111px);
  transition: 0.3s ease;
  cursor: pointer;
}

.console-name1:hover,
.console-name2:hover {
  color: rgba(182,159,6,0.6);
  text-shadow: 1px 1px 20px rgba(182,159,6,0.6);
  
}


.basic_intro {
  max-width: 90%;
  margin-left: 50px;
  margin-bottom: 50px;
  margin-top: 100px;
  font-size: clamp(16px, 3vw, 34px); 
  line-height: 1.6;
  font-style: italic;
}



.my_image {
  position: absolute;
  right: 0;
  bottom: 30%;
  width: 45%;
  max-width: 600px;
  height: auto;
  z-index: -1;
  opacity: 1;
  transition: opacity 0.3s ease;
}


.about {
  background-color: black;
  border-radius: 25px;
  padding: 25px 40px;
  margin: 100px auto;
  max-width: 1440px;
  width: 100%;
  box-sizing: border-box;
}



.about p{
  background-color: black;
  color: white;
  font-size: clamp(18px, 5vw, 30px);
  line-height: 2;
  margin: 20px;
}

.left-image {
  float: right;
  width: 35%;
  max-width: 250px;
  height: auto;
  margin: 10px 0 10px 20px;
  object-fit: cover;
  border-radius: 10px;
  opacity: 0.8;
  box-sizing: border-box;
}

.services {
  background-image: linear-gradient(#D9D9D9 0%, #737373 100%);
  border-radius: 25px;
  padding: 25px 40px;
  margin: 100px auto;
  max-width: 1440px;
  width: 100%;
  box-sizing: border-box;
}



.services h1 {
  display: flex;
  justify-content: center;
  background: none;
  font-family: Miltonian, 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-size: clamp(36px, 8vw, 74px);
  padding: 10px 0;
  margin: 50px 0;
  text-align: center;
 
}


.services h1:hover{
  transform: translateY(-10px) scale(1.05);
  color: rgba(182,159,6,0.6);
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}


.grid-container1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
  
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.svg-container1,
.svg-container2{
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background: transparent;
}

.svg-container1 svg,
.svg-container2 svg {
  width: 100%;
  max-width: 160px;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}


.grid-item1,
.grid-item2 {
  margin-top: 10px;
  font-size: clamp(16px, 3vw, 26px);
  text-align: center;
}

.svg-container1 svg:hover{
  transform: scale(1.15);
  filter: drop-shadow(0 0 20px rgb(182,159,6,0.6));
  animation: pulse 1s infinite;
  cursor: pointer;
}



.grid-container2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
  justify-content: center;
}



.svg-container2 svg:hover{
  transform: scale(1.15);
  filter: drop-shadow(0 0 20px rgb(182,159,6,0.6));
  animation: pulse 1s infinite;
  cursor: pointer;
}

.project-container {
  background: #ffffff;
  border: 1px solid;
  border-radius: 25px;
  padding: 25px 40px;
  margin: 100px auto;
  max-width: 1440px;
  width: 100%;
  box-sizing: border-box;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.project-heading {
  display: flex;
  justify-content: center;
  background: none;
  font-family: Miltonian, 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-size: clamp(36px, 8vw, 74px);
  padding: 10px 0;
  margin: 50px 0;
  text-align: center;
}

.project-heading:hover{
  transform: translateY(-10px) scale(1.05);
  transition: all 0.3s ease-in-out;
  color: rgba(182,159,6,0.6);
  cursor: pointer;
}


.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  margin-top: 30px;
}



.project-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 25px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.4s ease;
  border: 2px solid #e9ecef;
  height: clamp(144px, 32vw, 296px);
  color: #000;
  text-decoration: none;
  width: 100%;
  box-sizing: border-box;
}


.project-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: #000000;
  backdrop-filter: blur(10px);
  color: #737373;
  cursor: pointer;
}

.project-name {
  font-size: clamp(1rem, 4vw, 2rem);
  font-weight: 600;
  color: #000000;
  z-index: 1;
  position: relative;
  transition: color 0.3s ease;
}

.project-name:hover {
  color: rgba(182,159,6,0.6);
}


.see-more-card {
  background-image: linear-gradient(#D9D9D9 0%, #737373 100%);
  color: #000000;
  font-size: 2rem;
  border: none;
  position: relative;
  overflow: hidden;
}

.see-more-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 50px rgba(171, 171, 171, 0.3);
}

.see-more:hover {
  color: rgb(255, 255, 255);
}

hr{
  height: 4px;
  border-color: black;
  border: solid; 
}

.contact-info {
  margin-top: 50px;
  padding: 20px;
  box-sizing: border-box;
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
}


.contact-info h2 a {
  font-family: Holtwood One SC, Arial, Helvetica, sans-serif;
  font-size: clamp(18px, 4vw, 26px);
  padding-left: 20px;
  word-wrap: break-word;
  word-break: break-word;
 
}

.contact-info h2 a:hover{
  color: rgba(182,159,6,0.6);
  transform: none;
}

.contact-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 20px;
  background: none;
  word-wrap: break-word;
  word-break: break-word;
  padding: 0 10px;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
}


.contact-grid-info {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  background: transparent;
  font-size: clamp(16px, 2.5vw, 30px);
  font-weight: bold;
  text-align: center;
}

.contact-grid-item1,
.contact-grid-item2 {
  background: none;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(14px, 2vw, 26px);
  word-wrap: break-word;
  word-break: break-word;
  padding: 5px 10px;
  width: 100%;
  text-align: center;

}

.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px; /* Equal spacing */
  flex-wrap: wrap;
  padding: 10px 0;
  margin-top: 40px;
  width: 100%;
  box-sizing: border-box;
}

.social-icons svg {
  width: clamp(28px, 6vw, 40px);
  height: auto;
  transition: transform 0.3s ease;
}

.social-icons svg:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 0 8px rgba(182,159,6,0.5));
  cursor: pointer;
}



.semicircle {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100vw;
  height: 200px;
  border-radius: 100% 100% 0 0;
  background: radial-gradient(ellipse at bottom, rgba(0,0,0,1), rgba(0,0,0,0));
  opacity: 0.5;
  z-index: -1;

}


footer{
  background-color: black;
  color: white;
  font-size: clamp(12px, 2vw, 16px);
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  text-align: center;
  padding: 3px;
}
footer p{
  margin: 0;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}


@media screen and (max-width: 768px) {

  .main_body{
    margin-bottom: 100px;
  }

  .hideOnMobile{
    display: none;
  }
  
  .menu{
    display: block;
  }


  .console-block {
    margin: 60px 20px 40px 20px;
    font-size: clamp(20px, 5vw, 40px);
  }

  .console-name1 {
    font-size: clamp(32px, 8vw, 42px); 
    margin-left: 20px;                 
    margin-bottom: 0;                 
  }

  .console-name2 {
    font-size: clamp(32px, 8vw, 42px);
    margin-left: clamp(75px,10vw, 100px);       
    margin-top: 4px;                   
  }

  .my_image {
    position: absolute;
    top: 50px;
    right: 10px;
    width: 40%;
    max-width: 400px;
    height: auto;
    opacity: 0.1;
    z-index: -1;
  }

  .basic_intro {
    margin-left: 20px;
    margin-right: 20px;
    margin-top: 60px;
  }

  .about,
  .services,
  .project-container {
    width: auto;
    padding: 25px 16px; 
    margin: 60px 16px;
    box-sizing: border-box;
  }
  
  .left-image {
    float: none;
    display: block;
    width: 40%;
    max-width: 200px;
    margin: 0 auto 20px auto;
    height: auto;
    opacity: 0.8;
  }

  .about p {
    text-align: justify;
    margin: 10px 20px;
   
  }

  

  .grid-container1,
  .grid-container2 {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .svg-container1 svg,
  .svg-container2 svg {
    max-width: 120px;
  }

  .project-container {
    padding: 30px 20px;
  }

  .project-heading {
    font-size: 2rem;
  }

  .project-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
  }

  .project-card {
    padding: 25px 15px;
    min-height: 120px;
}

  .contact-info h3{
    text-align: center;
    
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact-grid-info {
    justify-content: center;
    text-align: center;
    
  }

  .contact-grid-item1,
  .contact-grid-item2 {
    text-align: center;
    padding: 5px 10px;
    
  }

  .social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px; /* Equal spacing */
    margin-top: 20px;
    flex-wrap: nowrap;
    padding: 10px;
  }

  .social-icons svg {
    width: clamp(28px, 6vw, 40px);
    height: auto;
    transition: transform 0.3s ease;
  }

  .social-icons svg:hover {
    transform: scale(1.1);
  }

}


