:root {
      --primary: #0a192f;
      --accent: #00bcd4;
      --highlight: #43e97b;
      --secondary: #f9ab00;
      --light: #fff;
      --transition: .35s cubic-bezier(.77,0,.18,1);
    }
    body {
      margin: 0;
      font-family: 'Montserrat', sans-serif;
      background: #f4f8fb;
      color: var(--primary);
    }
    nav {
      background: var(--primary);
      padding: 0.7rem 0;
      box-shadow: 0 2px 8px rgba(0,0,0,0.08);
      position: sticky;
      top: 0;
      z-index: 100;
    }
    nav ul {
      list-style: none;
      display: flex;
      justify-content: center;
      gap: 2rem;
      margin: 0;
      padding: 0;
      transition: max-height .3s;
    }
    nav a {
      color: var(--light);
      text-decoration: none;
      font-weight: 600;
      font-size: 1.1rem;
      transition: color .2s;
      padding: 0.3rem 0.7rem;
      border-radius: 1rem;
    }
    nav a.active, nav a:hover {
      background: var(--accent);
      color: var(--primary);
    }
    .nav-toggle {
      display: none;
      background: none;
      border: none;
      color: var(--light);
      font-size: 2rem;
      position: absolute;
      right: 1.2rem;
      top: 0.7rem;
      cursor: pointer;
      z-index: 101;
    }
    @media (max-width: 700px) {
      nav {
        padding: 0.7rem 0 0.7rem 0;
      }
      .nav-toggle {
        display: block;
      }
      nav ul {
        flex-direction: column;
        align-items: flex-start;
        background: var(--primary);
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        gap: 0;
        box-shadow: 0 8px 24px rgba(0,0,0,0.13);
      }
      nav ul.open {
        max-height: 400px;
        padding-bottom: 0.7rem;
      }
      nav ul li {
        width: 100%;
      }
      nav ul li a {
        display: block;
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
        border-radius: 0;
      }
    }

.showcase-icon {
    display: flex;
    position: fixed;
    top: 40%;
    right: 12px;
    z-index: 100;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #2a4d7a 80%, #4fa3ff 100%);
    border-radius: 18px;
    box-shadow: 0 4px 18px rgba(44,104,255,0.10);
    padding: 12px 8px;
    transition: background 0.25s, box-shadow 0.25s;
    animation: showcaseIconFadeIn 0.7s cubic-bezier(.4,1.2,.4,1);
}

@keyframes showcaseIconFadeIn {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media(max-width:800px){
    .showcase-icon{
        display: none;
    }
}

.showcase-icon .showcase-icon-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    background: linear-gradient(180deg, #2a4d7a 80%, #4fa3ff 100%);
    width: 54px;
    min-height: 240px;
    padding: 18px 0;
    position: sticky;
    top: 80px;
    right: 0;
    box-shadow: 0 6px 24px rgba(44,104,255,0.13);
    border-radius: 20px 0 0 20px;
    z-index: 101;
    animation: showcaseSlideIn 0.7s cubic-bezier(.4,1.2,.4,1);
    transition: box-shadow 0.3s, background 0.3s;
}


.showcase-icon .showcase-icon-main a{
    color: #fff;
    font-size: 20px;
}
.showcase-icon:hover{
  background: linear-gradient(90deg, var(--highlight) 0%, var(--accent) 100%);
}
.showcase-icon .showcase-icon-main:hover{
  background: linear-gradient(90deg, var(--highlight) 0%, var(--accent) 100%);
}
@keyframes showcaseSlideIn {
    from {
        transform: translateX(80px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}



.hero {
      text-align: center;
      padding: 3.5rem 1rem 2.5rem 1rem;
      background: linear-gradient(90deg, var(--highlight) 0%, var(--accent) 100%);
      color: var(--primary);
    }
    .hero h1 {
      font-size: 2.7rem;
      margin-bottom: 0.7rem;
      font-weight: 700;
    }
    @font-face{
      font-family: 'MyCaligraphyFont';
      src: url('media/MyCaligraphyFont.woff2') format('woff2'),
           url('media/MyCaligraphyFont.woff') format('woff');
      font-weight: normal;
      font-style: normal;
    }
     .hero .add {
      font-size: 2.0rem;
      margin-bottom: 0.7rem;
      font-weight: 700;
      font-family: 'MyCaligraphyFont', cursive;
    }
    .hero h2 {
      font-size: 1.5rem;
      font-weight: 400;
      margin-bottom: 1.2rem;
    }
    .hero .cta {
      margin-top: 2rem;
      display: flex;
      gap: 1.2rem;
      justify-content: center;
      flex-wrap: wrap;
    }
    .btn {
      background: var(--primary);
      color: var(--light);
      padding: 0.7rem 2rem;
      border: none;
      border-radius: 2rem;
      font-weight: 700;
      font-size: 1.1rem;
      cursor: pointer;
      text-decoration: none;
      transition: background .2s, color .2s, transform .2s;
      box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    }
    .btn:hover {
      background: var(--accent);
      color: var(--primary);
      transform: translateY(-2px) scale(1.04);
    }
    .section-title {
      text-align: center;
      color: var(--highlight);
      font-size: 2rem;
      margin: 2.5rem 0 1rem 0;
      font-weight: 700;
    }
    .about, .services, .products, .contact {
      max-width: 1100px;
      margin: 0 auto;
      padding: 2rem 1rem;
      background: #fff;
      border-radius: 1.2rem;
      box-shadow: 0 2px 12px rgba(0,0,0,0.07);
      margin-bottom: 2.5rem;
    }
    .about-content {
      display: flex;
      flex-wrap: wrap;
      gap: 2.5rem;
      align-items: center;
      justify-content: center;
    }
    .about-img {
      flex: 0 0 180px;
      width: 180px;
      height: 180px;
      border-radius: 50%;
      overflow: hidden;
      box-shadow: 0 4px 24px rgba(0,0,0,0.13);
      border: 4px solid var(--highlight);
      background: #eee;
      position: relative;
      animation: about-img-float 3.5s ease-in-out infinite alternate;
    }
    @keyframes about-img-float {
      0% {
      transform: translateY(0) scale(1) rotate(0deg);
      box-shadow: 0 4px 24px rgba(0,0,0,0.13);
      }
      40% {
      transform: translateY(-12px) scale(1.04) rotate(-3deg);
      box-shadow: 0 12px 32px rgba(0,0,0,0.16);
      }
      60% {
      transform: translateY(-16px) scale(1.06) rotate(3deg);
      box-shadow: 0 16px 36px rgba(0,0,0,0.18);
      }
      100% {
      transform: translateY(0) scale(1) rotate(0deg);
      box-shadow: 0 4px 24px rgba(0,0,0,0.13);
      }
    }
    .about-img::after {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: 50%;
      pointer-events: none;
      background: conic-gradient(from 0deg, var(--highlight), var(--accent), var(--highlight));
      opacity: 0.18;
      animation: about-img-glow 4s linear infinite;
      z-index: 2;
    }
    @keyframes about-img-glow {
      0% { filter: blur(0px); opacity: 0.18; transform: rotate(0deg);}
      50% { filter: blur(4px); opacity: 0.28; }
      100% { filter: blur(0px); opacity: 0.18; transform: rotate(360deg);}
    }
    .about-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: grayscale(30%) brightness(1.08);
      transition: filter .7s;
    }
    .about-img img:hover {
      filter: grayscale(0%) brightness(1.15);
    }
    .about-text {
      flex: 1 1 320px;
      font-size: 1.1rem;
      line-height: 1.7;
      color: #222;
    }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
      gap: 2rem;
      margin-top: 2rem;
    }
    .service-card {
      background: rgba(74,78,105,0.85);
      border-radius: 1.2rem;
      padding: 2rem 1.5rem;
      box-shadow: 0 2px 12px rgba(0,0,0,0.10);
      text-align: center;
      color: var(--light);
      transition: transform .2s, box-shadow .2s;
    }
    .service-card:hover {
      transform: translateY(-8px) scale(1.04);
      box-shadow: 0 8px 32px rgba(0,0,0,0.13);
    }
    .service-icon {
      font-size: 2.2rem;
      color: var(--highlight);
      margin-bottom: 1rem;
    }
    .products-list {
      display: grid;
      grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
      gap: 2rem;
      margin-top: 2rem;
    }
    .product-card {
      background: #f8fafc;
      border-radius: 1.2rem;
      box-shadow: 0 2px 8px rgba(0,0,0,0.08);
      padding: 1.5rem 1rem;
      text-align: center;
      transition: transform .2s, box-shadow .2s;
    }
    .product-card:hover {
      transform: translateY(-6px) scale(1.03);
      box-shadow: 0 8px 24px rgba(0,0,0,0.13);
    }
    .product-img {
      width: 100%;
      max-width: 120px;
      height: 120px;
      object-fit: contain;
      margin-bottom: 1rem;
      border-radius: 1rem;
      background: #e0f7fa;
      box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    }
    .product-title {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--primary);
      margin-bottom: 0.5rem;
    }
    .product-desc {
      font-size: 0.98rem;
      color: #444;
      margin-bottom: 0.7rem;
    }

    .see-more-btn {
                    display: inline-block;
                    padding: 12px 32px;
                     background: linear-gradient(90deg, var(--highlight) 0%, var(--accent) 100%);
                    color: #fff;
                    border: none;
                    border-radius: 24px;
                    font-size: 1.1em;
                    font-weight: 600;
                    text-decoration: none;
                    box-shadow: 0 2px 8px rgba(44, 104, 255, 0.12);
                    transition: background 0.3s, transform 0.2s;
                    margin-top: 12px;
                }
                .see-more-btn:hover {
                    background: linear-gradient(90deg, var(--highlight) 0%, var(--accent) 100%);
                    transform: translateY(-3px) scale(1.04);
                }

    .contact-form {
      max-width: 420px;
      margin: 0 auto;
      background: #f2f9f7;
      border-radius: 1.2rem;
      box-shadow: 0 2px 8px rgba(0,0,0,0.08);
      padding: 2rem 1.5rem;
      display: flex;
      flex-direction: column;
      gap: 1.1rem;
    }
    .contact-form input, .contact-form textarea {
      width: 100%;
      padding: 0.7rem;
      border-radius: 0.7rem;
      border: 1.5px solid var(--accent);
      font-size: 1rem;
      margin-bottom: 0.5rem;
      transition: border-color .2s;
    }
    .contact-form input:focus, .contact-form textarea:focus {
      border-color: var(--highlight);
      outline: none;
    }
    .contact-form button {
      align-self: flex-end;
    }
    .footer {
      text-align: center;
      padding: 1.2rem 0 1rem 0;
      background: var(--primary);
      color: var(--light);
      font-size: 1rem;
      border-radius: 1.2rem 1.2rem 0 0;
      margin-top: 2rem;
    }
    #bless{
      position: relative; top: 100px;
    }
    @media (max-width: 900px) {
      .about-content { flex-direction: column; gap: 1.5rem; }
      .services-grid, .products-list { grid-template-columns: 1fr; }
      #bless{position: relative; top: 50px ; right: 60px;}
      #p1{position: relative; left: 70px;}
      #pro{height: 200px; display:inline-block; justify-content: center;}
    }