
body {
    margin: 0;
    font-family: 'Playfair Display', serif;
    background-color: #fff;
    color: #333;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  img {
    max-width: 100%;
    height: auto;
  }
  
  /* Navbar */
  header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: rgb(255, 255, 255);
    box-shadow: 2px 6px 8px rgba(239, 158, 92, 0.4);
  }
  
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
  }
  
  .logo-container {
    display: flex;
    align-items: center;
  }
  
  .logo {
    font-size: 2rem;
    color: #fcb13d;
    font-weight: bold;
    margin-right: 10px;
  }
  
  .logo-img img {
    width: 80px;
    height: 80px;
  }
  
  /* Nav */
  nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
  }
  
  nav li a {
    font-weight: bold;
    transition: color 0.3s ease;
  }
  
  nav li a:hover {
    color: #fcb13d;
  }
  
  /* Hamburger menu */
  .menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    justify-content: flex-end;
  }
  
  .menu-toggle .bar {
    width: 25px;
    height: 3px;
    margin: 4px;
    background-color: #333;
    display: flex;
  }
  
  /* Hero Section */
  .hero {
    background: url("images/oid11.jpg") center/cover no-repeat;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  
  .hero-overlay {
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 2rem;
    text-align: center;
    animation: fadeIn 2s ease-in;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    margin-top: 1rem;
    color: white;
  }
  
  .highlight {
    color: #fcb13d;
  }
  
  /* About Section */
  .about {
    padding: 4rem 2rem;
    text-align: center;
    background-color: #f9f9f9;
  }
  
  .about h2 {
    font-family: 'Great Vibes', cursive;
    font-size: 2.5rem;
    color: #fcb13d;
  }
  
  .about p {
    max-width: 800px;
    margin: 1rem auto;
  }
  
  .oid {
    font-size: 1.3rem;
    color: #fcb13d;
    font-family: 'Playfair Display', serif;
  }
  
  .caroline {
    color: #fcb13d;
    font-size: 1.2rem;
    font-weight: bold;
  }
  
  /* Services Section */
  .services {
    padding: 4rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .services-content {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    align-items: center;
  }
  
  .services-image img {
    width: 300px;
    border-radius: 12px;
  }
  
  .services-cards {
    max-width: 500px;
  }
  
  .cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .card {
    padding: 1rem;
    background-color: #fcb13d;
    color: white;
    border-radius: 10px;
    font-weight: bold;
    text-align: center;
    animation: slideUp 1s ease forwards;
  }
  
  /* Designs Section */
  .designs {
    background-color: #fff;
    padding: 1rem 2rem;
    text-align: center;
  }
  
  .design-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
  }
  
  .design-box {
    max-width: 400px;
    text-align: center;
    box-shadow: 2px 6px 8px rgba(239, 158, 92, 0.4);
  }
  .design-box img{
    max-height:200px;
   
  }
  .designs .arrow{
    height: 80px;
    width:80px;
    border: none;
  }
  
  /* Contact Section */
  .contact {
    padding: 4rem 2rem;
    background-color: #f9f9f9;
  }
  
  .contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    align-items: center;
  }
  
  .contact-info {
    flex: 1;
    min-width: 250px;
  }
  
  .contact-info h2 {
    color: #fcb13d;
  }
  
  .button {
    display: inline-block;
    background-color: black;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
    font-weight: bold;
    display: flex;
    justify-content: center;
  }
  
  .map {
    flex: 1;
    min-width: 250px;
  }
  
  .map iframe {
    width: 100%;
    height: 300px;
    border: 0;
    border-radius: 10px;
  }

  .social-links {
    display: flex;
    /* justify-content: center; */
    gap: 20px;
    padding: 20px;
  }

  .social-links a {
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 12px 20px;
    border-radius: 30px;
    color: white;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.3s ease;
  }

  .facebook {
    background-color: #1877F2;
  }

  .facebook:hover {
    background-color: #145DBF;
  }

  .instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, 
                #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  }

  .instagram:hover {
    opacity: 0.9;
  }

  .social-links svg {
    margin-right: 10px;
    height: 20px;
    width: 20px;
  }

  @media (max-width: 500px) {
    .social-links {
      flex-direction: column;
      align-items: center;
    }
  }
  
  /* Footer */
  footer {
    background-color: #222;
    color: white;
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
  }
  
  footer a {
    color: #fcb13d;
  }

  section {
    margin-bottom: 40px;
    padding: 30px;
    
  }

  section .flex {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
  }

  .left, .right {
    flex: 1 1 300px;
  }

  section .flex h2 {
    color: #222;
    margin-bottom: 15px;
    font-size: 1.8em;
    justify-content: center;
  }

  section p {
    color: #444;
    margin-bottom: 12px;
  }

  section .flex img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    border: 1px solid #ddd;
  }

  section .image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
  }

  @media screen and (max-width: 600px) {
    section .flex {
      flex-direction: column;
    }
  }
  
  /* Animations */
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  @keyframes slideUp {
    from { transform: translateY(40px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .menu-toggle {
      display: flex;
      justify-content: flex-end;
    }
  
    nav ul {
      display: none;
      flex-direction: column;
      background: white;
      position: absolute;
      right: 2rem;
      top: 60px;
      border: 1px solid #ddd;
      padding: 1rem;
      z-index: 100;
    }
  
    nav ul.show {
      display: flex;
    }
  
    .hero h1 {
      font-size: 2rem;
    }
  
    .about p {
      text-align: center;
    }
  
    .services-content {
      flex-direction: column;
      text-align: center;
    }
  
    .design-container {
      flex-direction: column;
    }
  
    .contact-wrapper {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .map iframe {
      height: 250px;
     
    }
  }

  .services-section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: auto;
  }

  .service {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    margin-bottom: 50px;
    border-radius: 16px;
    box-shadow: 0 10px 20px rgba(122, 85, 54, 0.15);
    overflow: hidden;
    background-color: #fff3ea;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .service.projectmanagement ul li{
    font-size: 14px;
    
  }

  .service img{
    /* width: 200px; */
    height: 200px;
  }

  .service:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 30px rgba(122, 85, 54, 0.2);
  }

  .service-number {
    background-color: #fcb13d;
    color: white;
    font-size: 1.5rem;
    padding: 20px;
    min-width: 80px;
    text-align: center;
    font-weight: bold;
  }

  .service-content {
    display: flex;
    flex: 1;
    flex-wrap: wrap;
    width: 100%;
  }

  .service-left,
  .service-right {
    flex: 1 1 300px;
    padding: 20px;
  }

  .service-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f9f9f9;
  }

  .service-left h3 {
    margin-top: 0;
    color: #a0522d;
  }

  .service-left img {
    width: 100%;
    max-width: 300px;
    margin-top: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    animation: float 4s ease-in-out infinite;
  }

  .service-right ul {
    list-style: disc;
    padding-left: 20px;
    margin-top: 10px;
  }

  .service-right ul li {
    margin-bottom: 10px;
    line-height: 1.6;
  }

  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
  }

  @media (max-width: 768px) {
    .service {
      flex-direction: column;
    }

    .service-left,
    .service-right {
      flex: 1 1 100%;
    }

    .service-left img {
      max-width: 100%;
    }
  }
  