
/* Custom Color Palette */
@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');
  :root {
    --primary-color: #2babe2; /* Turquoise */
    --secondary-color: #04d4f0; /* Cyan */
    --accent-color: #6af2f0; /* Blue Grotto */
    --dark-color: #2596be; /* Dark Blue */
    --black:#0000;
    --texr:#21130d;
    --text2:#eab676;
    --bg:#ffffff;
    font-family: 'Poppins';
    --font-primary: 'Poppins';
    --font-secondary: 'Poppins', sans-serif;
  }
 

/* Body styles */
body {
  background-color: var(--bg); /* White for background */
  color: var(--dark-colo); /* Slate Gray for text */
  font-family: 'Poppins';
  --font-primary: 'Poppins';
  --font-secondary: 'Poppins', sans-serif;
}

/* Navigation Bar */
.navbar {
  background-color: #333;
  padding: 10px;
}

.navbar a {
  color: var(--bg); /* White for links */
  text-decoration: none;
  padding: 5px 5px;
}

.navbar a:hover {
  color: var(--action-btn-icon-vorder); /* Gold on hover */
}
  
  .hero {
    margin-top: 100px;
    padding: 20px 0;
    margin-bottom: 100px;
  }
  .hero .container .text_hero{
    height: auto;
    text-align: start;
    color: var(--black);
  }
  .hero .container .btn{
    font-size: 2rem;
    background-color: var(--primary-color); /* Sky Blue */
   color: var(--bg); /* Navy Blue text */
  }
  .hero .container .btn:hover{
    background-color: var(--primary-color); /* Gold on hover */
   color: var(--bg); /* White text */
  }
  .hero .container .social-icons i{
    font-size: 1.7rem;
    color: var(--accent-color);
  }
  .hero h1 {
    font-size: 3rem;
    color: black;
    font-family: var(--font-primary);
  }
  
  .hero .highlight {
    color: var(--primary-color);
  }
  .hero h4{
    color: black;
  }
  .hero p {
    font-size: 1.2rem;
    color: #333;
  }
  
  .hero img {
    width: 60%;
    height: auto;
  }
  
  .about {
    padding: 50px 0;
    
  }
  .about .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid var(--black);
    width: 100%;
    padding: 10px 10px 20px 50px;
    border-radius: 1px;
    
  }
  .about .text_about{
   display:flex ;
   flex-direction: column;
   color: var(--primary-color);

  }
  .about .text_about .btn{
    width: fit-content;
    font: 2em sans-serif;
    align-self: center;
    color: var(--primary-color);
    color: var(--bg); /* Navy Blue text */
  }
  .about h2 {
    font-size: 3.5rem;
    color: black;
  }
  .about h1{
    color: black;
  }
  .about p{
    font-size: 1.2rem;
   color: #333;
  }
  
  .about .highlight {
    color: #2babe2;
  }
  /**/
  .btn {
    background-color: #25D366; /* WhatsApp green */
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
  }
  
  .btn:hover {
    color: #333;
  }
  
  .services {
    padding: 50px 0;
    margin-bottom: 100px;
    
  }
  
  .services h2 {
    font-size: 2.5rem;
    margin-bottom: 100px;
    color: var(--bg);
  }
  
  .services .service-box {
    background-color: var(--bg-color);
    padding: 20px;
    margin: 10px;
    border-radius: 10px;
    border: 1px solid var(--black);
    height: auto;
    justify-content: space-between;
    line-height: 1.7;
    transition: 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    
  }

  .services .service-box:hover {
        border: 1px solid --action-btn-icon-vorder;
        scale: 1.1;
        cursor: pointer;
        transform: translateY(-10px);
  }
  
  .service-box i {
    font-size: 3rem;
    color: var(--primary-color);
    margin: 50px;
  }
  #contact_id{
    padding: 50px 20px;
    text-align: center;
  } 

  /* Basic Styles for the Projects Section */
#projects {
    
    padding: 50px 20px;
    text-align: center;
  }
  
  #projects h2 {
    font-size: 2.5em;
    margin-bottom: 50px;
    color: var(--black);
  }
  
  /* Grid Layout */
  .project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-items: center;
    
  }
  
  .project-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 300px;
    transition: transform 0.3s ease;
    
  }
  
  .project-card:hover {
    transform: translateY(-10px);
  }
  
  /* Thumbnail Styles */
  .project-card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
  }
  
  /* Project Title */
  .project-card h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #333;
  }
  
  /* Description */
  .project-card p {
    font-size: 1em;
    margin-bottom: 15px;
    color: #666;
  }
  
  /* Button */
  .project-card .btn {
    background-color: var(--accent--rose-red); /* Sky Blue */
    color: var(--primary-color); /* Navy Blue text */
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }
  
  .project-card .btn:hover {
    background-color: #2980b9;
  }
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  .project-card {
    animation: fadeIn 1s ease-in-out;
  }
  
  

  /*contact section*/
  .contact {
    padding: 50px 0;
    width: 100%;
   
  
  }
  .contact .container{
    width: 50%;
   align-content: center;
   margin-bottom: 200px;
  }
  .contact .container h2{
    margin-bottom: 100px;
    font-size: 3rem;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
  }
  .contact .container h2 span{
    font-size: 3rem;
    color: #3498db;
  }
  
  .contact input, .contact textarea {
    background-color: var(--text2);
    border: none;
    color: var(--black);
  }
  
  .contact .form-control {
    margin-bottom: 10px;
    
  }
  
  .btn-primary {
    background-color: var(--accent-color); /* Sky Blue */
    color: var(--backgroun-cream); /* Navy Blue text */
    border: none;
  }
  
  .btn-primary:hover {
    background-color: var(--accent-color); /* Gold on hover */
    color: var(--text2); /* White text */
  }

  /*footer*/

  /* Footer Container */
footer {
    background-color: #333;
    color: #fff;
    padding: 40px 20px;
    font-family: 'Arial', sans-serif;
  }
  
  .footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* Footer Columns */
  .footer-column h3 {
    font-size: 1.2em;
    margin-bottom: 15px;
    color: #fff;
  }
  
  .footer-column p, .footer-column a {
    font-size: 0.9em;
    color: #ccc;
  }
  
  .footer-column a {
    text-decoration: none;
    color: #ccc;
  }
  
  .footer-column a:hover {
    color: #3498db;
  }
  
  /* Social Icons */
  .social-icons a {
    display: inline-block;
    margin-right: 10px;
    text-decoration: none;
    color: #ccc;
  }
  
  .social-icons a:hover {
    color: #3498db;
  }
  
  /* Footer Bottom */
  .footer-bottom {
    margin-top: 30px;
    text-align: center;
    border-top: 1px solid #444;
    padding-top: 20px;
  }
  
  .footer-bottom p {
    font-size: 0.8em;
    color: #aaa;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr;
      text-align: center;
    }
  }
  
  /*end footer*/
  