* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

:root {
    --main-color: #2196F3;
    --main-color-alt: #1787e0;
    --main-duration: 0.5s;
    --main-padding-top: 100px;
    --main-padding-bottom: 100px;
    --section-background: #ececec;
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
}

body {
    font-family: 'Cairo', sans-serif;
    background-color: white;
}

.dark-mode {
    background-color: #191919;
    color: white;
}

.dark-mode-card {
    background-color: #191919;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.container {
    padding-left: 15px;
    padding-right: 15px;
    margin-right: auto;
    margin-left: auto;
}

/* Small */
@media (min-width:768px) {
    .container {
        width: 750px;
    }
}

/* Medium */
@media (min-width:992px) {
    .container {
        width: 970px;
    }
}

/* Larger */
@media (min-width:1200px) {
    .container {
        width: 1170px
    }
}

/* Start Header */
.header {
    background-color: white;
    position: relative;
    -webkit-box-shadow: 0 0 10px #ddd;
    -moz-box-shadow: 0 0 10px #ddd;
    box-shadow: 0 0 10px #ddd;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    height: 126px;
}

.header .logo {
    font-size: 26px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 118px;
    width: 155px;
}

.logo {
    font-size: 26px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 118px;
    width: 155px;
}

.header .main-nav {
    display: flex;
}

@media (max-width:768px) {
    .header .main-nav {
        margin: auto;
    }
}

.header .main-nav>li>a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px;
    position: relative;
    padding: 0 30px;
    overflow: hidden;
    transform: var(--main-duration);
}

@media (max-width:768px) {
    .header .main-nav>li>a {
        padding: 10px;
        font-size: 14px;
        height: 40px;
    }
}

.header .main-nav>li>a::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    background-color: var(--main-color);
    top: 0;
    left: -100%;
    transition: var(--main-duration);
}

.header .main-nav>li>a:hover {
    color: var(--main-color);
    background-color: #fafafa;
}

.header .main-nav>li>a:hover::before {
    left: 0;
}

/* End Header */
/* Start landing */

.landing::before {
    content: "";
    position: absolute;
    left: 0;
    top: -40px;
    width: 100%;
    height: 100%;
    background-color: #ececec;
    z-index: -1;
    transform: skewY(-6deg);
    transform-origin: top left;
}

.landing .container {
    min-height: calc(100vh - 72px);
    display: flex;
    align-items: center;
    padding-bottom: 120px;
}

.landing .image img {
    width: 600px;
    max-width: 100%;
}

.landing .go-down {
    color: var(--main-color);
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.landing .text {
    flex: 1;
}

.landing .text h1 {
    font-size: 40px;
    margin: 0;
    letter-spacing: -2px;
}

.landing .text p {
    font-size: 23px;
    margin: 5px 0 0;
    line-height: 1.7;
    color: #666;
    max-width: 500px;
}

.landing .go-down i {
    animation: bouncing 1.5s infinite;
}

@keyframes bouncing {

    0%,
    10%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40%,
    60% {
        transform: translateY(-15px);
    }
}

@media (max-width:991px) {
    .landing .image img {
        display: none;
    }
}

@media (max-width:991px) {
    .landing .text p {
        margin: 10px auto;
    }
}

@media (max-width:991px) {
    .landing .text {
        text-align: center;
    }
}

@media (max-width:767px) {
    .landing .text h1 {
        font-size: 28px;
    }
}



/* End landing */
/* Start Mega */
.header .mega-menu {
    position: absolute;
    width: 100%;
    left: 0;
    padding: 30px;
    background-color: white;
    margin-bottom: 3px solid var(--main-color);
    z-index: 100;
    display: flex;
    gap: 40px;
    top: calc(95% + 50px);
    opacity: 0;
    z-index: -1;
    transition: top var(--main-duration), opacity var(--main-duration);
}

.header .mega-menu .image img {
    max-width: 100%;
}

.header .mega-menu .links li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background-color: #FAFAFA;
    z-index: -1;
    transition: var(--main-duration);
}

.header .mega-menu .links {
    min-width: 250px;
    flex: 1;
}

.header .mega-menu .links li:hover::before {
    width: 100%;
}

.header .mega-menu .links li:not(:last-child) {
    border-bottom: 1px solid #e6e9e9;
}

.header .mega-menu .links li {
    position: relative;
}

.header .mega-menu .links li a {
    color: var(--main-color);
    padding: 15px;
    display: block;
    font-size: 18px;
    font-weight: bold;
}

.header .mega-menu .links li a i {
    margin-right: 10px;
    margin-left: 6px;
}

@media (max-width:991px) {
    .header .mega-menu .image {
        display: none;
    }
}

@media (max-width:767px) {
    .header .mega-menu {
        flex-direction: column;
        gap: 0;
        padding: 5px;
    }
}

@media (max-width:767px) {
    .header .mega-menu .links:first-of-type li:last-child {
        border-bottom: 1px solid #e9e6e6;
    }
}

.header .main-nav>li:hover .mega-menu {
    opacity: 1;
    z-index: 100;
    top: 100%;
}

/* End Mega */
/* Start Main Title */
.main-title {
    margin: 0 auto 80px;
    border: 2px solid black;
    padding: 10px 20px;
    font-size: 30px;
    width: fit-content;
    position: relative;
    z-index: 1;
    transition: var(--main-duration);
}

.main-title::after,
.main-title::before {
    content: "";
    width: 12px;
    height: 12px;
    background-color: var(--main-color);
    position: absolute;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.main-title::before {
    left: -30px;
}

.main-title::after {
    right: -30px;
}

.main-title:hover::before {
    z-index: -1;
    animation: left-move 0.5s linear forwards;
}

.main-title:hover::after {
    z-index: -1;
    animation: right-move 0.5s linear forwards;
}

@keyframes right-move {
    50% {
        right: 0;
        width: 12px;
        height: 12px;
    }

    100% {
        right: 0;
        border-radius: 0;
        width: 50%;
        height: 100%;
    }
}

@keyframes left-move {
    50% {
        left: 0;
        width: 12px;
        height: 12px;
    }

    100% {
        left: 0;
        border-radius: 0;
        width: 50%;
        height: 100%;
    }
}

.main-title:hover {
    color: white;
    border: 2px solid white;
    transition-delay: 0.5s;
}

/* End Main Title */

/* Start Submissions */
.submissions-section {
    padding-top: var(--main-padding-top);
    padding-bottom: var(--main-padding-bottom);
    position: relative;
}

.submissions-section .container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
    gap: 40px;
}

.submissions-section .box {
    box-shadow: 0 2px 15px rgb(0 0 0 / 10%);
    border-radius: 6px;
    overflow: hidden;
    transition: transform var(--main-duration), box-shadow var(--main-duration);
}

.submissions-section .box img {
    width: 100%;
    max-width: 100%;

}

.submissions-section .box .content {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;

}

.submissions-section .box .info a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 30px;
    color: var(--main-color);
    font-weight: bold;
}

.submissions-section .box .info i {
    color: var(--main-color);
    padding-left: 3px;
}

.submissions-section .box .content p:not(:last-of-type) {
    margin: 10px 0 0;
    line-height: 1.5;
    color: #777;
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #cfcfcf;
}

.submissions-section .box h3 {
    margin: 0;
    text-align: center;
    padding-bottom: 25px;
    padding-top: 25px;
}

.submissions-section .box:hover .info i {
    animation: moving-arrow 0.6s linear infinite;
}

@keyframes moving-arrow {
    100% {
        transform: translateX(10px);
    }
}

.submissions-section .box:hover {
    transform: translateY(-10px);
    box-shadow: 0 2px 15px rgb(0 0 0 / 20%);
}

/* End Submissions */
/* Start Contact Section */

.contact-section {
    padding-top: var(--main-padding-top);
    padding-bottom: var(--main-padding-bottom);
    position: relative;
    background-color: var(--section-background);
}

  
.contact-section .container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
}

.contact-section .box {
    box-shadow: 0 2px 15px rgb(0 0 0 / 10%);
    border-radius: 6px;
    overflow: hidden;
    transition: transform var(--main-duration), box-shadow var(--main-duration);
}

.contact-section .box:hover {
    transform: translateY(-10px);
    box-shadow: 0 2px 15px rgb(0 0 0 / 20%);
}

.grid {
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding-bottom: var(--main-padding-bottom);
}

.contact-section h3 {
    font-weight: 600;
    text-align: center;
}

.contact-section .container img {
    width: 100%;
    height: 287px;
}

.btn-contact {
    margin-right: auto !important;
    margin-left: auto !important;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 171px;
    height: 68px;
    border: 3px solid var(--main-color);
    border-radius: 6px;
    transition: all 0.3s;
    cursor: pointer;
    background: white;
    font-size: 1.2em;
    font-weight: 550;
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
}

a {
    color: inherit;
}

.btn-contact:hover {
    color: white;
    background: var(--main-color);
    font-size: 1.5em;
}

.contact-section .box .info i {
    color: var(--main-color);
    padding-left: 3px;
}

.contact-section .box .info i {
    color: var(--main-color);
    padding-left: 3px;
}

.contact-section .box .content p {
    margin: 10px 0 0;
    line-height: 1.5;
    color: #777;
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #cfcfcf;
}

.contact-section .box .content {
    padding: 20px;
}

.contact-section .box .info a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 30px;
    color: var(--main-color);
    font-weight: bold;
}

/* End Contact Section */
/* Start Channel */
.channel-section {
    padding-top: var(--main-padding-top);
    padding-bottom: var(--main-padding-bottom);
    position: relative;
}

.channel-section .container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
}

.channel-section .box {
    box-shadow: 0 2px 15px rgb(0 0 0 / 10%);
    border-radius: 6px;
    overflow: hidden;
    transition: transform var(--main-duration), box-shadow var(--main-duration);
}

.channel-section .box:hover {
    transform: translateY(-10px);
    box-shadow: 0 2px 15px rgb(0 0 0 / 20%);
}

.channel-section h3 {
    font-weight: 600;
    text-align: center;
}

.channel-section .container img {
    width: 100%;
    height: auto;
}

.channel-section .box .info i {
    color: var(--main-color);
    padding-left: 3px;
    padding-right: 3px;
}

.channel-section .box .info i {
    color: var(--main-color);
    padding-left: 3px;
}

.channel-section .box .content p {
    margin: 10px 0 0;
    line-height: 1.5;
    color: #777;
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #cfcfcf;
}

.channel-section .box .content {
    padding: 20px;
}

.channel-section .box .info a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 30px;
    color: var(--main-color);
    font-weight: bold;
}

.channel-section .box .icons {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 46px;
}

.instagram {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
}

/* Start Footer */
.footer {
    background-color: #191919;
    padding: 70px 0 0;
}

.footer .container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 40px;
}

.footer .box h3 {
    color: white;
    font-size: 50px;
    margin: 0 0 20px;
}

.footer .box .social {
    display: flex;
}

.footer .box .social li {
    margin-right: 10px;
}

.footer .box .social li a {
    background-color: #313131;
    color: #B9b9b9;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    font-size: 20px;
    transition: var(--main-duration);
}

.footer .box .social .facebook:hover {
    background-color: #1877f2;
}

.footer .box .social .telegram:hover {
    background-color: #1da1f2;
}

.footer .box .social .youtube:hover {
    background-color: #ff0000;
}

.footer .box .text {
    line-height: 2;
    color: #b9b9b9;
}

.footer .box .links li {
    padding: 15px 0;
    transition: var(--main-duration);
}

.footer .box .links li:not(:last-child) {
    border-bottom: 1px solid #444;
}

.footer .box .links li:hover {
    padding-left: 10px;
}

.footer .box .links li:hover a {
    color: white;
}

.footer .box .links li a {
    color: #b9b9b9;
    transition: var(--main-duration);
}

.footer .box .links li a::before {
    font-family: "Font Awesome 5 Free";
    content: "\F101";
    font-weight: 900;
    margin-right: 10px;
    margin-left: 10px;
    color: var(--main-color);
}

.footer .box .line {
    display: flex;
    align-items: center;
    color: #b9b9b9;
    margin-bottom: 30px;
}

.footer .box .line i {
    font-size: 25px;
    color: var(--main-color);
    margin-right: 10px;
}

.footer .box .line .info {
    line-height: 1.7;
    flex: 1;
}

.footer .box .line .info span {
    display: block;
}

.footer .footer-gallery img {
    width: 78px;
    height: 78px;
    border: 3px solid white;
    margin: 2px;
}

.footer .copyright {
    padding: 25px 0;
    text-align: center;
    color: white;
    margin: 50px 0 0;
    border-top: 1px solid #444;
}

@media (max-width: 767px) {
    .footer .box .social {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .footer .box .line {
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .footer .box .line i {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .footer .box h3 {
        text-align: center;
    }

    .submissions-section .box {
        width: 70%;
        margin-right: auto;
        margin-left: auto;
    }

    .submissions-section .container {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
        gap: 40px;
    }
}

#button-dark-mode {
    height: 40%;
    justify-content: center;
    display: flex;
    align-items: center;
    margin-top: 10%;
    margin-right: 10px;
}

/* End Footer */
.header-black {
    background-color: #191919;
    position: relative;
    -webkit-box-shadow: 0 0 10px #424242;
    -moz-box-shadow: 0 0 10px #424242;
    box-shadow: 0 0 10px #424242;
}

.card {
    background-color: #0e0e0e;
    color: white;
}

@media (max-width:767px) {
    .landing .text p {
        font-size: 18px;
    }

    .header .logo {
        width: 103px;

    }

    #button-dark-mode {
        margin-top: 3%;
    }
}

.data-center {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 3px;
}

.img-hera {
    width: 300px;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: auto;
    margin-left: auto;
    margin-top: -65px;
    margin-bottom: 35px;
}

.go-now{
    padding-bottom: 30px;
    color: var(--main-color);
    font-weight: bold;
}

.p-last-of-type{
    display: flex;
    /* align-items: center; */
    justify-content: center;
    padding-bottom: 0;
    margin-bottom: 0;
}

/* Start Submissions */
.submissions-section1 {
    padding-top: var(--main-padding-top);
    padding-bottom: var(--main-padding-bottom);
    position: relative;
}

.submissions-section1 .container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
}

.submissions-section1 .box {
    box-shadow: 0 2px 15px rgb(0 0 0 / 10%);
    border-radius: 6px;
    overflow: hidden;
    transition: transform var(--main-duration), box-shadow var(--main-duration);
}

.submissions-section1 .box img {
    width: 100%;
    max-width: 100%;

}

.submissions-section1 .box .content {
    padding: 20px;
}

.submissions-section1 .box .info a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 30px;
    color: var(--main-color);
    font-weight: bold;
}

.submissions-section1 .box .info i {
    color: var(--main-color);
    padding-left: 3px;
}

.submissions-section1 .box .content p:not(:last-of-type) {
    margin: 10px 0 0;
    line-height: 1.5;
    color: #777;
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #cfcfcf;
}

.submissions-section1 .box h3 {
    margin: 0;
    text-align: center;
    padding-bottom: 25px;
    padding-top: 25px;
}

.submissions-section1 .box:hover .info i {
    animation: moving-arrow 0.6s linear infinite;
}

@keyframes moving-arrow {
    100% {
        transform: translateX(10px);
    }
}

.submissions-section1 .box:hover {
    transform: translateY(-10px);
    box-shadow: 0 2px 15px rgb(0 0 0 / 20%);
}

/* Basic responsive styling for the container and logo */
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.logo {
  margin-bottom: 20px;
}

.responsive-logo {
  max-width: 85%; /* Adjusted for mobile responsiveness */
  height: auto;
}

.text {
  max-width: 90%; /* Ensure text doesn't overflow on mobile */
  font-size: 1.2em; /* Adjust font size for readability on smaller screens */
  padding: 0 10px; /* Add some padding for a nicer look on small screens */
}

/* Additional adjustments for smaller mobile screens */
@media (max-width: 600px) {
  .text {
    font-size: 1em; /* Slightly smaller font size for very small devices */
  }
}



/* End Submissions */
