/* ================= GENERAL ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: white;
  overflow-x: hidden;
  font-family: "Poppins", sans-serif;
  font-style: normal;
}

.center {
  display: grid;
  place-items: center;
}

/* ================= HEADER ================= */
header {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  grid-template-rows: auto auto;  

  align-items: center;
  /* padding: 10px 20px; */

  position: sticky;
  top: 0;
  z-index: 1000;

  /* background: white; */
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  /* color: blue; */

  transition: all 0.3s ease;
  background: url("/container/images/home/Untitled-4.png");
  background-repeat: no-repeat; 
  background-clip: content-box; 
  background-size: 100% 100%;
}
/* header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto auto;

  padding: 10px 0 0 0;  

  position: sticky;
  top: 0;
  z-index: 1000;
 
   color: white;
  
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f9f9f9 40%,
    #eaeaea 100%
  );

  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
} */

/* header::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 50%;
  height: 100%;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(230, 4, 230, 0.8),
    transparent
  );

  transform: skewX(-20deg);
  animation: shineMove 15s linear infinite;
} */

@keyframes shineMove {
  100% {
    left: 150%;
  }
}
/* Logo (row 1 left) */
.logo {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  /* align-items: center; */
  margin-left: 20%;
}

.logo img {
  height: 60px;
  width: auto;
  display: block;
  object-fit: contain;
  
}

/* Title (row 1 center) */
.site-name {
  grid-column: 2;
  grid-row: 1;
  /* text-align: center; */
  font-size: 2.2em;
  font-weight: bold;
  color: blue;
}
 
/* Title with image mask */
/* .site-name {
  grid-column: 2;
  grid-row: 1;

  font-size: 2.5em;
  font-weight: bold;
  text-align: center;
  color: blue;
   
    font-family: "Archivo Black", sans-serif;
  font-weight: 400;
  font-style: normal;

  
} */

/* ================= MENU ================= */
.menu {
  grid-column:3; 
  grid-row: 1;

  display: flex;
  justify-content: center;  
  align-items: center;
  gap: 20px;

  margin-top: 5px;
  z-index: 100;
  font-size: 16px;
  color: white;
}
/* ================= MENU (ROW 2 STYLE) ================= */
/* ================= MENU (FULL WIDTH BAR) ================= */
/* .menu {
  grid-column: 1 / -1;
  grid-row: 2;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;

  margin: 0;               
  padding: 0px 0;
  color: white;
  background-color: blue;  
  border-radius: 0;       
  font-size: 16px;
} */
.menu a {
  text-decoration: none;
  color: white;
  text-transform: uppercase;
  /* font-weight: bold; */
  font-weight: 600;
  padding: 10px;
  transition: 0.3s;
}

.menu a:hover {
  background-color: rgb(255, 255, 255);
  color: blue;
  border-radius: 5px;
}

/* ================= DROPDOWN ================= */
.dropdown {
  position: relative;
}

.dropbtn {
  background: none;
  border: none;
  color: white;
  /* font-weight: bold; */
   font-weight: 600;
  text-transform: uppercase;
  padding: 10px;
  cursor: pointer;
  font-family: inherit;
   font-size: 16px;
}
 
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 160px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  border-radius: 6px;
  overflow: hidden;
  z-index: 999;
}

.dropdown-content a {
  display: block;
  padding: 10px;
  color: blue;
  text-decoration: none;  
  transition: 0.3s;
}

.dropdown-content a:hover {
  background: blue;
  color: white;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* ================= HAMBURGER ================= */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;

  grid-column: 3;
  grid-row: 1;
  justify-self: end;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: blue;
  margin: 4px 0;
}

/* ================= OPTIONAL ================= */
#tools {
  margin-left: 10px;
  color: white;
  font-size: 32px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {

  header {
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto auto;
    padding: 10px 15px;
    background: white;
  }

  .logo {
    grid-column: 1;
    grid-row: 1;
  }

  .site-name {
    grid-column: 2;
    grid-row: 1;
    font-size: 10px;
    align-items: center;
    margin-left: 20%;

  }

  .hamburger {
    display: flex;
    grid-column: 3;
    grid-row: 1;
  }

  /* Mobile dropdown menu */
  .menu {
    display: none;
    grid-column: 1 / -1;
    grid-row: 2;

    flex-direction: column;
    align-items: center;

    background-color: rgb(37, 200, 255);
    padding: 10px;
    border-radius: 8px;
    margin-top: 10px;
  }

  .menu.active {
    display: flex;
  }
}
 /*Header and menu items*/

/* Main Content Section (Visible Screen Height) */
.main-content {
  height: 100vh; /* Take up the full height of the screen */
  /* background-color: #0aad9e;  */
/* background: linear-gradient(to top, #0aad9e, #7b2cbf); */
  /* background: linear-gradient(to top, #0aad9e, #7b2cbf);  */
  /* display: flex;
  justify-content: center;
  align-items: center; */
  background: url('/container/images/home/TemplateDesign353.png'); 
  background-repeat: no-repeat;
   /* background-clip: content-box;  */
  background-size: 100% 100%;
  color: white;
  text-align: center;
  transition: all 1s ease-in-out;
  /* font-family: Georgia,Times,Times New Roman,serif; */
}
.main-content-text {
  padding: 50px 0px;
   font-size: 0.8em;
}

.main-content h2 {
  /* font-size: 2em; */
  font-size: 2.4em;
  text-align: center;
}

.main-content p {
  font-size: 1.2em;
}

/* Content Section */
.content-section {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh; /* Full viewport height */
  background-color: white; /* White background for each section */
  transition: all 1s ease-in-out;
  
}

.content-section:nth-child(odd) .content-main {
  flex-direction: row; /* Image on the left */
}

.content-section:nth-child(even) .content-main {
  flex-direction: row-reverse; /* Image on the right */
}

.content-main {
  display: flex;
  justify-content: space-between;
  width: 90%;
  max-width: 1200px;
}

.left-side, .right-side {
  width: 45%;
}

.left-side img,
.right-side img {
  max-width: 100%;
  height: auto;
}

.right-side p {
  font-size: 18px;
  color: #333;
  margin-bottom: 20px;
}

.right-side button {
  padding: 10px 20px;
  background-color: #333;
  color: white;
  border: none;
  cursor: pointer;
}

.right-side button:hover {
  background-color: #555;
}

/* Footer Styles */
footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 20px 0;
}

footer ul {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

footer ul li {
  margin: 0 15px;
}

footer ul li a {
  color: white;
}

footer p {
  margin-top: 10px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .content-section {
    flex-direction: column;
    padding: 20px;
  }

  .content-main {
    flex-direction: column;
    width: 100%;
  }

  .left-side,
  .right-side {
    width: 100%;
  }

  nav ul {
    flex-direction: column;
  }

  nav ul li {
    margin: 10px 0;
  }
}
.section-wrapper{
  background: url("/container/images/home/TemplateDesign335.png");
  background-repeat: no-repeat; 
  background-clip: content-box; 
  background-size: 100% 100%;
}
.section-wrapper-about {
  background: url("/container/images/home/image67.png");
  background-repeat: no-repeat; 
  background-clip: content-box; 
  background-size: 100% 100%;
}
.sub-content {
  padding: 10px;
  height: 100vh;
  /* background: linear-gradient(to bottom, rgb(112, 234, 255), white); */
      /* background: url("/container/images/home/TemplateDesign335.png");
  background-repeat: no-repeat; 
  background-clip: content-box; 
  background-size: 100% 100%; */
    
}
.grid-content-area {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 50px auto auto auto;
  gap: 1rem;
  width: 100%;
  max-width: 90%;
  height: 100%;
  margin: auto;
  padding: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 1px 1px 10px 1px rgb(150, 146, 160);
  animation: fadeIn 0.8s ease-in-out;
  flex-grow: 1;
  
   background: url("/container/images/home/design20.png");
  background-repeat: no-repeat; 
  background-size: 100% 100%;
}
.grid-content-header {
  grid-column: 1 / -1;
  padding: 10px;
  font-size: 35px;
  font-weight: bold;
  color: white;
  /* color: blueviolet; */
   text-shadow:  0 0 5px #7ddf3c;  
    animation: pulse 1.5s infinite alternate;
  /* font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif; */
   flex-grow: 1;
  
}
 
.grid-content-image {
  grid-column: 1;
  grid-row: 2 / 2;  
  width: 100%;
  height: 100%;
}
.grid-content-text {
  grid-column: 2;
  grid-row: 2;
  padding-left: 20px;
  margin-bottom: 10px;
  color: white;
}
.grid-content-text p, a, strong {
   color: white;
}
.grid-content-buttons {
  grid-column: 2;
  grid-row: 2;
  text-align: right;
  padding: 10px;
    flex-shrink: 1;
     flex-grow: 1;
}

.button-site {
  position: relative;
  overflow: hidden;
  background: blue;
  color: white;
}


.button {
  position: relative;
  overflow: hidden;
  background: blue;
  color: white;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.4),
    transparent
  );

  transform: translateX(-100%);
  animation: flow 2.5s linear infinite;
}

@keyframes flow {
  100% {
    transform: translateX(100%);
  }
}

/* .button {
  font-size: 16px;
  padding: 10px 20px;  
  text-transform: uppercase;
  letter-spacing: 1px;
} */
 
.readmore {
  background-color: blue;
  color: white;
}
.site {
  background-color: white;
  color: blue;
  text-decoration: none;
  padding: 10px 10px;
  font-weight: bolder;
}
.tools-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.toolbtn {
  /* background-color: green; */
  color: white;
  font-weight: bold;
  /* border: 1px white solid; */
  text-decoration: none;
  margin-left: 10px; 
  padding: 5px 20px;
  /* box-shadow: 1px 1px 5px 1px rgb(214, 252, 0); */
}
/* .button:hover {
   background-color: rgb(166, 75, 241);
   transition: all 1s ease-in-out;
} */

.home-content {
    font-size: 17px;
    color: white;
    line-height: 1.6;
    /* font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; */
    margin-bottom: 20px;
    overflow-wrap: break-word;
}

.ul-content{
    margin-left: 50px;
}
.link {
  background-color: transparent;
}
footer li {
  list-style: none;
}
#contactus {
  height: 100vh;  
  width: 100%;
  background: linear-gradient(to bottom, rgb(112, 234, 255), white);
  margin: auto;
}
#about {
  height: 100vh;  
  width: 100%;
  /* background: linear-gradient(to bottom, rgb(112, 234, 255), white); */
  margin: auto;
  color: black;
}
.about-area {
  width: 90%;
  display: grid;
  padding-left: 70px;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  grid-template-rows: 80px;
  color: green;
}
.section-title {
  /* font-family: Georgia, 'Times New Roman', Times, serif; */
  font-size: 40px;
  font-weight: bolder;
  margin-top: 20px;
  color: black;
}
#aboutTitle {
  grid-column: 1 / -1;
}
.about-icon {
  grid-column: 1;
  
}
.about-content {
    grid-column: 2;
    font-size: 20px;
 
    line-height: 1.6;
    /* font-family: 'Times New Roman', Times, serif; */
    margin-bottom: 20px;
    overflow-wrap: break-word;
    margin: auto;
    color: green
    font-weight: bold;
}
.about-content strong {
  color: green
}
@media (max-width: 800px) {
  body, html {
    width: 100%;
  }
   
  .sub-content {
    height: 100%;
    width: 100%;
    margin-left: 10px;
    padding-right: 0;
  }
  .grid-content-area {
    display: inline-block;
 
    width: 100%;
  }
  .grid-content-header,
  .grid-content-image,
  .grid-content-text,
  .grid-content-buttons {
    grid-row: auto;
    margin-bottom: 10px;
    text-wrap: initial;
    word-wrap: break-word;
  }
  
    .site-name {
      /* font-size: 1.5em; */
      font-size: 2em;
      font-weight: bold;
      position: relative;
      left: 0px;
    }
  #about {
    height: 100%;  
    padding: 10px;
  }
  .about-area {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    
  }
.about-icon {
  grid-column: 1;
  grid-row: 1;
  margin-bottom: 19px;
  
}
.about-icon img{
 width: 250px;
 height: 150px;
 display: flex;
 align-items: center;
 margin: auto;
 display: none;
 
}
.about-content {
    grid-column: 1;
    grid-row: 2;
    overflow-wrap: break-word;
}
.tools-buttons  {
  gap: 10px;
  flex-direction: column-reverse;
}
.custom-slide img {
     width: 100%;
    height: 100%;
}
  footer {
    width: 100%;
  }
  footer ul {
    display: inline-block;
    justify-content: center;
    margin-bottom: 10px;
}
.main-content {
  height: 100%;
  padding: 0 50px 50px 50px;
  background: url('/container/images/home/TemplateDesign353.png');
   background-repeat: no-repeat; 
   /* background-clip: content-box;  */
   background-size: 100% 100%;
}
footer {
  padding: 25px;
}
#tools {
  all: unset;
  color:white; 
  font-size:38px;
}
}
.custom-slide  {
  min-width: 100%;
}
.custom-slide img {
    /* width: 100%;
    height: 100%; */
    object-fit: cover;
    display: block;
}
/* @media (max-width: 480px) {
  header h1 {
    font-size: 24px;
  }

  .right-side p {
    font-size: 16px;
  }

 
} */

@media (max-height: 568px) {
  body {
    height: 100%;
  }
  #main-content {
    height: 100%;
    margin-bottom: 20px;
  }
  .grid-content-area{
    height: 100%;
  }
   
  .sub-content  {
    height: 100%;
  }
  .main-content {
    height: 100%;
    position: relative;
    padding-bottom: 50px;
  }
}