
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

/* --- Global Button Styling --- */
.bts {
    display: inline-block;
}
.btns {
  margin-top: 20px;
  box-sizing: border-box;
  border-radius: 10px;
  background-color: #f7d90c;
  border: none;
  color: #6733e2;
  padding: 15px 35px;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  text-decoration: none;
}

/* --- Navbar Styling --- */
.navbar {
  width: 100%;
  height: 70px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 100px;
  margin-top: 40px;
}

.navbar img {
  height: 100px;
}

.menu-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.menu-icon span {
  height: 3px;
  width: 28px;
  background: black;
  margin: 4px 0;
  border-radius: 3px;
}

/* --- First Section Styling --- */
.first {
  width: 100%;
  /* height: 90vh; */
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 80px;
  margin-top: 10px;
  padding: 20px;
  background-image: url('images/fggg.jpg');
  background-position: right ;
  background-size:  60% 100%;
  /* background-size: contain; */
  background-repeat: no-repeat;
  position: relative;
  z-index: 0;
  
  
}

.first-child {
  width: 70%;
  display: flex;
  justify-content: center;
  align-items: center;
  /* background-color: #ffd500; */
  
  
}

.lefts {
  width: 40%;
  /* background-color: aqua; */
}

.name {
  color: #6733e2;
  font-family: Montserrat, sans-serif;
  font-weight: bold;
  font-size: 50px;
}

.description {
  color: #6733e2;
  font-family: Montserrat, sans-serif;
  line-height: 40px;
  font-size: 20px;
  margin: 25px 0px;
}

.rights-a {
  width: 60%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  
  background-repeat: no-repeat; 
  
}

.rights-a img {
  width: 80%;
  max-width: 500px;
  position: relative;
  z-index: 1;
  opacity: 0.9;
  /* background-color: #f7d90c; */
}

/* --- Second Section Styling --- */

/* Tablet (<=992px) */
@media (max-width: 992px) {
  .first-child {
    flex-direction: column;
    text-align: center;
  }

  .lefts {
    width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
   

  }

  .rights-a {
    width: 100%;
    margin-top: 20px;
  }

  .name {
    font-size: 40px;
    color: #ffd500;
  }

  .description {
    font-size: 18px;
    line-height: 30px;
     color: #ffd500;
     text-align: center;
  }
  .bts{
    margin-bottom: 30px;
  }
}

/* Mobile (<=600px) */
@media (max-width: 600px) {
  .first {
    background-size: cover;
    background-position: center;
    padding: 15px;
  }

  .name {
    font-size: 28px;
    color: #6733e2;
  }

  .description {
    font-size: 16px;
    line-height: 25px;
    color: #6733e2;
  }

  .rights-a img {
    width: 100%;
    max-width: 300px;
  }

  .btns {
    padding: 10px 20px;
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .first-child {
    flex-direction: column;
    position: relative;
  }

  .rights-a {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    opacity: 0.15;    
    z-index: 0;       
  }

  .rights-a img {
    width: 100%;
    height: auto;
  }

  .lefts {
    width: 100%;
    
    text-align: center;
    position: relative;
    z-index: 2;   
    background: rgba(255, 255, 255, 0.9); 
    padding: 20px;
    border-radius: 10px;
    
  }
}

.part2 {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  margin-top: 40px;
}

.container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 60px;
  width: 80%;
}

.left {
  flex: 1;
  max-width: 350px;
  text-align: center;
}

.image-box {
  background-color: #6b2ed9;
  padding: 20px;
  border-radius: 8px;
}

.image-box img {
  width: 100%;
  border-radius: 4px;
}

.caption {
  color: white;
  margin-top: 12px;
  font-size: 20px;
}

.source {
  margin-top: 10px;
  font-size: 20px;
  color: #555;
}

.right {
  flex: 1;
  max-width: 500px;
}

.small-heading {
  text-transform: uppercase;
  font-size: 14px;
  color: #888;
  font-weight: bold;
  margin-bottom: 10px;
}

h1 {
  font-size: 30px;
  margin-bottom: 15px;
  line-height: 40px;
  text-align: justify;
  
}

.bold {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 30px;
  text-align: justify;
}

.desc {
  font-size: 18px;
  margin-bottom: 25px;
  line-height: 30px;
  text-align: justify;
}

/* --- Modern Media Queries --- */

/* For smaller screens like tablets (max-width: 768px) */
@media (max-width: 768px) {
  .navbar {
    padding: 0 20px;
    margin-bottom: 100px;
  }

  
  

  .container {
    flex-direction: column;
    align-items: center;
    width: 90%;
     /* margin-top: 100px;  */
  }

  .left,
  .right {
    width: 100%;
    max-width: none;
    text-align: center;
  }
  
  h1 {
    font-size: 24px;
    line-height: 32px;
    text-align: center;
  }
}

/* For even smaller screens like mobile phones (max-width: 480px) */
@media (max-width: 480px) {
  .navbar img {
    height: 100px;
  }

  .name {
    font-size: 30px;
  }

  .description {
    font-size: 16px;
    line-height: 25px;
  }

  .btns {
    padding: 10px 25px;
    font-size: 16px;
  }
  
  .source,
  .caption {
    font-size: 16px;
  }
}


/* card design */

/* --- Main Section Styling --- */

.back {
    background-color: #6b2ed9;
    padding: 60px 20px;
    text-align: center;
    margin-top: 50px;
}

.front {
    max-width: 1100px;
    margin: 0 auto;
}

.development .title {
    font-size: 40px;
    color:#f7d90c ;
    margin-bottom: 10px;
}

.development .color {
    color: white;
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 30px;
    font-family:'Open Sans', sans-serif ;
    text-align: center;
}

/* --- Card Flexbox Layout --- */

.flex {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

/* --- Individual Card Styling --- */

.cards {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: 300px;
    
    text-align: center;
    transition: transform 0.3s ease;
    margin-top: 30px;
    cursor: pointer;
}

.cards:hover {
    transform: translateY(-10px);
}

.cards .icon {
    font-size: 20px;
    color:#6733e2 ; 
    margin-bottom: 20px;
    width: 80px;
  height: 80px;
  background-color: #ffd500;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -60px auto 20px;

}

.cards .service-title {
    font-size: 18px;
    color: #6733e2 ;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: 800;
}

.cards .text {
    font-size: 16px;
    color: #111111;
    line-height: 1.5;
    margin-bottom: 20px;
    font-family:'Open Sans', sans-serif ;
    line-height: 30px;
}

.more-btn {
    background-color: #f7d90c;
    color: #6733e2;
    border: none;
    padding: 12px 24px;
    border-radius: 20px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: bold;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.more-btn:hover {
  background-color: #6733e2;
  color: #f7d90c;
}

/* --- Media Queries for Responsiveness --- */

/* Tablet and larger mobile devices (max-width: 768px) */
@media (max-width: 768px) {
    .flex {
        flex-direction: column;
        align-items: center;
       
    }

    .cards {
        width: 100%;
        max-width: 400px; /* Limits card width on tablets */
    }

    .development .title {
        font-size: 32px;
    }

    .development .color {
        font-size: 16px;
    }
}

/* Smaller mobile devices (max-width: 480px) */
@media (max-width: 480px) {
    .back {
        padding: 40px 15px;
        
    }

    .development .title {
        font-size: 28px;
    }
    
    .cards .icon {
        font-size: 40px;
    }
    
    .cards .service-title {
        font-size: 18px;
    }
    
    .cards .text {
        font-size: 14px;
    }
    
    .more-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}


/* poster */

.create{
    /* background-color: #55e02b; */
    width: 100%;
   
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 80px 0px;
}

.brand{
    max-width: 900px;
    width: 60%;
   
    /* background-color: #ffd500; */
   }
.power{
    display: flex;
    justify-content: center;
    /* align-items: center; */
  gap: 5%;
  
}
.firsts{
    width: 55%;
    /* background-color: maroon;
    */
}

.question{
  
    color:#5b2be0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 50px;
    margin-bottom: 40px;

}
ul li{
    color: #111111;
    font-size: 17px;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 40px;
   margin-left: 20px;
   list-style-type: square;
   font-weight: 700;
   
  
  
}
.freepik{
     font-family: Arial, Helvetica, sans-serif;
    margin: 30px 0px;
    font-size:20px;
    text-transform: capitalize;
}

.sec{
    width: 40%;
    
    background-color: rgb(187, 127, 255);
    display: flex;
   
    /* justify-content: flex-end; */
    
    
}

.poster{
    /* margin-top: 50px; */
   width: 100%;
  
   
}

/* media setting */
/* Tablet view */
@media (max-width: 900px) {
    .power {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .firsts, .sec {
        width: 100%;
    }

    .question {
        font-size: 35px;
        text-align: center;
    }

    ul li {
        font-size: 16px;
        line-height: 30px;
        margin-left: 0;
        text-align: center;
    }

    .sec {
        background-color: transparent; /* optional */
    }
}

/* Mobile view */
@media (max-width: 600px) {
    .create {
        margin: 50px 20px;
    }

    .question {
        font-size: 28px;
    }

    ul li {
        font-size: 18px;
        line-height: 25px;
    }

    .poster {
        width: 100%;
        height: auto;
    }
}



/* our team */

/* TEAM SECTION STYLES */
.team {
  padding: 60px 20px;
  background-color: #6733e2;
  font-family: 'Arial', sans-serif;
}

.teams {
  max-width: 1200px;
  margin: auto;
}

.members .dream {
  font-size: 60px;
  text-align: center;
  color:#f8dd28;
  margin-bottom: 10px;
  text-transform:uppercase ;
}

.members .short {
  text-align: center;
  font-size: 20px;
  color: white;
  line-height: 28px;
  margin-bottom: 40px;
}

.introduction {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-bottom: 40px;
}

.cards {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0px 5px 20px rgba(0,0,0,0.1);
  text-align: center;
  padding: 20px 15px;
  width: 30%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cards:hover {
  transform: translateY(-10px);
  box-shadow: 0px 10px 25px rgba(0,0,0,0.15);
}

.cards img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
}

.cards .names {
  font-size: 22px;
  color: #6733e2;
  margin-bottom: 5px;
}

.cards .skill {
  font-size: 16px;
  color: #333;
  display: block;
  margin-bottom: 10px;
}

.cards .parag {
  font-size: 15px;
  color: #555;
  margin-bottom: 15px;
}

.cards .links a {
  color: #6733e2;
  font-size: 30px;
  margin: 0 8px;
  transition: color 0.3s ease;
}

.cards .links a:hover {
  color: #f8dd28;
}

/* MEDIA QUERIES */

/* LAPTOP (1024px) */
@media (max-width: 1024px) {
  .members .dream { font-size: 36px; }
  .members .short { font-size: 16px; line-height: 24px; }
  .cards { width: 45%; padding: 18px 12px; }
  .cards img { width: 130px; height: 130px; }
}

/* TABLET (768px) */
@media (max-width: 768px) {
  .members .dream { font-size: 30px; }
  .members .short { font-size: 15px; line-height: 22px; }
  .cards { width: 70%; padding: 15px 10px; }
  .cards img { width: 120px; height: 120px; }
}

/* MOBILE (480px) */
@media (max-width: 480px) {
  .members .dream { font-size: 24px; }
  .members .short { font-size: 14px; line-height: 20px; }
  .cards { width: 90%; padding: 12px 8px; }
  .cards img { width: 100px; height: 100px; }
  .cards .names { font-size: 20px; }
  .cards .skill { font-size: 14px; }
  .cards .parag { font-size: 13px; }
  .cards .links a { font-size: 16px; margin: 0 6px; }
}

/* EXTRA SMALL MOBILE (360px) */
@media (max-width: 360px) {
  .cards { width: 95%; }
  .cards img { width: 90px; height: 90px; }
  .cards .names { font-size: 18px; }
  .cards .skill { font-size: 13px; }
  .cards .parag { font-size: 12px; }
  .cards .links a { font-size: 15px; margin: 0 5px; }
}


/* questions */

.faq-container {
    margin-top: 50px;
  }

  .faq, .head {
    max-width: 800px;
    width: 70%;
    margin: auto;
  }

  .head {
    text-align: center;
    padding: 20px 0px;
  }

  .head h1 {
    color: #6733e2;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 50px;
    font-size: 50px;
    font-weight: 600;
    text-align: center;
  }

  .underline {
    width: 150px;
    height: 10px;
    background-color: #6A1B9A;
    margin: 0 auto;
    border-radius: 5px;
  }

  .faq {
    border-radius: 10px;
    padding: 10px 20px;
  }

  details {
    margin: 15px 0;
  }

  
    summary {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 22px;
  background-color: #f8dd28;
  color: #6733e2;
  padding: 20px 30px;
  border-radius: 10px;
  margin: 15px 0px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  list-style: none; /* removes default arrow */
  position: relative;
}

summary::after {
  content: "⌄";  /* down arrow */
  font-size: 30px;
  color: #6733e2;
  position: absolute;
  right: 20px;
  transition: transform 0.3s ease;
  bottom: 20px;
}

details[open] summary::after {
  transform: rotate(180deg); /* rotates arrow upward */
}

summary:hover {
  background-color: #6733e2;
  color: #ffffff;
}

summary:hover::after {
  color: #ffffff; /* arrow color changes on hover */
}

  details p {
    font-family: 'Open Sans', sans-serif;
    padding: 20px 50px;
    color: #111111;
    font-size: 18px;
    line-height: 30px;
  }

  /* MEDIA QUERIES */
  @media (max-width: 1024px) {
    .head h1 {
      font-size: 40px;
      line-height: 45px;
    }
    .faq, .head {
      width: 85%;
    }
    summary {
      font-size: 20px;
      padding: 18px 25px;
    }
    details p {
      font-size: 16px;
    }
  }

  @media (max-width: 768px) {
    .head h1 {
      font-size: 32px;
      line-height: 40px;
    }
    .faq, .head {
      width: 90%;
    }
    summary {
      font-size: 18px;
      padding: 15px 20px;
    }
    details p {
      font-size: 15px;
      padding: 15px 30px;
    }
  }

  @media (max-width: 480px) {
    .head h1 {
      font-size: 26px;
      line-height: 35px;
    }
    summary {
      font-size: 16px;
      padding: 12px 20px;
    }
    details p {
      font-size: 14px;
      padding: 10px 20px;
    }
  }

  /* test */
  
/* 🌟 Testimonial Section */
.testimonial-section {
  text-align: center;
  padding: 50px 20px;
  background: #6733e2;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.yellow-strip {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 180px;
  background: #ffeb3b;
  z-index: 0;
  transform: translateY(-50%);
}

.testimonial-header {
  position: relative;
  z-index: 1;
  margin-bottom: 40px;
}

.testimonial-header h2 {
  font-size: 40px;
  font-weight: bold;
  color: white;

  /* background-color: #50d92e; */
    
}

/* 🌟 Cards Container */
.testimonial-cards {
  
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* 🌟 Individual Card */
.card {
  background: #fff;
  color: #000;
  border-radius: 12px;
  padding: 20px;
  width: 270px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  text-align: center;
  transition: transform 0.3s ease-in-out;
  cursor: pointer;
  margin-top: 50px;
}

/* Image */
.card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 15px;
  
}

.card h3 {
  font-size: 23px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #6733e2;
}

.card p {
  font-size: 14px;
  line-height: 1.7;
  margin: 10px 0px;
}

/* ⭐ Zig-Zag Placement */
.card:nth-child(odd) {
  transform: translateY(-30px);
}
.card:nth-child(even) {
  transform: translateY(30px);
}

/* 🌊 Floating Animation on Hover */
.card:hover {
  animation: floatWave 1.5s ease-in-out infinite;
}

/* Wave effect */
@keyframes floatWave {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-20px); }
  100% { transform: translateY(0); }
}

/* 📱 RESPONSIVE DESIGN */

/* Large desktops */
@media (min-width: 1200px) {
  .testimonial-cards {
    gap: 40px;
  }
}
/* Tablets & small laptops */
@media (max-width: 992px) {
  .testimonial-cards {
    gap: 20px;
  }
  .card {
    width: 220px;
  }
}

/* Mobile landscape */
@media (max-width: 768px) {
  .testimonial-cards {
    flex-direction: column;
    align-items: center;
  }
  .card {
    width: 80%;
    max-width: 320px;
    margin-top: 10px;
    margin-bottom: 30px ;
  }
/* Zigzag smaller */
  .card:nth-child(odd) {
    transform: translateY(-15px);
  }
  .card:nth-child(even) {
    transform: translateY(15px);
  }

  /* Small mobile screens */
@media (max-width: 480px) {
  .testimonial-section {
    padding: 30px 10px;
  }
  .testimonial-header h2 {
    font-size: 20px;
  }
  .card {
    width: 95%;
    padding: 15px;
  }
  /* On very small screens → stack straight */
  .card:nth-child(odd),
  .card:nth-child(even) {
    transform: translateY(0);
    animation-delay: 0s;
  }
}
}


.gallery {
  padding: 80px 70px;
  background-color: #f8f8f8;
  text-align: center;
}

.gallery-header h2 {
  font-size: 40px;
  font-family: 'Poppins', sans-serif;
  color: #6733e2;
}

.gallery-header p {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
  font-family: 'Open Sans', sans-serif;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.gallery-item:hover img,
.gallery-item:hover video {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}


  
 .getin {
  background-color: #ffd500;
  width: 100%;
  display: flex;
  justify-content: center;
}

.touch {
  max-width: 1100px;
  width: 90%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 50px auto;
  flex-wrap: wrap; /* for smaller screens */
}

.aboutfsp, .rights {
  flex: 1 1 30%;
  min-width: 280px;
  /* background-color: #6A1B9A; */
}
.centers{
    min-width: 250px;
    /* background-color: #6A1B9A; */

}



.suggest {
  font-family: Arial, Helvetica, sans-serif;
  color: #6733e2;
  font-size: 40px;
}

.succeed {
  margin: 20px 0;
  color: #111;
  line-height: 25px;
  font-size: 16px;
  font-family: 'Open Sans', sans-serif;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.sit {
  color: #111;
  line-height: 30px;
  font-size: 18px;
  font-weight: 500;
  font-family: 'Open Sans', sans-serif;
  text-align: justify;
}
.aboutfsp {
    background: none;   /* remove the white box */
    box-shadow: none;   /* in case any shadow is creating box effect */
    padding: 20px;      /* optional: keeps spacing neat */
    border-radius: 0;   /* remove rounded box */
}

/* Center icons */
.three-link {
    display: flex;
    justify-content: left;  /* centers horizontally */
    gap: 20px;
    font-size: 20px;
    margin-top: 20px;
}

.three-link a {
    color: #6733e2;
    transition: 0.3s;
}

.three-link a:hover {
    color: #111; /* optional hover effect */
}




.callus {
  color: #6733e2;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: bold;
  margin-top: 20px;
}

.number {
  color: #111;
  line-height: 20px;
  font-size: 18px;
  margin: 10px 0;
  font-family: 'Open Sans', sans-serif;
}

ul li {
  margin-left: 20px;
  color: #111;
  line-height: 20px;
  font-size: 18px;
  font-family: 'Open Sans', sans-serif;
  margin-top: 10px;
  font-weight: 500;
  
}

form {
  display: block;
  margin-top: 20px;
  font-family: Arial, Helvetica, sans-serif;
}

input, textarea {
  width: 95%;
  padding: 12px;
  margin: 6px 0;
  border: 1px solid #ccc;
  border-radius: 8px;
}

textarea {
  height: 100px;
  resize: none;
}

.submit {
  background-color: #6733e2;
  color: #fff;
  width: 95%;
  border: none;
  border-radius: 8px;
  font-family: Arial, Helvetica, sans-serif;
  padding: 12px;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
}

.submit:hover {
  background-color: #5320c9;
}

/* Media Queries */
@media (max-width: 992px) {
  .touch {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .aboutfsp, .centers, .rights {
    width: 100%;
    max-width: 500px;
  }
  ul li{
    list-style-type: none;
  }

  .suggest {
    font-size: 32px;
  }
  .three-link{
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .suggest {
    font-size: 26px;
  }
  .succeed {
    font-size: 14px;
  }
  .sit {
    font-size: 16px;
  }
  ul li{
    list-style-type: none;
  }
  .three-link{
    justify-content: center;
  }
  
  
}













  



footer{
    background-color: #111111;
    /* height: 50vh; */

}
.lastpart{
    /* background-color: #77766c; */
    display: flex;
    justify-content: center;
    
    
   
    
}
.last{
    display: block;
    margin: 20px 0px;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
 
}


