 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', sans-serif;
            background-color: #f9f9f9;
        }

        .top-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 8px 35px;
            background-color: powderblue;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
        }

        .social-icons {
            display: flex;
            gap: 24px;
        }

        .social-icons a {
            font-size: 2rem;
            transition: transform 0.2s ease;
        }

        .social-icons a:hover {
            transform: scale(1.25);
        }

        .social-icons .instagram {
			color: #E4405F; /* Instagram pink */
		}

        .social-icons .youtube {
            color: #FF0000;
        }

        .social-icons .facebook {
            color: #1877F2;
        }

        .social-icons .twitter {
            color: #1DA1F2;
        }

        .search-container {
            display: flex;
            align-items: center;
            background-color: white;
            padding: 8px 14px;
            border-radius: 25px;
        }

        .search-container input {
            border: none;
            outline: none;
            font-size: 1rem;
            padding: 6px;
        }

        .search-container i {
            color: #333;
            font-size: 1.1rem;
            margin-left: 10px;
        }

        @media (max-width: 576px) {
        .top-bar {
            display: flex;
            flex-wrap: nowrap;
            align-items: center;
            justify-content: space-between;
            gap: 8px;
            padding: 8px 12px;
            overflow-x: auto;
        }

        .top-bar .d-flex.align-items-center.gap-2 {
            flex-shrink: 0; /* don't let icons shrink too small */
            display: flex;
            gap: 8px;
        }

        .top-bar .search-container {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-grow: 1;
            justify-content: flex-end;
        }

        .top-bar .search-container input {
            width: 100%;
            max-width: 160px;
            flex-grow: 1;
        }

        .top-bar .search-container button {
            flex-shrink: 0;
        }
    }





        /* ======= Second Header Bar ======= */
        .header-bar {
            flex-direction: column; /* stack elements vertically */
            align-items: stretch;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 60px;  /* this gives you the bigger gaps on left and right */
            width: 100%;
            flex-wrap: wrap;
            gap: 20px;
        }

.download-btn {
  max-width: 250px;   /* keeps button size reasonable */
}

        .header-left {
            flex: 0 0 auto; 
        }

        .header-left img {
            height: 80px;
            position: relative;
            top: -10px;
        }

        .header-center {
            flex: 1;
            min-width: 220px;
        }

        .header-center h1 {
            font-size: 1.4rem;
            font-weight: bold;
            color: #1e1e2f;
        }

        .header-center p {
            font-size: 1.05rem;
            color: #4da6ff;
        }

        .header-taglines {
            flex: 0 0 auto;
			font-size: 2.0rem;
            text-align: center;
            line-height: 1.4;
            margin-top: 5px;     /* ⬅ Reduces space above (towards org name block) */
            margin-right: 50px;    /* ⬅ Increases space between taglines and buttons */
        }


        .header-taglines span {
            display: block;
            font-size: 0.9rem;
            font-style: italic;
            font-weight: 500;
            color: #001a75;
        }

        @media (max-width: 576px) {
  /* Layout for logo + company name in row */
  .header-content {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    
    padding: 10px 15px;
    text-align: left;
  }

  .header-left {
    flex: 0 0 auto;
    margin-left: 0 !important;
  }

  
  .header-left img {
    max-height: 45px;
    width: auto;
    position: relative;
    top: 6px; /* Pulls logo downward (adjust value as needed) */
  }



  .header-center {
    flex: 1 1 0;
    min-width: 0;
  }

  .header-center h1 {
    font-size: 1rem;
    line-height: 1.2;
    margin-bottom: 4px;
  }

  .header-center p {
    font-size: 0.8rem;
    line-height: 1.2;
    margin: 0;
  }

  /* ⛔ Hide taglines and buttons on mobile */
  .header-taglines,
  .button-group {
    display: none !important;
  }
}
@media (max-width: 576px) {
  .mobile-line {
    display: block;
  }

  .company-name {
    font-size: 0.9rem;   /* reduced */
    line-height: 1.25;
    margin-bottom: 4px;
  }

  .company-subtext {
    font-size: 0.75rem;  /* reduced */
    line-height: 1.2;
    margin: 0;
  }

  /* Optional: tighten spacing between logo and text */
  .header-content {
    gap: 8px;
  }

  
}




        .button-group {
            flex: 0 0 auto;
            display: flex;
            flex-direction: row;
            gap: 10px;
        }

        .button-group button {
            padding: 6px 12px;
            font-size: 0.85rem;
            background-color: #1e1e2f;
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
        }

        .button-group button:hover {
            background-color: #004aad;
        }

        

        


        @media (max-width: 992px) {
  .button-group {
    justify-content: center;
  }
}


        .header-left {
                margin-left: 100px; /* Add bigger gap before logo */
        }

        .button-group {
                margin-right: 100px; /* Add bigger gap after buttons */
        }

        .navbar {
                display: flex;
                justify-content: space-between;
                align-items: center;
                background-color:#4da6ff;
                padding: 6px 170px;
                color: white;
                box-shadow: 0 2px 6px rgba(0,0,0,0.1);
                flex-wrap: wrap;
            }

            .navbar {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

#medicalCarousel {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.navbar + #medicalCarousel {
  margin-top: 0 !important;
}

        .menu {
            display: flex;
            list-style: none;
            gap: 30px;
            flex-wrap: wrap;
            margin: 0;
            padding: 0;
        }

        .menu li a {
            color: white;
            text-decoration: none;
            font-size: 1rem;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .menu li a:hover {
            color:black;
        }

        .login-btn {
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 0.9rem;
            cursor: pointer;
        }

        .login-btn i {
            font-size: 1.8rem;
            color: black;
        }

        .login-btn span {
            font-size: 0.8rem;
            margin-top: 2px;
            color: white;
        }

        .login-btn:hover span {
            color: #5C4033; /* Dark brown */
        }

        .navbar-toggler {
            border: none;
            background-color: transparent;
        }

        .navbar-toggler:focus {
            outline: none;
            box-shadow: none;
        }

        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
            width: 30px;
            height: 30px;
        }

        @media (max-width: 767.98px) {
  .mobile-login {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 250px; /* Shift slightly to the left */
    gap: 6px;
  }

  .mobile-login i {
    font-size: 1.5rem;
  }

  .mobile-login span {
    font-size: 0.9rem;
    margin-left: -15px;
  }
}







        /* Carousel */
        

        

        .carousel img {
            height: 520px;
            object-fit: cover;
        }

        .carousel-indicators [data-bs-target] {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #fff;
            border: 2px solid #34b7c7;
            opacity: 1;
        }

        .carousel-indicators .active {
            background-color: #34b7c7;
        }

        .carousel-caption {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    padding: 15px 10px;
    color: #333;
    width: 40%;
    max-width: 500px;
    font-size: 10px;
    line-height: 1.3;
}

.carousel-caption h5 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 6px;
}

.carousel-caption p {
    font-size: 18px;
    margin-bottom: 12px; /* ensures space between paragraph and button */
    line-height: 1.4;
}

.carousel-caption .btn {
    padding: 6px 15px;
    font-size: 12px;
    margin: 0 auto;        /* center the button */
    display: inline-block; 
}

        .carousel-indicators {
            position: absolute;
            bottom: 10px;
            z-index: 1;
        }

@media (max-width: 767.98px) {
  .carousel-caption {
    position: absolute;
    
    top: 20%; /* Leaves space for indicators */
    left: 50%;
    transform: translateX(-50%);
    width: 90%;  /* Makes caption wider for mobile */
    background-color: rgba(255,255,255,0.6);
    border-radius: 16px;
    padding: 5px 16px;
    text-align: center;
    z-index: 2;
  }

  .carousel-caption h5 {
    font-size: 1.5rem;
    margin-bottom: 6px;
    line-height: 1.3;
  }

  .carousel-caption p {
    font-size: 1rem;
    margin-bottom: 10px;
    line-height: 1.4;
  }

  .carousel-caption .btn {
    font-size: 0.85rem;
    padding: 7px 20px;
    display: inline-block;
    margin-top: 4px;
  }

  .carousel-indicators {
    bottom: 20px; /* Sits just under the caption */
    z-index: 1;
  }
}







        


        /* News Bar Styling */
        .news-bar {
            position: relative;
            background-color:#f9a825; /* Dark blue or any brand color */
            height: 70px;
            color: white;
            overflow: hidden;
            box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.2);
        }

        .news-label {
            background-color:whitesmoke ;
            color: #c0b12b;
            font-weight: bold;
            padding: 8px 20px;
            position: absolute;
            top: 0;
            left: 155px;           /* shifted to left with padding */
            border-bottom-right-radius: 12px;
            border-bottom-left-radius: 12px;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
        }


        .news-bar marquee {
            position: absolute;
            bottom: 10px;
            width: 100%;
            font-size: 0.9rem;
            color: white;
        }

        @media (max-width: 768px) {
        .news-bar {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
        }

        .news-bar .news-label {
            position: absolute;
            top: 0;                       /* Attach to top */
            left: 50%;
            transform: translateX(-50%);  /* Center horizontally */
            font-size: 14px;
            font-weight: bold;
            padding: 4px 8px;
            background-color: whitesmoke;    /* Optional: match newsbar bg */
        }

        .news-bar marquee {
            margin-top: 20px; /* Add space below the label */
        }
    }


        html {
            scroll-behavior: smooth;
        }

        :root {
            --header-total-height: 190px; /* adjust if needed */
        }

        .carousel,
        .carousel-item,
        .carousel-inner,
        .carousel img {
            height: calc(100vh - var(--header-total-height));
            width: 100%;
            object-fit: cover;
        }

        
        /* WBSETCL Section Styles */
        #glimpse-section {
        padding: 20px 15px;
        }

        /* Text Area */
        .glimpse-title {
        font-weight: 700;
        color: #2c3e50;
        }

        .glimpse-text {
        font-size: 1.05rem;
        color: #333;
        margin-bottom: 15px;
		text-align: justify;
        }

        .read-more-btn {
        padding: 10px 24px;
        border-radius: 25px;
        font-weight: 500;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        margin-left: 40px; /* ✅ This moves the whole button */
        margin-bottom: 16px;
        }

        .glimpse-title,
        .glimpse-text{
        padding-left: 40px; /* or 70px, adjust as you like */
        }

        @media (max-width: 767.98px) {
        .glimpse-title,
        .glimpse-text {
            text-align: justify;
            padding-left: 0;
            padding-right: 0;
        }

        .read-more-btn {
            margin-left: auto;
            margin-right: auto;
            display: block;
        }
        }




       


        /* Image Styling */
        #glimpse-section img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        }

        /* Latest News Box */
        .latest-news-box {
        background-color: #f0f8ff;
        border-radius: 10px;
        padding: 16px 20px;
        height: 450px;
        overflow: hidden;          /* ✅ hide outer scroll */
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        display: flex;
        flex-direction: column;
        }



        .news-title {
        background-color: #004aad;
        color: white;
        font-size: 1.1rem;
        font-weight: 600;
        padding: 8px 14px;
        border-radius: 6px;
        }

        /* Scrollable inner list */
        .news-list {
        list-style: none;
        padding-left: 0;
        margin: 0;
        margin-top: 10px;
        padding-right: 8px;
        overflow-y: auto;
        flex-grow: 1;
        min-height: 0;
        max-height: 100%;
        scrollbar-width: thin; /* for Firefox */
        }

        /* Optional: custom scrollbar for WebKit (Chrome, Edge) */
        .news-list::-webkit-scrollbar {
        width: 6px;
        }

        .news-list::-webkit-scrollbar-thumb {
        background-color: rgba(0, 0, 0, 0.25);
        border-radius: 6px;
        }

        .news-list::-webkit-scrollbar-track {
        background: transparent;
        }


        .news-list li {
        margin-bottom: 14px;
        font-size: 0.95rem;
        color: #333;
        }

        /* Leadership section */
        .leadership-card {
        background-color: rgba(255, 255, 255, 0.5); /* Semi-transparent white */
        border: 1px solid #ddd;
        border-radius: 50px;
        padding: 10px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
    }

.leadership-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.leadership-card img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #ccc;
}

.leadership-card h5 {
    margin-bottom: 4px;
    font-size: 1.1rem;
    color: #004085; /* WBSETCL-style blue */
}

.leadership-card p {
    margin-bottom: 8px;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #333;
}

.left-card {
  margin-left: 20px;
}

.right-card {
  margin-right: 35px;
}


.leadership-wrapper {
  border: 2px solid #ccc;
  border-radius: 50px;
  background-color:rgba(50, 0, 90, 0.6) ;;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);

  margin-left: 140px;
  margin-right: 95px;
  padding: 30px;
}








@media (max-width: 768px) {
    .leadership-card {
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
        margin: 0 auto 20px auto;
        text-align: center;
    }

    .leadership-card img {
        width: 100px;
        height: 100px;
    }

    .leadership-wrapper {
        margin: 10px;
        padding: 20px;
        border-radius: 30px;
    }

    .left-card,
    .right-card {
        margin-left: 0;
        margin-right: 0;
    }

    .leadership-card .card-body {
        text-align: center;
    }
}



.join-bar {
    background-color:#C1EDF2;
    padding: 8px 24px; /* Top/Bottom 8px, Left/Right 24px */
    border-bottom: 1px solid #ddd;
}

.join-btn {
    background-color: #0066cc;
    color: #fff;
    border: none;
    padding: 8px 18px;
    border-radius: 5px;
    font-weight: 500;
    margin-right: 100px; /* right margin as requested */
    transition: background-color 0.3s ease;
}

.join-btn:hover {
    background-color: #004d99;
}

.join-text p {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-left: 140px;
}

@media (max-width: 768px) {
  .join-bar {
    padding: 4px 12px; /* Reduce vertical padding on mobile */
  }

  .join-btn {
    padding: 4px 10px; /* Slightly smaller button */
    margin-right: 16px; /* Less right margin on small screens */
    font-size: 14px;
  }

  .join-text p {
    font-size: 14px;
    margin-left: 16px; /* Less left margin on mobile */
  }
}



/* === Achievements Section Layout === */

/* === Achievements Section Layout === */
.achievements-section {
  width: 86%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 0 10px;
  margin-bottom: 0 !important;
  padding-bottom: 1px;
  max-height: 500px;
  margin-top: 50px;
  margin-left: 150px;   /* match info-bar */
  margin-right: 90px;  /* match info-bar */
}

.container.achievements-section {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.achievements-heading {
  font-weight: bold;
  text-align: left;
  margin-left: 5px; /* adjust as needed */
}







/* === Carousel Wrapper with Pink Background === */
.carousel-pink-wrapper {
  background-color: #fde0e0;
  border-radius: 12px;
  padding: 15px 20px 20px;  /* ⬅️ reduced top & bottom padding */
  min-height: auto;         /* ⬅️ allow content to define height */
  position: relative;
  margin-bottom: 0 !important;
}


/* Carousel Inner */
.carousel-inn {
  background-color: #fde0e0;
  border-radius: 12px;
  padding: 10px 20px 50px; /* ⬅️ smaller top, more bottom padding */
  min-height: 250px;
  max-height: 400px;
  overflow: hidden;
  position: relative;
}



/* Carousel Item Layout */
.carousel-item {
  padding: 0.5rem 0;  /* less vertical space inside each item */
  margin-bottom: 50px !important;
}


/* Inner Flex Layout */
.carousel-item .d-flex {
  padding: 0 1rem;
  max-width: 100%;
  box-sizing: border-box;
}

/* Card Flex Behavior */
.col-6.col-md-4 {
  flex: 1 1 30%;
  max-width: 30%;
  min-width: 0;
}

/* Card Layout */
.achievement-card {
  width: 100%;
  max-width: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  margin-bottom: 50px;
}

.achievement-card:hover {
  transform: translateY(-8px);
}

.achievement-card .card-img-top {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.achievement-card .card-body {
  padding: 1.25rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  background-color: transparent;
}

.achievement-card .card-body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 50, 0.6);
  z-index: 0;
  border-radius: 0 0 10px 10px;
}

.achievement-card .card-text {
  margin-bottom: 0;
  font-size: 0.95em;
  line-height: 1.4;
  color: #fff;
  position: relative;
  z-index: 1;
}

/* Indicators Styling */
.carousel-indicators-custom {
  margin-top: 25rem;
  display: flex;
  justify-content: center;
  gap: 8px;
  list-style: none;
  padding-left: 0;
}

.carousel-indicators-custom [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #bbb;
  opacity: 0.5;
  border: none;
}

.carousel-indicators-custom .active {
  background-color: #007bff;
  opacity: 1;
}

@media (max-width: 767.98px) {
      

      .achievements-mobile {
        padding: 20px 10px;
        background-color: #fde0e0;
        border-radius: 12px;
      }

      .achievements-heading {
        font-weight: bold;
        text-align: center;
        margin-bottom: 20px;
      }

      .achievement-card {
        margin: 0 auto;
        max-width: 90%;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        border-radius: 10px;
        overflow: hidden;
      }

      .achievement-card img {
        height: 160px;
        object-fit: cover;
      }

      .carousel-control-prev-icon,
      .carousel-control-next-icon {
        background-color: #333;
        border-radius: 50%;
        padding: 10px;
      }

      .carousel-item {
  min-height: 300px;
  position: relative;
}

.achievement-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}


      

    }







  .info-bar {
    background: url('images/info-bar.JPG') no-repeat center center/cover;
    border-radius: 10px;
    margin: 0 120px; /* Left and right margin */
    min-height: 200px;
    display: flex;
    align-items: center;      /* ✅ Vertical center */
    justify-content: center;  /* ✅ Horizontal center */
    text-align: center;
    margin-left: 150px;
    margin-right: 110px;
  }

  .info-bar {
  margin-top: 0 !important; /* ⬅️ No extra space at top */
   /* Optional, if spacing needed */
}


  .info-bar h3 {
    font-weight: bold;
    margin-bottom: 0.25rem;
    color:white;
    font-size: 2rem;
  }

  .info-bar p {
    margin-bottom: 0;
    font-weight: 600;
    color: white;
    font-size: 1.1rem;
  }

  .info-bar .row {
    margin-left: -60px; /* Adjust value as needed */
}


  .info-bar {
    margin-top: 0 !important;
  }

  .carousel-inner {
    margin-bottom: 0 !important;
  }

  @media (max-width: 768px) {
  .info-bar {
    margin: 0 10px;
    padding: 20px 10px;
    border-radius: 8px;
    
  }

  .info-bar .row {
    flex-direction: column;
    margin-left: 0 !important; /* Only override on mobile */
    gap: 20px;
  }

  .info-bar .col-md-2,
  .info-bar .offset-md-1 {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    border: none !important;
  }

  .info-bar h3 {
    font-size: 1.5rem;
  }

  .info-bar p {
    font-size: 1rem;
  }
}


  .image-grid {
    background-color: #f9f9f9; /* Optional background */
    padding: 40px 0;
    display: flex;
    justify-content: center;
}

.image-grid .container {
    max-width: 1180px;
    width: 100%;
    background-color: white;         /* Visible box background */
    border: 2px solid #ccc;          /* Light gray border */
    border-radius: 16px;             /* Rounded corners */
    padding: 50px;                   /* Internal spacing */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Soft shadow */
    margin-left: 5px;
    margin-right: 5px
}


.image-grid .row {
    gap: 24px 0; /* Vertical spacing between rows */
}

.image-grid .img-container {
    overflow: hidden;
    border-radius: 12px;
    height: 220px;
}

.image-grid .img-container img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    display: block;
    transition: transform 0.3s ease;
}

.image-grid .img-container img:hover {
    transform: scale(1.05);
}

.gallery-heading {
    
    font-size: 32px;
    font-weight: 700;
    color: #333;
}
.gallery-title-wrapper {
    padding-left: 150px;
    margin-top: 80px;
    margin-bottom: 0px;
}

.gallery-wrapper {
  padding-left: 120px;
  padding-right: 120px;
}

.arrow-link-wrapper {
  margin-right: 60px; /* align with container edge */
  margin-top: -80px;   /* pull up closer to gallery */
}

.arrow-link {
  font-size: 28px;
  font-weight: bold;
  color: #007bff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.arrow-link:hover {
  color: #0056b3;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .gallery-wrapper {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .image-grid .container {
    padding: 20px;
    margin-left: 0;
    margin-right: 0;
  }

  .image-grid .row {
    flex-direction: column;
    gap: 16px 0;
  }

  .image-grid .col-md-4 {
    width: 100%;
  }

  .image-grid .img-container {
    height: auto; /* Let image height adapt naturally */
  }

  .image-grid .img-container img {
    height: auto;
    max-height: 300px; /* Optional cap */
    border-radius: 12px;
  }

  .arrow-link-wrapper {
    margin-top: 20px;
    margin-right: 20px;
    text-align: right;
  }

  .gallery-title-wrapper {
    padding-left: 130px;
  }
}
