* {
    margin: 0px;
    padding: 0px;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
}
.container-fluid{
    padding: 0px !important;
}

.heading {
    background-color: rgba(63, 111, 167, 1);
    color: #fff;
    font-size: 24px;
    font-weight: 600;
}

h2 {
    background-color: rgba(63, 111, 167, 1);
    color: #fff !important;
    font-size: 32px;
    font-weight: 600;
    border-radius: 10px;
    padding: 10px 20px;
    text-align: start;
}

p {
    font-size: 16px;
    /* text size */
    line-height: 1.6;
    /* spacing between lines */
    color: #444;
    /* dark grey text */
    margin-bottom: 1rem;
    /* space after each paragraph */
    text-align: start;
}

/* Top Bar */
.top-bar {
    background: #002b5c;
    color: #fff;
    font-size: 14px;
}

.top-bar a {
    color: #ffd54f;
    text-decoration: none;
}

/* Navbar */
.navbar {
    background: linear-gradient(90deg, #003366, #005599);
}

.logo-text {
    font-size: 24px;
    color: #00086B;
    font-family: "Times New Roman", Times, serif;
    font-weight: bold;
}

.navbar-brand {
    font-weight: bold;
    color: white !important;
}

.navbar-nav .nav-link {
    color: #fff !important;
    font-weight: 500;
    padding: 10px 15px;
    transition: 0.3s;
}

.navbar-nav .nav-link:hover {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 6px;
}

.navbar-nav .nav-link {
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s;
}

.navbar-nav .nav-link:hover {
    background: #033364ff;
    border-radius: 4px;
    color: #fff !important;
}

/* Dropdown */
.navbar .dropdown-menu {
    border: none;
    border-radius: 0;
    background: #ffffff;
    padding: 0.5rem 0;
}

.navbar .dropdown-menu .dropdown-item {
    font-size: 15px;
    padding: 10px 20px;
    transition: 0.2s;
}

.navbar .dropdown-menu .dropdown-item:hover {
    background: #f1f1f1;
    color: #003366;
}

/* Hover open dropdowns (desktop) */
@media (min-width: 992px) {
    .navbar .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

/* Footer */
.footer {
    background: #002b5c;
    color: #e0e0e0;
    padding: 50px 20px;
}

.footer h5 {
    color: #fff;
    margin-bottom: 20px;
}

.footer p {
    margin: 0 0 10px;
    color: #fff;
}


.footer a {
    color: #80cbc4;
    text-decoration: none;
    transition: 0.3s;
}

.footer a:hover {
    color: #fff;
    text-decoration: underline;
}

.social-icons a {
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    border-radius: 50%;
    background: #005599;
    color: white;
    text-align: center;
    margin-right: 10px;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #ffd54f;
    color: #003366;
}


.logo-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.logo-track {
    display: flex;
    width: calc(250px * 12);
    /* Adjust: logo width * number of logos * 2 */
    animation: scroll 25s linear infinite;
}

.logo-item {
    flex: 0 0 250px;
    /* width per logo */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
}

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

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

    /* half because we duplicated logos */
}


/* Core member page style */
.council-table thead th {
    background-color: rgba(63, 111, 167, 1);
    /* Dark green header */
    color: white;
    text-align: center;
    vertical-align: middle;
}

.council-table tbody tr:nth-child(odd) {
    background-color: #ffffff;
    /* White */
}

.council-table tbody tr:nth-child(even) {
    background-color: #f3f7f3;
    /* Light greenish gray */
}

.council-table td,
.council-table th {
    padding: 12px;
    font-size: 15px;
}

.council-table a {
    color: rgba(63, 111, 167, 1);
    font-weight: 500;
    text-decoration: none;
}

.council-table a:hover {
    text-decoration: underline;
}


/* Event Page Style */
.gallery-title-box {
    background: #447944;
    color: white;
    border-radius: 8px;
    padding: 16px 0;
    margin: 32px 0 24px;
    text-align: center;
    font-weight: bold;
    font-size: 2rem;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.image-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.08);
    padding: 16px;
    border: 1px solid #e4e4e4;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    cursor: pointer;
    /* Add cursor pointer to indicate it's clickable */
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.image-card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.image-wrapper {
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.gallery-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-card:hover .gallery-image {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .gallery-title-box {
        font-size: 1.3rem;
    }

    .image-card {
        padding: 12px;
    }

    .gallery-table td {
        display: block;
        width: 100%;
        padding-left: 0;
        padding-right: 0;
        margin-bottom: 20px;
    }
}

.gallery {
    background: #fff;
    border: 1px solid #dee2e6;
    /* Softer border color */
    border-radius: 8px;
}

/* Modal Customizations */
.modal-content {
    border-radius: 8px;
    border: none;
}

.modal-header {
    border-bottom: 1px solid #eee;
}


.hero-parallax {
    background-attachment: fixed;
    background-size: cover;
    position: relative;
}

.hover-scale {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-scale:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.hover-zoom img {
    transition: transform 0.5s ease;
}

.hover-zoom img:hover {
    transform: scale(1.1);
}

.timeline {
    position: relative;
    margin: 50px 0;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background: #003366;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

.timeline-item {
    padding: 20px 40px;
    position: relative;
    width: 50%;
}

.timeline-item.left {
    left: 0;
}

.timeline-item.right {
    left: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background: #fff;
    border: 4px solid #003366;
    top: 20px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-item.right::after {
    left: -10px;
}

.timeline-content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    position: relative;
}

@media (max-width:768px) {
    .timeline::after {
        left: 8px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 30px;
        padding-right: 15px;
        margin-bottom: 30px;
    }

    .timeline-item.right {
        left: 0%;
    }

    .timeline-item.left::after,
    .timeline-item.right::after {
        left: -10px;
    }
}



.glow-text {
    text-shadow: 0 0 10px rgba(0, 255, 180, 0.8),
        0 0 20px rgba(0, 255, 180, 0.6),
        0 0 40px rgba(0, 255, 180, 0.5);
    animation: glowPulse 2s infinite alternate;
}

@keyframes glowPulse {
    from {
        text-shadow: 0 0 10px rgba(0, 255, 180, 0.6);
    }

    to {
        text-shadow: 0 0 20px rgba(0, 255, 180, 1);
    }
}


form input,
form textarea {
    transition: all 0.3s ease;
}

form input:focus,
form textarea:focus {
    border-color: #28a745;
    box-shadow: 0 0 8px rgba(40, 167, 69, 0.3);
}



.hover-scale {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-scale:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}



/* banner-text-container start =========================================== */
.banner-text-container {
    text-align: center;
    position: absolute;
    top: 35%;
    left: 16%;



}

.banner-heading {
    font-weight: 700;
    font-size: 50px;
    color: white;
    padding: 20px !important;
}

.banner-other-heading {
    font-weight: 700;
    font-size: 50px;
    color: white;
    margin-bottom: 180px;
}

.banner-button {
    padding: 0px;
    width: 250px;
    border: 0px transparent;
    border-radius: 110px;
    background: white;
    color: rgb(61, 90, 16);
    font-weight: 700;
    font-size: 30px;
    margin-top: 65px;
    font-family: Arial, Helvetica, sans-serif;
    box-shadow: 2px 3px 5px black;
}

.banner-button a {
    text-decoration: none;
    color: rgb(61, 90, 16);
}

/* banner-text-container start =========================================== */



#pointer {
    color: white;
    font-size: large;
    margin-left: 30px;
    margin-top: 30px;
    line-height: 40px;
    text-align: center;
    width: 115px;
    height: 40px;
    position: relative;
    background: rgb(97, 146, 23);
}

#pointer:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 0;
    border-left: 20px solid rgb(97, 146, 23);
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
}

#pointer:before {
    content: "";
    position: absolute;
    right: -20px;
    bottom: 0;
    width: 0;
    height: 0;
    border-left: 20px solid rgb(97, 146, 23);
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
}


#formulation-pointer {
    color: white;
    font-size: large;
    margin-left: 20px;
    margin-top: 30px;
    line-height: 40px;
    text-align: right;
    width: 117px;
    height: 40px;
    position: relative;
    background: rgb(97, 146, 23);
}

#formulation-pointer:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 0;
    border-left: 20px solid white;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
}

#formulation-pointer:before {
    content: "";
    position: absolute;
    right: -20px;
    bottom: 0;
    width: 0;
    height: 0;
    border-left: 20px solid rgb(97, 146, 23);
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
}







/* classification page start =========================================== */

.classification-container {
    text-align: center;
    margin-top: 50px !important;
    margin-bottom: 0px !important;
    height: 700px !important;
    background: none !important;

}

.classification-container h1 {
    margin-bottom: 50px;
}

.sub-sub-classification-container {
    color: white;
    line-height: 160px;
    text-align: center;
    border-radius: 10px;
    /* background:rgb(97, 146, 23) ; */
    font-size: xx-large;
    font-weight: 700;
    text-decoration: none;
}

.sub-classification-container {

    margin-top: 50px;
    display: grid;
    justify-content: center;
    grid-gap: 60px;
    height: fit-content !important;
    grid-template-columns: 200px 200px 200px 200px;
    grid-template-rows: 160px 160px 160px 160px;
}

.classification-container .sub-classification-container .sub-sub-classification-container a {
    text-decoration: none;
    color: white;
}

.classification-banner-text-container {
    text-align: center;
    position: absolute;
    bottom: 47%;
    left: 14%;
}

.araq-box-container input {
    padding: 8px;
    width: 300px;
    border: 1px solid rgb(97, 146, 23);
    border-right: 0px;
    background: transparent;
    box-shadow: 2px 3px 5px rgb(97, 146, 23);

}

.ser-btn {
    padding: 12px;
    width: 100px;
    background: rgb(172, 218, 99);
    border-left: 0px;
    border: 1px solid rgb(97, 146, 23);
    color: white;
    box-shadow: 2px 3px 5px rgb(97, 146, 23);
}




/* @media screen and (max-width: 940px){
    #phone-nav {
        display:block;
    }
    .nav-container{
        display: none !important;
    }
 }


@media screen and (max-width:1000px){
    .sub-classification-container{
        grid-template-columns: 200px 200px 200px ;
  grid-template-rows: 160px 160px 160px ;
    }

    .classification-container{
        height: 700px;
    }
    
 }




 @media screen and (max-width:730px){
    .sub-classification-container{
        grid-template-columns: 200px 200px  ;
  grid-template-rows: 160px 160px  ;
    }

    .classification-container{
        height: 950px;
    }
    
 }

 @media screen and (max-width:470px){
    .sub-classification-container{
        grid-template-columns: 200px   ;
  grid-template-rows: 160px  ;
    }

    .classification-container{
        height: 1900px;
    }
    
 } */

/* classification page end =========================================== */







/* Araq page start =========================================== */
.araq-box-container {
    text-align: center;
    margin-top: 50px !important;
    margin-bottom: 0px !important;
    /*height:600px !important;*/
    background: none !important;
}

.Araq-banner-text-container {
    position: absolute;
    top: 40%;
    left: 45%;
}

.sub-Araq-container {
    /* height: fit-content;*/

    margin-top: 50px;
    display: grid;
    justify-content: center;
    grid-gap: 60px;
    grid-template-columns: 200px 200px 200px 200px;
    grid-template-rows: 160px 160px 160px 160px;
}

.sub-sub-Araq-container {
    background-image: url('web/images/Box_BG.png');
    color: red;
    line-height: 160px;
    text-align: center;
    border-radius: 10px;
    /*background:rgb(97, 146, 23) ;*/
    font-size: x-large;
    font-weight: 700;
}

.araq-box-container div div a {
    text-decoration: none;
    color: white;
}


#pointer {
    color: white;
    font-size: large;
    margin-left: 30px;
    margin-top: 30px;

    line-height: 40px;
    text-align: center;
    width: 110px;
    height: 40px;
    position: relative;
    background: rgb(97, 146, 23);
}

#pointer:after {
    content: "";
    position: absolute;

    left: 0;
    bottom: 0;
    width: 0;
    height: 0;
    border-left: 20px solid rgb(97, 146, 23);
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
}

#pointer:before {
    content: "";
    position: absolute;
    right: -20px;
    bottom: 0;
    width: 0;
    height: 0;
    border-left: 20px solid rgb(97, 146, 23);
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
}


#formulation-pointer {
    color: white;
    font-size: large;
    margin-left: 20px;
    margin-top: 30px;
    line-height: 40px;
    text-align: right;
    width: 117px;
    height: 40px;
    position: relative;
    background: rgb(97, 146, 23);
}

#formulation-pointer:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 0;
    border-left: 20px solid white;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
}

#formulation-pointer:before {
    content: "";
    position: absolute;
    right: -25px;
    bottom: 0;
    width: 0;
    height: 0;
    border-left: 20px solid rgb(97, 146, 23);
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
}


#araq-pointer {
    color: white;
    font-size: large;
    margin-left: 20px;
    margin-top: 30px;
    line-height: 40px;
    text-align: center;
    width: 117px;
    height: 40px;
    position: relative;
    background: rgb(97, 146, 23);
}

#araq-pointer:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 0;
    border-left: 20px solid white;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
}

#araq-pointer:before {
    content: "";
    position: absolute;
    right: -20px;
    bottom: 0;
    width: 0;
    height: 0;
    border-left: 20px solid rgb(97, 146, 23);
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
}

.classification-container {
    text-align: center;
    margin-top: 50px;
    height: 600px;
    background: rgb(245, 240, 240);
}


/* @media screen and (max-width:1000px){
    .sub-Araq-container{
        grid-template-columns: 200px 200px 200px ;
  grid-template-rows: 160px 160px 160px ;
    }

    
    
 }




 @media screen and (max-width:730px){
    .sub-Araq-container{
        grid-template-columns: 200px 200px  ;
  grid-template-rows: 160px 160px  ;
    }

   
 }

 @media screen and (max-width:470px){
    .sub-Araq-container{
        grid-template-columns: 200px   ;
  grid-template-rows: 160px  ;
      }  } */




/* Araq page end =========================================== */









/* start mjoon e fasla page css */

.Majoon-container1 {
    text-align: center;
    margin-top: 50px;
}

.Majoon-container1 span {
    font-weight: 800;
    font-size: x-large;
    color: rgb(97, 146, 23)
}

.Majoon-container1 p {
    font-size: large;
    color: rgb(97, 146, 23);
    font-weight: 600;
    margin-top: 20px;

}

.Majoon-container2 {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 25px;
}

.Majoon-container2 div {
    background: rgb(97, 146, 23);
    color: white;

    height: auto !important;

    font-size: large;
    font-weight: 700;
    margin-left: 95px;
    margin-right: 40px;
    padding-left: 5px;
    width: 400px;
    line-height: 40px;
    margin-bottom: 10px;
    text-align: left;
}

.Majoon-container2 table {

    width: 80%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    border: 2px solid rgb(97, 146, 23);

}

.Majoon-container2 table tbody tr td {
    border: 2px solid rgb(97, 146, 23);
    color: rgb(97, 146, 23);
    font-weight: 600;
}

.Majoon-container2 table tbody tr {
    border: 2px solid rgb(97, 146, 23);
}

.Majoon-container3 {
    text-align: center;
    margin-top: 50px;

}

.Majoon-container4 p {
    text-align: justify !important;
    /*text-align:center !important;*/
    margin-left: 90px;
    margin-right: 90px;
}

.Majoon-container3 div {
    background: rgb(97, 146, 23);
    color: white;
    width: 400px;
    height: 40px;
    border-radius: 100px;
    font-size: x-large;
    font-weight: 700;
    margin-left: auto;
    margin-right: auto;
    line-height: 40px;
    margin-bottom: 10px;
    box-shadow: 2px 3px 5px rgb(169, 168, 168);
}
}

.Majoon-container3 ul {
    display: inline-block;
    text-align: left;
    font-size: large;

    color: rgb(97, 146, 23);

}



.Majoon-container4 {
    margin-top: 0px !important;
    text-align: center;
    background: rgb(252, 249, 249);
    padding: 5px;
}

.Majoon-container4 div {

    background: rgb(97, 146, 23) !important;
    color: white !important;

    height: auto !important;

    font-size: large;
    font-weight: 700;
    margin-left: 90px;
    padding-left: 5px;
    width: 400px;

    line-height: 40px;
    /* margin-bottom: 10px;*/
    text-align: left;
}

.Majoon-container4 p {
    font-size: large;
}

.Majoon-container4 h3 {
    font-weight: 700;
}

.Majoon-container4 table {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.Majoon-container4 table tbody tr {
    border: 2px solid rgb(97, 146, 23);
}

.Majoon-container4 table tbody tr td {
    border: 2px solid rgb(97, 146, 23);
    color: rgb(97, 146, 23);
}

.Majoon-container5 {
    text-align: center;
}

.Majoon-container5 ul {
    text-align: left;
    display: inline-block;
    font-size: large;
}

.Majoon-container5 ul li span {
    font-size: x-large;
    font-weight: 700;
    color: rgb(97, 146, 23);


}

.Majoon-container5 ul li {
    color: rgb(97, 146, 23);
}

.majoon-banner-text-container {
    text-align: center;
    position: absolute;
    bottom: 42%;
    left: 31%;
}

.Majoon-container2 table tr td {
    vertical-align: middle;
}


.banner-heading-majoon {
    font-size: 50px;
    font-weight: 700;
    color: white;
}

.Majoon-container2 table {
    height: auto;
    margin-top: 0px !important;
    width: 1150px !important;
}

.Majoon-container2 table tr td {
    height: fit-container !important;
}

.Majoon-container2 table tr {
    height: fit-container !important;
}

/* end mjoon e fasla css */








.mypr {
    height: 90px;
}

#phone-nav {
    display: none;
    position: static;
}


/* @media screen and (max-width: 940px){
    #phone-nav {
        display:block;
    }
    #nav-container{
        display: none !important;
    }
 }


 @media screen and (max-width:1100px){
    .banner-text-container{
        left: 15% !important;
    }
 }

 @media screen and (max-width:950px){
    .banner-text-container{
        left: 10% !important;
    }
    .pointers{
        font-size: 10px !important;
    }

    .content-container p{
        margin: 0px;
    }
 }

 @media screen and (max-width:450px){
    .banner-heading{
        font-size: 30px !important;
    }
    
 }

 @media screen and (max-width:775px){
    .sub-sub-utgApp-container img{
        width: 300px;
    }
    .utgApp-container h1{
         font-size: 50px;
    }
    
 }

 @media screen and (max-width:580px){
    .sub-utgApp-container {
        display: inline;
    }
    .utgApp-container h1{
         font-size: 40px;
    }
    
 }

 @media screen and (max-width:870px){
    .sub-footer-images-container img {
        width: 100px;
    }
    
 }

 @media screen and (max-width:670px){
    .sub-footer-images-container img {
        width: 70px;
    }
    
 }

 @media screen and (max-width:480px){
    .sub-footer-images-container img {
        width: 50px;
    }
    
 }

 @media screen and (max-width:350px){
    .sub-footer-images-container img {
        width: 40px;
    }
    
 }


 /* top-header
 @media screen and (max-width:1190px){
    #top-header{
        gap:650;
    }
    
 }


 @media screen and (max-width:1080px){
    #top-header{
        justify-content:center;
        gap:500 !important;
    
        height: 40px;
    }
    
 }

 /* footer 

 @media screen and (max-width:890px){
    .footer-container{
        display: inline-block;
    }
    
 }


  */







/*custom font*/



.breadcrumb {
    margin-top: 20px;
    margin-left: 20px;
    font: .75em sans-serif;
    list-style: none;
}

.breadcrumb.bc2x {
    font-size: 1em;
}

.breadcrumb.bc3x {
    font-size: 1.25em;
}

.breadcrumb p {
    margin: 0;
}

.breadcrumb li {
    display: inline-block;
    margin-bottom: .2em;
}

.breadcrumb li a {
    background-color: rgb(97, 146, 23);
    ;
    box-sizing: border-box;
    color: #fff;
    display: block;
    max-height: 2em;
    padding: .5em 1em .5em 1.5em;
    position: relative;
    text-decoration: none;
    transition: .25s;
}

.breadcrumb li a:before {
    border-top: 1em solid transparent;
    border-bottom: 1em solid transparent;
    border-left: 1em solid #fff;
    content: "";
    position: absolute;
    top: 0;
    right: -1.25em;
    z-index: 1;
}

.breadcrumb li a:after {
    border-top: 1em solid transparent;
    border-bottom: 1em solid transparent;
    border-left: 1em solid rgb(97, 146, 23);
    content: "";
    position: absolute;
    top: 0;
    right: -1em;
    transition: .25s;
    z-index: 1;
}

.breadcrumb li a:hover {
    background-color: rgb(131, 196, 33);
    ;
}

.breadcrumb li a:hover:after {
    border-left-color: rgb(131, 196, 33);
    ;
}

.breadcrumb li:last-child a {
    background-color: rgb(131, 196, 33);
    ;
    pointer-events: none;
}

.breadcrumb li:last-child a:after {
    border-left-color: rgb(131, 196, 33);
}




/* about page  */

.about-container {
    text-align: center;
    font-size: 20px;

}

.sub-about-container {
    margin-right: 130px;
    margin-left: 130px;
    text-align: justify;

}

/* about page  */

.about-container {
    margin-top: 50px;

    text-align: center;
    font-size: 20px;

}

.sub-about-container {
    margin-right: 130px;
    margin-left: 130px;
    text-align: justify;

}

@media screen and (max-width:800px) {
    .sub-about-container {
        margin-right: 50px;
        margin-left: 50px;
    }
}

@media screen and (max-width:430px) {
    .sub-about-container {
        margin-right: 15px;
        margin-left: 15px;
    }
}



/* contact page  */
.contact-container {
    margin-top: 50px;
    text-align: center;
    font-size: 20px;
    font-family: railway;

}

.contact-container h1 {
    font-family: railway;
    font-weight: 600;

}

.footer-container div span a {
    text-decoration: none;
    color: white !important;

}


/*feedback*/
.myalert {
    background: rgb(97, 146, 23);
    color: white;
}