* {
         box-sizing: border-box;
   }

/* Style the body */
body {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
}

/* Header/logo Title */
.header1 {
  text-align: center;
  background-image: url('website creation/CMYKbg.jpg');
  background-repeat: no-repeat;
  background-attachment: fixed;  
  background-size: cover;
  color: white;
}

/* Increase the font size of the heading */
.header h1 {
  font-size: 40px;
}

.navbar {
  overflow: hidden;
  background-color: #333;
  position: sticky;
  position: -webkit-sticky;
  top: 0;
}

/* Style the navigation bar links */
.navbar a {
  float: left;
  display: block;
  color: white;
  text-align: center;
  padding: 14px 20px;
  text-decoration: none;
}


/* Right-aligned link */
.navbar a.right {
  float: right;
}

/* Change color on hover */
.navbar a:hover {
  background-color: #ddd;
  color: black;
}

/* Active/current link */
.navbar a.active {
  background-color: #666;
  color: white;
}

/* Column container */
.row {  
  display: -ms-flexbox; /* IE10 */
  display: flex;
  -ms-flex-wrap: wrap; /* IE10 */
  flex-wrap: wrap;
}

/* Create two unequal columns that sits next to each other */
/* Sidebar/left column */
.side {
  -ms-flex: 30%; /* IE10 */
  flex: 30%;
  background-color: #f1f1f1;
  padding: 20px;
}

/* Main column */
.main {   
  -ms-flex: 70%; /* IE10 */
  flex: 70%;
  background-color: white;
  padding: 20px;
}

/* Fake image, just for this example */
.column {
  float: left;
  width: 33.33%;
  padding: 5px;
}

/* Clearfix (clear floats) */
.row::after {
  content: "";
  clear: both;
  display: table;
}


/* Responsive layout - when the screen is less than 700px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 700px) {
  .row {   
    flex-direction: column;
  }
}

/* Responsive layout - when the screen is less than 400px wide, make the navigation links stack on top of each other instead of next to each other */
@media screen and (max-width: 400px) {
  .navbar a {
    float: none;
    width: 100%;
  }
}
.gallery {
      display: flex;
      gap: 10px;
    }
   
 .image-item {
      width: 200px;
    }
   
 .image-item img {
      width: 100%;
      height: auto;
    }
header .contact-info {
  font-size: 14px;
  margin-bottom: 10px;
  text-align: center;
}

header .contact-info p {
  margin: 0;
}

header .contact-info strong {
  font-weight: bold;
}
nav {
  background-color: #ff87f0;
position: fixed; /* Fix the menu to the top */
    
top: 0;
    
left: 0;
    
width: 100%;
    
 z-index: 1000; /* Ensure the menu stays on top of other content */
    
height: 54px;
}
nav ul {
  list-style: none;
  display: flex;
  justify-content: end;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 20px;
}

nav ul li a:hover {
  background-color: #1abc9c;
  border-radius: 4px;
}
.menu {
  list-style: none;
  display: flex;
}

.menu > li {
  position: relative;
}

.menu a {
  color: white;
  text-decoration: none;
  display: block;
  transition: background-color 0.3s ease;
}

.menu a:hover {
  background-color:  #666;
}

/* Style for the submenu */
.submenu .submenu-items {
  display: none; /* Hide the submenu by default */
  position: absolute;
  right: 0;
  top: 100%;
  background-color:#f7c7e6;
  list-style: none;
  padding: 0;
}

.submenu:hover .submenu-items {
  display: block; /* Show the submenu when hovering over the parent item */
}

.submenu-items li a {
  padding: 10px 20px;
  color: white;
}

.submenu-items li a:hover {
  background-color: #666;
}
.quick-links  ul {
  list-style-type: none;
}

.quick-links ul li {
  margin-bottom: 8px;
}

.quick-links ul li a {
  text-decoration: none;
  color: #ccc;
  transition: color 0.3s;
}

.quick-links  ul li a:hover {
  color: #fff;
}
.address p {
  margin-bottom: 5px;
  font-size: 0.9em;
  
}
.address{
	 padding: 2px 0px 0px 233px;
}
.quick-links h4,.address h4{
  font-size: 1.2em;
  margin-bottom: 10px;
  text-transform: uppercase;
}
/* Contact Section */
.contact {
   background-color: #e8bee9;
  text-align: center;
    width: 100%;
}

.contact h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.contact p {
  font-size: 1.1rem;
}

.contact a {
  color: #2980b9;
  text-decoration: none;
}

.contact a:hover {
  text-decoration: underline;
}
.fixed-icon {
    position: fixed;
    left: 10px;
    display: block;
    width: 50px;
    height: 50px;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.fixed-icon img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Hover Effect */
.fixed-icon:hover {
    transform: scale(1.1);
}

/* WhatsApp Icon */
.whatsapp-icon {
    top: 10px; /* Adjust position as needed */
}

/* Email Icon */
.email-icon {
    top: 70px; /* Adjust position as needed */
}

/* Phone Icon */
.phone-icon {
    top: 130px; /* Adjust position as needed */
}
