/* Default styles */
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* Header Start */
header {
    width: 100%;
    height: 2cm;
    /* background-color:#e4e0da; */
    background: linear-gradient(135deg, #e1f5fe, #fce4ec);
    display: flex;
    justify-content: space-between; 
    align-items: center; /* Center vertically */
    box-sizing: border-box;
    padding: 0 10px;
    border-bottom: 1px solid black;
}

/* Unique styles for each box */
.box1 {
    /* background-color: lightblue; */
    width: 30px;
    height: 30px;

}
.logo img {
   
    height: 55px;
    width: 55px;
}
.box2 {
    /* background-color: lightgreen; */
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* padding: 15px; */
    margin: 8px;
    
}
header .ids {
    /* margin-left: 30px; */
    display: flex;
    align-items: center;
}

.ids a {
    color: goldenrod;
    text-decoration: none;
    font-size: 1em;
    margin: 0;
    padding: 0;
}

.ids h1 {
    margin: 0;
    padding: 0;
}

.box3 {
    /* background-color: coral; */
    width: 30px;
    height: 30px;
    margin-right: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
   
}

.Fu {
    margin-right: 30px;
    align-items: center;
    font-family: "Sour Gummy", sans-serif;
}

/* .socialmedia {
    margin-left: auto;
    display: flex;
    align-items: center;
     margin-right: 30px;
} */

.socialmedia ul {
    display: flex;
    list-style: none;
    /* align-items: center; */
    /* justify-content: center; */
    padding: 0;
}

.socialmedia img {
    height: 30px;
}

.box4 {
    /* background-color: yellow; */
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    
}

header button {
    height: 50px;
    /* margin-right: 30px; */
    width: 120px;
    font-weight: 500;
    font-size: 15px;
    background-color: goldenrod;
    border-radius: 25px;
    font-family: "Sour Gummy", sans-serif;
}


/* Layout for left and right groups */
.left-group{
    display: flex;
    /* gap:8px; */
    align-items: center; /* Center boxes vertically */
}
.right-group {
    display: flex;
    /* gap: 10px; Space between boxes */
    align-items: center; /* Center boxes vertically */
}

/* Responsive Design */

/* Small Mobile (Up to 320px) */
@media (max-width: 320px) {
    header {
        flex-direction:row;
        height: 40px;
        padding: 5px;
        /* justify-content: center; */
        align-items: center; /* Center both groups horizontally */
    }
    .left-group{
        gap: 7px;
        flex-direction: row;
        /* justify-content: center; */
    }
    .right-group {
        gap: 5px;
        flex-direction: row; /* Keep boxes in a row */
        /* justify-content: center; */
    }
    .box1{
        width: 35px;
        height: 35px;
    }
    .logo img {
   
        height: 35px;
        width: 35px;
    }
    .box2{
        width: 125px;
        height: 25px;
        padding:0px;
        margin: 0px;
        
    }
    .ids h1 {
        margin: 0;
        padding: 0;
        font-size: 13px;
    }
    .box3 {
       display: none;
    }
    
    .box4 {
        width: 80px;
        height: 40px;
    }
    header button {
        height: 30px;
        /* margin-right: 30px; */
        width: 68px;
        font-weight: 500;
        font-size: 11px;
        background-color: goldenrod;
        font-family: "Sour Gummy", sans-serif;
    }
}

/* Medium Mobile (321px to 480px) */
@media (min-width: 321px) and (max-width: 480px) {
    .box1{
        width: 45px;
        height: 45px;
    }
    .logo img {
   
        height: 45px;
        width: 45px;
    }
    .box3 {
        display: none;
    }
    .box2{
        width: 175px;
        height: 50px;
    }
    .ids h1 {
        margin: 0;
        padding: 0;
        font-size: 18px;
    }
    .box4 {
        width: 70px;
        height: 38px;
    }
    header button {
        height: 35px;
        /* margin-right: 30px; */
        width: 68px;
        font-weight: 500;
        font-size: 11px;
        background-color: goldenrod;
        font-family: "Sour Gummy", sans-serif;
    }
}

/* Large Mobile and Small Tablets (481px to 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .box1 {
        width: 55px;
        height: 55px;
    }
    .logo img {
        /* margin-left: 0px; */
        /* padding: 20px; */
        height: 55px;
        width: 55px;
    }
    .box3 {
        width: 165px;
        height: 50px;
    }
    .socialmedia img {
        height: 42px;
    }
    .box2{
        width: 300px;
        height: 50px;
    }
    .box4 {
        width: 75px;
        height: 40px;
    }
    header button {
        height: 38px;
        /* margin-right: 30px; */
        width: 70px;
        font-weight: 500;
        font-size: 15px;
        background-color: goldenrod;
        font-family: "Sour Gummy", sans-serif;
    }
}

/* Tablets (769px to 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .box1{
        width: 55px;
        height: 55px;
    }
   
    .box3 {
        width: 220px;
        height: 70px;
    }
    .socialmedia img {
        height: 56px;
    }
    .box2{
        width: 360px;
        height: 55px;
    }
    .ids h1 {
        margin: 0;
        padding: 0;
        font-size: 35px;
    }
    .box4 {
        width: 85px;
        height: 40px;
    }
    header button {
        height: 38px;
        /* margin-right: 30px; */
        width: 80px;
        font-weight: 500;
        font-size: 13px;
        background-color: goldenrod;
        font-family: "Sour Gummy", sans-serif;
    }
    
}

/* Laptops (1025px to 1366px) */
@media (min-width: 1025px) and (max-width: 1366px) {
    header {
        flex-direction:row;
        height: 85px;
        padding: 10px;
        align-items: center; /* Center both groups horizontally */
    }
    .left-group{
        gap: 7px;
        flex-direction: row;
        /* justify-content: center; */
    }
    .right-group {
        gap: 8px;
        flex-direction: row; /* Keep boxes in a row */
        /* justify-content: center; */
    }
    .box1{
        width: 80px;
        height: 80px;
    }
    .logo img {
        height: 80px;
        width: 80px;
    }
    .box2{
        width: 495px;
        height: 80px;
    }
    .ids h1 {
        
        font-size: 50px;
    }
    .box3 {
        width: 260px;
        height: 70px;
    }
    .socialmedia img {
        height: 66px;
    }
    .box4 {
        width: 100px;
        height: 45px;
    }
   
    
}

/* Desktops (1367px to 1920px) */
@media (min-width: 1367px) and (max-width: 1920px) {
    header {
        flex-direction:row;
        height: 130px;
        /* padding: 5px; */
        align-items: center; /* Center both groups horizontally */
    }
    .left-group{
        gap: 7px;
        flex-direction: row;
        /* justify-content: center; */
    }
    .right-group {
        gap: 15px;
        flex-direction: row; /* Keep boxes in a row */
        /* justify-content: center; */
    }
    .box1{
        width: 115px;
        height: 115px;
    }
    .logo img {
        height: 115px;
        width: 115px;
    }
    .box2{
        width: 570px;
        height: 85px;
    }
    .ids h1 {
        
        font-size: 60px;
    }
    .box3 {
        width: 330px;
        height: 90px;
    }
    .socialmedia img {
        height: 85px;
    }
    .box4 {
        width: 145px;
        height: 75px;
    }
    header button {
        height: 60px;
        /* margin-right: 30px; */
        width: 125px;
        font-weight: 500;
        font-size: 15px;
        background-color: goldenrod;
        font-family: "Sour Gummy", sans-serif;
    }
    
}

/* Large Screens (Above 1920px - 4K) */
@media (min-width: 1921px) {
    header {
        flex-direction:row;
        height: 180px;
        /* padding: 5px; */
        align-items: center; /* Center both groups horizontally */
    }
    .left-group{
        gap: 7px;
        flex-direction: row;
        /* justify-content: center; */
    }
    .right-group {
        gap: 15px;
        flex-direction: row; /* Keep boxes in a row */
        /* justify-content: center; */
    }
    .box1{
        width: 165px;
        height: 155px;
    }
    .logo img {
        height: 155px;
        width: 165px;
    }
    .box2{
        width: 980px;
        height: 135px;
    }
    .ids h1 {
        
        font-size: 104px;
    }
    .box3 {
        width: 660px;
        height: 160px;
    }
    .socialmedia img {
        height: 170px;
    }
    .box4 {
        width: 215px;
        height: 120px;
    }
    header button {
        height: 115px;
        margin-right: 30px;
        width:210px;
        font-weight: 500;
        font-size: 35px;
        background-color: goldenrod;
        font-family: "Sour Gummy", sans-serif;
    }
    
}

/* Header End  */







/* Contact Form */
.cf {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #e1f5fe, #fce4ec);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
  }
  
  .contact-container {
    display: flex;
    flex-wrap: wrap; /* Enable wrapping for responsiveness */
    max-width: 1200px; /* Adjusted for larger screens */
    width: 100%;
    background: #ffffff;
    border-radius: 15px;
    border: 1px solid #ddd;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
  }
  
  /* Left Section */
  .contact-left {
    background: linear-gradient(135deg, #b3e5fc, #f8bbd0);
    flex: 1;
    padding: 20px;
    /* display: flex; */
    /* flex-direction: column; */
    /* justify-content: space-between; */
    /* align-items: center; */
    /* text-align: center; */
    color: #fff;
  }
  
  .contact-left h3 {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    writing-mode: vertical-lr;
    transform: rotate(180deg);
  }
  
  .social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 82%;
  }
  
  .social-icons a img {
    width: 30px;
    filter: invert(1) brightness(0.8);
    transition: transform 0.3s;
  }
  
  .social-icons a:hover img {
    transform: scale(1.2);
  }
  
  /* Right Section */
  .contact-right {
    flex: 2;
    padding: 20px;
  }
  
  .contact-right h2 {
    font-size: 24px;
    margin: 10px 0;
    font-weight: bold;
    text-align: center;
  }
  
  .contact-right p {
    font-size: 14px;
    color: #555;
    text-align: center;
  }
  
  .contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: 20px 0;
  }
  
  .info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    text-align: center;
  }
  
  .info-item img {
    width: 30px;
  }
  
  .info-item span {
    font-size: 14px;
    color: #555;
  }
  
  /* Form */
  .fif {
    width: 85%;
    height: 290px; /* Fixed height for the form box */
    margin: 20px auto;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
  }
  
  form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    position: relative;
    height: 100%;
  }
  
  /* Inputs and Textarea with Underline Style */
  form input,
  form textarea {
    margin-bottom: 20px;
    padding: 15px 0;
    font-size: 14px;
    border: none;
    border-bottom: 2px solid #ddd;
    outline: none;
    width: 80%;
    background: none;
    text-align: left;
  }
  
  form input::placeholder,
  form textarea::placeholder {
    color: #bbb;
    font-size: 14px;
  }
  
  form input:focus,
  form textarea:focus {
    border-bottom: 2px solid #03a9f4;
    transition: 0.3s;
  }
  
  form textarea {
    resize: none;
    height: 80px;
  }
  
  /* Submit Button */
  form button {
    width: 160px;
    padding: 10px;
    font-size: 16px;
    color: #fff;
    background: #03a9f4;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
  }
  
  form button:hover {
    background: #0288d1;
    transform: translateY(-2px);
  }
  
  /* Responsive Design */
  
  /* For Mobile Devices (max-width: 480px) */
  @media (max-width: 480px) {
    .contact-container {
      flex-direction: column;
      max-width: 100%;
    }
  
    .contact-left {
      flex: unset;
      width: 100%;
    }
  
    .contact-right {
      flex: unset;
      width: 100%;
    }
  
    form input,
    form textarea {
      width: 90%; /* Adjusted width for smaller screens */
    }
  
    form button {
      width: 90px; /* Slightly smaller button for mobile */
      font-size: 14px;
    }
    
  }
  
  /* For Tablets (max-width: 768px) */
  @media (max-width: 768px) {
    .contact-container {
      flex-direction: column;
      max-width: 100%;
    }
  
    .contact-left {
      flex: unset;
      width: 100%;
    }
  
    .contact-right {
      flex: unset;
      width: 100%;
    }
  
    form input,
    form textarea {
      width: 85%;
    }
  
    form button {
      width: 115px;
      font-size: 15px;
    }
    .social-icons {
        margin-top: 160%;
      }
  }
  
  /* For Laptops (max-width: 1024px) */
  @media (max-width: 1024px) {
    .contact-container {
      flex-direction: row;
      max-width: 90%;
    }
  
    .contact-left {
      flex: 1;
    }
  
    .contact-right {
      flex: 2;
    }
  
    form input,
    form textarea {
      width: 80%;
    }
    .social-icons {
        margin-top: 115%;
      }
  }

 


  /* For 4K Screens (min-width: 1920px) */
  @media (min-width: 1920px) {
    .contact-container {
      max-width: 1400px;
      margin: 0 auto;
    }
  
    .contact-left h3 {
      font-size: 20px;
    }
  
    .contact-right h2 {
      font-size: 28px;
    }
  
    form input,
    form textarea {
      width: 70%;
      font-size: 16px;
    }
  
    form button {
      width: 180px;
      font-size: 18px;
    }
    .social-icons {
        margin-top: 70%;
      }
  }
  


  
/* Footer start */
.ftr{
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #2d0c55;
  color: #fff;
}
.footer {
  display: flex;
  flex-wrap: wrap; /* Allows wrapping for responsiveness */
  justify-content: space-between;
  padding: 20px 10px;
  background-color: #4a148c;
  color: #fff;
  gap: 30px;
  margin-top: 10px;
}
.footer-column {
  flex: 1;
  min-width: 250px; /* Ensures columns stay readable on small screens */
  max-width: 400px;
  margin: 0 auto;
}
.footer h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #fff;
  display: flex;
  align-items: center;
}
.footer h3 .icon-circle {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ff8fda;
  border-radius: 50%;
  background-color: transparent;
  color: #ff8fda;
  margin-right: 8px;
  font-size: 16px;
}
.footer p, .footer a {
  color: #ff8fda;
  text-decoration: none;
  line-height: 1.8;
  font-size: 14px;
}
.footer a:hover {
  text-decoration: underline;
}
.footer .contact-info p {
  margin: 10px 0;
}
.footer .latest-news {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.footer .news-item {
  display: flex;
  align-items: center;
}
.footer .news-item img {
  width: 80px;
  height: 70px;
  border-radius: 5px;
  margin-right: 10px;
  transition: transform 0.3s ease;
}
.footer .news-item img:hover {
  transform: scale(1.1);
}
.footer .news-item-content {
  flex: 1;
}
.footer .news-item-content a {
  display: block;
  color: #ff8fda;
  font-size: 14px;
  margin-bottom: 4px;
}
.footer .news-item-content p {
  color: #ff8fda;
  font-size: 12px;
  margin-top: 5px;
  padding-left: 2px;
}
.email-subscribe {
  display: flex;
  margin-top: 10px;
  justify-content: center;
}
.email-subscribe input[type="email"] {
  padding: 8px;
  border: none;
  border-radius: 5px 0 0 5px;
  outline: none;
  font-size: 14px;
}
.email-subscribe button {
  background-color: #ff4081;
  color: #fff;
  padding: 8px;
  border: none;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.email-subscribe button:hover {
  background-color: #ff80ab;
}
.icon {
  margin-right: 8px;
  color: #ff8fda;
  transition: transform 0.3s ease, color 0.3s ease;
}
.icon:hover {
  transform: scale(1.2);
  color: #ff4081;
}
.instagram img {
  width: 80px;
  height: 80px;
  margin: 5px;
  transition: transform 0.3s ease;
}
.instagram img:hover {
  transform: scale(1.1);
}
.footer-bottom {
  border-top: 1px solid #c2c2c2;
  padding: 10px 20px;
  display: flex;
  flex-wrap: wrap; /* Allows wrapping for smaller screens */
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #c2c2c2;
  background-color: #4a148c;
}
.footer-bottom a {
  color: #ff8fda;
  text-decoration: none;
}
.footer-bottom a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .footer {
    flex-direction: column; /* Stacks columns vertically on small screens */
    align-items: center;
    gap: 20px;
  }
  .footer-column {
    max-width: 100%; /* Expands columns to full width */
    text-align: center; /* Center-aligns text for readability */
  }
  .footer .latest-news .news-item {
    flex-direction: column; /* News items stack vertically */
    align-items: center;
  }
  .footer .news-item img {
    margin: 0 0 10px 0; /* Adjust margin for stacked layout */
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 5px;
  }
}

@media screen and (max-width: 480px) {
  .footer h3 {
    font-size: 16px;
  }
  .footer p, .footer a {
    font-size: 12px;
  }
  .footer .news-item img {
    width: 70px;
    height: 60px;
  }
  .email-subscribe input[type="email"] {
    font-size: 12px;
    padding: 6px;
  }
  .email-subscribe button {
    font-size: 12px;
    padding: 6px;
  }
  .instagram img {
    width: 60px;
    height: 60px;
  }
}

/* Footer End  */





