/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 40px 0;
}

/* Header */
header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}



.logo-title {
  display: flex;
  align-items: center;
}

.logo {
  height: 100px;
  margin-right: 20px;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}


nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  position: relative;
}

nav a::after {
  content: '';
  height: 2px;
  background: #0077ff;
  width: 0;
  position: absolute;
  bottom: -5px;
  left: 0;
  transition: width 0.3s;
}

nav a:hover::after {
  width: 100%;
}

/* Hero Section */
.hero {
  background: linear-gradient(to right, #0077ff, #00c6ff);
  color: #fff;
  padding: 100px 0;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  background: #fff;
  color: #0077ff;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: background 0.3s, color 0.3s;
}

.btn:hover {
  background: #0077ff;
  color: #fff;
}

/* Section Titles */
section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #222;
}

/* About Section */
.about p {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.1rem;
}

/* Services */
.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.card {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  text-align: center;
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-10px);
}

.card h3 {
  margin-bottom: 10px;
  color: #0077ff;
}

/* Portfolio */
.gallery {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.gallery img {
  border-radius: 10px;
  width: 300px;
  height: auto;
  object-fit: cover;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

/* Order Form */
form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 600px;
  margin: 0 auto;
}

input, select, textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}

label {
  font-weight: 500;
  margin-top: 10px;
}

button[type="submit"] {
  background: #0077ff;
  color: white;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

button[type="submit"]:hover {
  background: #005fcc;
}

/* Contact Section */
.contact p {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}

.whatsapp-float img {
  width: 60px;
  height: 60px;
}

/* Footer */
footer {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 25px 0;
  margin-top: 50px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    background: white;
    padding: 20px;
    border-radius: 10px;
    display: none;
  }

  header .container {
    flex-direction: column;
    align-items: flex-start;
  }
}
.logo-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.logo-card {
  background: #fff;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: transform 0.3s;
  text-align: center;
  width: 180px;
  height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.logo-card img {
  max-width: 100%;
  height: 100px;
  object-fit: contain;
}

.logo-card p {
  margin-top: 10px;
  font-weight: bold;
  color: #0077ff;
}

.hidden-logos {
  display: none;
}

@keyframes openBook {
  0% {
    transform: rotateY(0deg);
  }
  50% {
    transform: rotateY(90deg) scale(1.1);
  }
  100% {
    transform: rotateY(180deg);
  }
}

.logo-card.animate-open {
  animation: openBook 1s forwards;
  perspective: 1000px;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.container p a{
  text-decoration: none;
  color: black;
  
}
.container p a:hover{

  color:blue;
}