   * {
       margin: 0;
       padding: 0;
       box-sizing: border-box;
       font-family: 'Poppins', sans-serif;
   }

   body {
       background: #fff;
       color: #111;
       overflow-x: hidden;
   }

   html {
       scroll-behavior: smooth;
   }

   /* NAVBAR */

   nav {
       width: 100%;
       padding: 16px 7%;
       display: flex;
       justify-content: space-between;
       align-items: center;
       position: fixed;
       top: 0;
       left: 0;
       z-index: 1000;
       background: rgba(255, 255, 255, 0.95);
       backdrop-filter: blur(10px);
       box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
   }

   .logo {
       display: flex;
       align-items: center;
       gap: 10px;
       font-size: 24px;
       font-weight: 700;
   }

   .logo img {
       width: 48px;
       animation: spin 10s linear infinite;
   }

   @keyframes spin {
       100% {
           transform: rotate(360deg);
       }
   }

   nav ul {
       display: flex;
       gap: 28px;
       list-style: none;
   }

   nav ul li a {
       text-decoration: none;
       color: #111;
       font-weight: 500;
       font-size: 15px;
       transition: 0.3s;
   }

   nav ul li a:hover {
       opacity: 0.6;
   }

   .btn {
       background: #111;
       color: #fff;
       padding: 12px 22px;
       border-radius: 50px;
       text-decoration: none;
       font-weight: 600;
       transition: 0.3s;
       display: inline-block;
       cursor: pointer;
       font-size: 14px;
       border: none;
       white-space: nowrap;
   }

   .btn:hover {
       transform: translateY(-4px);
       box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
   }

   /* HERO */

   .hero {
       min-height: 100vh;
       display: flex;
       align-items: center;
       justify-content: space-between;
       padding: 140px 7% 80px;
       gap: 50px;
   }

   .hero-text {
       flex: 1;
   }

   .hero-text h1 {
       font-size: 68px;
       line-height: 1.1;
       margin-bottom: 25px;
       animation: fadeUp 1s ease;
   }

   .hero-text span {
       font-style: italic;
   }

   .hero-text p {
       font-size: 17px;
       line-height: 1.9;
       color: #555;
       max-width: 600px;
       margin-bottom: 30px;
   }

   .location-tag {
       margin-top: 25px;
       display: inline-block;
       background: #111;
       color: #fff;
       padding: 12px 22px;
       border-radius: 50px;
       font-size: 14px;
   }

   .hero-image {
       flex: 1;
       text-align: center;
       position: relative;
   }

   .hero-image img {
       width: 85%;
       max-width: 430px;
       animation: float 4s ease-in-out infinite;

       /* DESIGN */

       border-radius: 35px;
       border: 2px solid rgba(0, 0, 0, 0.08);

       /* SHADOW */

       box-shadow:
           0 25px 50px rgba(0, 0, 0, 0.12),
           0 10px 25px rgba(0, 0, 0, 0.08);

       /* EFFECT */

       backdrop-filter: blur(10px);
       transition: 0.4s ease;
   }

   /* HOVER EFFECT */

   .hero-image img:hover {
       transform: translateY(-10px) scale(1.02);

       box-shadow:
           0 35px 70px rgba(0, 0, 0, 0.18),
           0 15px 35px rgba(0, 0, 0, 0.12);
   }

   /* OPTIONAL GLOW BORDER */

   .hero-image::before {
       content: '';
       position: absolute;
       width: 80%;
       height: 80%;
       background: radial-gradient(rgba(0, 0, 0, 0.08),
               transparent);

       top: 50%;
       left: 50%;
       transform: translate(-50%, -50%);
       z-index: -1;
       filter: blur(50px);
   }

   @keyframes float {

       0%,
       100% {
           transform: translateY(0px);
       }

       50% {
           transform: translateY(-20px);
       }

   }

   @keyframes fadeUp {

       from {
           opacity: 0;
           transform: translateY(40px);
       }

       to {
           opacity: 1;
           transform: translateY(0);
       }

   }

   /* OFFER */

   .offer-section {
       padding: 0 7% 90px;
   }

   .offer-box {
       background: #111;
       color: #fff;
       text-align: center;
       padding: 35px;
       border-radius: 25px;
   }

   .offer-box h2 {
       font-size: 42px;
       margin-bottom: 10px;
   }

   .offer-box p {
       color: #d1d1d1;
   }

   /* ABOUT */

   .about {
       padding: 100px 7%;
       background: #111;
       color: #fff;
       text-align: center;
   }

   .about-text {
       max-width: 900px;
       margin: auto;
   }

   .about-text span {
       font-size: 13px;
       letter-spacing: 3px;
       color: #c5c5c5;
   }

   .about-text h2 {
       font-size: 42px;
       line-height: 1.3;
       margin: 22px 0;
       color: #fff;
   }

   .about-text p {
       color: #d8d8d8;
       line-height: 1.9;
       margin-bottom: 18px;
       font-size: 16px;
   }

   .about-boxes {
       display: flex;
       justify-content: center;
       gap: 20px;
       margin-top: 35px;
       flex-wrap: wrap;
   }

   .about-card {
       background: #1d1d1d;
       padding: 25px;
       border-radius: 20px;
       min-width: 180px;
       transition: 0.3s;
   }

   .about-card:hover {
       transform: translateY(-10px);
       background: #fff;
   }

   .about-card:hover h3,
   .about-card:hover p {
       color: #111;
   }

   .about-card h3 {
       font-size: 32px;
       color: #fff;
       margin-bottom: 8px;
   }

   .about-card p {
       color: #d4d4d4;
       margin: 0;
       font-size: 14px;
   }

   /* SERVICES */

   .services {
       padding: 100px 7%;
       background: #f7f7f7;
   }

   .section-title {
       text-align: center;
       margin-bottom: 55px;
   }

   .section-title h2 {
       font-size: 48px;
       margin-bottom: 10px;
   }

   .section-title p {
       color: #666;
   }

   .service-grid {
       display: grid;
       grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
       gap: 25px;
   }

   .service-card {
       background: #ededed;
       padding: 35px 28px;
       border-radius: 22px;
       transition: 0.3s;
   }

   .service-card:hover {
       transform: translateY(-8px);
       background: #fff;
       box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
   }

   .service-card h3 {
       margin-bottom: 14px;
       font-size: 25px;
   }

   .service-card p {
       color: #666;
       line-height: 1.8;
       font-size: 15px;
   }

   /* PROJECTS */

   .projects {
       padding: 100px 7%;
   }

   .project-grid {
       display: grid;
       grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
       gap: 30px;
   }

   .project-card {
       background: #fff;
       border-radius: 24px;
       overflow: hidden;
       transition: 0.3s;
       box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
   }

   .project-card:hover {
       transform: translateY(-8px);
   }

   .project-card img {
       width: 100%;
       height: 220px;
       object-fit: cover;
   }

   .project-content {
       padding: 25px;
   }

   .project-content h3 {
       margin-bottom: 10px;
       font-size: 24px;
   }

   .project-content p {
       color: #666;
       line-height: 1.8;
       margin-bottom: 18px;
       font-size: 15px;
   }

   .project-content a {
       color: #111;
       text-decoration: none;
       font-weight: 600;
   }

   /* TESTIMONIALS */

   .testimonials {
       padding: 100px 7%;
       background: #f7f7f7;
   }

   .testimonial-grid {
       display: grid;
       grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
       gap: 25px;
   }

   .testimonial-card {
       background: #fff;
       padding: 35px 30px;
       border-radius: 24px;
       border: 1px solid rgba(0, 0, 0, 0.08);
       box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
       transition: 0.3s;
   }

   .testimonial-card:hover {
       transform: translateY(-8px);
   }

   .quote {
       font-size: 60px;
       opacity: 0.1;
       margin-bottom: 10px;
   }

   .testimonial-card p {
       color: #666;
       line-height: 1.8;
       margin-bottom: 20px;
       font-size: 15px;
   }

   .testimonial-card h3 {
       font-size: 20px;
       margin-bottom: 5px;
   }

   .testimonial-card span {
       color: #777;
       font-size: 14px;
   }

   /* CONTACT */

   .contact {
       padding: 100px 7%;
       text-align: center;
   }

   .contact h2 {
       font-size: 48px;
       margin-bottom: 15px;
   }

   .contact p {
       color: #666;
       margin-bottom: 30px;
   }

   /* POPUP */

   .popup {
       width: 100%;
       height: 100vh;
       background: rgba(0, 0, 0, 0.6);
       position: fixed;
       top: 0;
       left: 0;
       display: none;
       justify-content: center;
       align-items: center;
       z-index: 9999;
       padding: 20px;
   }

   .popup-content {
       background: #fff;
       width: 100%;
       max-width: 500px;
       padding: 35px;
       border-radius: 25px;
       position: relative;
   }

   .close {
       position: absolute;
       top: 15px;
       right: 20px;
       font-size: 28px;
       cursor: pointer;
   }

   .popup-content h2 {
       text-align: center;
       margin-bottom: 25px;
   }

   form {
       display: flex;
       flex-direction: column;
       gap: 16px;
   }

   input,
   select {
       width: 100%;
       padding: 15px;
       border-radius: 12px;
       border: 1px solid #ddd;
       background: #f5f5f5;
       outline: none;
   }

   button {
       background: #111;
       color: #fff;
       border: none;
       padding: 15px;
       border-radius: 12px;
       cursor: pointer;
       font-weight: 600;
   }

   /* FOOTER */

   .footer {
       background: #111;
       padding: 45px 7%;
       text-align: center;
   }

   .footer h2 {
       color: #fff;
       margin-bottom: 22px;
       font-size: 32px;
   }

   .footer-contact {
       display: flex;
       justify-content: center;
       gap: 15px;
       flex-wrap: wrap;
       margin-bottom: 20px;
   }

   .footer-contact a {
       color: #d6d6d6;
       text-decoration: none;
       border: 1px solid rgba(255, 255, 255, 0.1);
       padding: 12px 18px;
       border-radius: 50px;
       font-size: 14px;
       transition: 0.3s;
   }

   .footer-contact a:hover {
       background: #fff;
       color: #111;
   }

   .footer p {
       color: #999;
       font-size: 14px;
   }

   /* RESPONSIVE */

   @media(max-width:992px) {

       .hero {
           flex-direction: column;
           text-align: center;
           padding: 130px 6% 70px;
       }

       .hero-text h1 {
           font-size: 52px;
       }

       .hero-text p {
           margin: auto auto 30px;
       }

       .hero-image img {
           width: 75%;
       }

   }

   @media(max-width:768px) {

       nav {
           padding: 15px 5%;
       }

       nav ul {
           display: none;
       }

       .logo {
           font-size: 20px;
       }

       .logo img {
           width: 42px;
       }

       .btn {
           padding: 10px 18px;
           font-size: 13px;
       }

       .hero {
           padding: 120px 5% 60px;
           gap: 40px;
       }

       .hero-text h1 {
           font-size: 38px;
           line-height: 1.2;
       }

       .hero-text p {
           font-size: 15px;
           line-height: 1.8;
       }

       .offer-section,
       .services,
       .projects,
       .testimonials,
       .contact {
           padding-left: 5%;
           padding-right: 5%;
       }

       .offer-box {
           padding: 28px 20px;
       }

       .offer-box h2 {
           font-size: 28px;
       }

       .about {
           padding: 80px 5%;
       }

       .about-text h2 {
           font-size: 32px;
       }

       .about-text p {
           font-size: 15px;
       }

       .section-title h2,
       .contact h2 {
           font-size: 34px;
       }

       .service-grid,
       .project-grid,
       .testimonial-grid {
           grid-template-columns: 1fr;
       }

       .footer-contact a {
           width: 100%;
           text-align: center;
       }

   }