:root {
    --secondary-1: #303335;
    --secondary-2: #51575b;
    --primary-1 : #615b4d;
    --primary-2 : #7f7766;
}
@font-face {
    font-family: 'LAMASANS';
    src: url('../fonts/LAMASANS-MEDIUM.TTF') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'LAMASANS-BOLD';
    src: url('../fonts/LAMASANS-BOLD.TTF') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'LAMASANS', sans-serif;
    margin: 0;
    padding: 0;
    direction: rtl;
}

h1 {
    font-family: 'LAMASANS-BOLD', sans-serif;
    font-size: 4em;
    margin-top: 0;
    margin-bottom: 0;
    line-height: 1.2;
}

p {
    line-height: 1.6;
}

.mb-2 {
    margin-bottom: 20px;
}

.text-white {
    color: white;
}

.opacity-50 {
    opacity: 0.5;
}

.pattern {
    background-image: url('../media/pattern.png');
    background-position: bottom right;
    background-repeat: no-repeat;
    background-size: auto 40%;
}

.pattern-top {
    background-image: url('../media/pattern.png');
    background-position: top right;
    background-repeat: no-repeat;
    background-size: auto 35%;
}

/* Pattern */
.pattern2 , .pattern3 , .pattern4 , .pattern5 {
    position: relative;
}

.pattern2>* , .pattern4>* , .pattern3>* , .pattern5>* {
    position: relative;
    z-index: 1;
}

.pattern2::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    background-image: url('../media/pattern2.png');
    background-position: bottom center;
    background-repeat: repeat-x;
    background-size: auto 250px;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}
@media (max-width: 1200px) {
    .pattern-top {
        background-size: auto 20%;
    }
}
@media (max-width: 768px) {
    .pattern2::before {
        background-size: auto 10%;
    }
    .pattern-top {
        background-size: auto 30%;
    }
}
@media (max-width: 650px) {
    .pattern-top {
        background-size: auto 20%;
    }
}
.pattern3::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    background-image: url('../media/pattern2.png');
    background-position: bottom center;
    background-repeat: repeat;
    background-size: auto 100px;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}


.pattern4::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    background-image: url('../media/pattern2.png');
    background-position: top left;
    background-repeat: no-repeat;
    background-size: auto 60%;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}

.pattern5::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    background-image: url('../media/pattern2.png');
    background-position: bottom center;
    background-repeat: repeat;
    background-size: auto 300px;
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(24px);
    z-index: 1000;
    padding: 10px 20px;
}

.navbar .container {
    max-width: 1400px;
    margin: 0 auto;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .logo {
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    color: white;
}

.navbar .logo .logo-img {
    height: 40px;
    object-fit: cover;
}

.navbar .nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 4px 0px;
}

.navbar .logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar .nav-links li a {
    text-decoration: none;
    font-weight: 500;
}

.close-menu {
    display: none;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
}

/* Close button style */

.nav-links .close-menu {
    font-size: 50px;
    cursor: pointer;
    align-self: flex-start;
}

.nav-links .btns-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

@media screen and (max-width: 768px) {
    .close-menu {
        display: block;
    }

    .navbar {
        padding: 20px;
    }

    .navbar .nav-links {
        position: fixed;
        top: 0px;
        left: -100%;
        background: rgba(0, 0, 0, 0.9);
        height: 100vh;
        width: 200px;
        flex-direction: column;
        align-items: center;
        gap: 30px;
        padding: 30px;
        margin: 0;
        transition: 0.3s;
    }

    .navbar .nav-links li {
        width: 150px;
        text-align: start;
        margin-bottom: 10px;
    }

    .navbar .nav-links.active {
        left: 0;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links .btns-nav {
        flex-direction: column;
    }

    .nav-links .btns-nav .btn {
        width: 100%;
    }

    .close-menu {
        border-bottom: 1px solid white;
        width: 100%;
    }

    h1 {
        font-size: 2.5em;
    }

    p {
        font-size: 1em;
    }

    .btn {
        font-size: 1em;
    }

    .overlay-content {
        width: 80%;
    }
}

/* Home */
.head {
    position: relative;
    width: 100%;
    height: 100vh;
    /* full viewport height */
    overflow: hidden;
}

.video-home {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* black overlay, 50% opacity */
    z-index: 1;
}

.overlay-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    z-index: 2;
}

.btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.btn {
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.btns-nav .btn {
    padding: 4px 12px;
    margin: 0;
}

.btn-primary {
    background-color: #fff;
    color: #303335;
}

.btn-primary:hover {
    background-color: #303335;
    color: #fff;
}

.btn-secondary {
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background-color: #fff;
    color: #303335;
}
.row {
    display: flex;
    align-items: center;
}
.column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.btn-more {
    margin-top: 20px;
    position: relative;
    background: Linear-gradient(-135deg, var(--primary-2), var(--secondary-2));
    background-size: 200% 200%;
    color: #fff;
    animation: gradient 15s ease infinite;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    border: 1px solid var(--primary-1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: visible;
}

/* Top-left corner */
.btn-more::before {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    width: 44px;
    height: 24px;
    border-top: 2px solid var(--secondary-1);
    border-left: 2px solid var(--secondary-1);
    border-radius: 2px;
}

/* Bottom-right corner */
.btn-more::after {
    content: "";
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 44px;
    height: 24px;
    border-bottom: 2px solid var(--primary-1);
    border-right: 2px solid var(--primary-1);
    border-radius: 2px;
}


@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.btn-more:hover {
    opacity: 0.8;
    transform: translateX(5px);
    padding: 10px 35px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

.w-100 {
    width: 100%;
}

/* Backdrop style */
.backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 900;
    /* below menu but above content */
    display: none;
    /* hidden by default */
}

/* Show backdrop when menu is active */
.nav-links.active+.backdrop {
    display: block;
}

/* about-us */
#about-us {
    padding: 60px 20px 20px 20px;
    overflow: hidden;
}
.about-btn {
    /* float right */
   display: flex;
   justify-content: flex-end;
}
@media (max-width: 768px) {
    .about-btn {
        justify-content: center;
    }
    .about-btn .btn-more {
        width: 65%;
        margin-bottom: 20px;
    }
}
.about-wrapper {
    display: flex;
    align-items: center;
    gap: 340px;
    position: relative;
    min-height: 120px;
    overflow: visible;
    margin-top: 40px;

}

.about-image-wrapper {
    width: var(--img-width);
    min-width: var(--img-width);
    height: 240px;
}

/* Draggable Image Style */
.about-us-img {
    width: 320px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    cursor: grab;
    transition: transform 0.25s ease;

    will-change: transform, top, left;
    position: absolute;
}

/* When holding the image */
.about-us-img:active {
    cursor: grabbing;
    transform: scale(1.04);
}

/* apply on odd */
.about-image-wrapper:nth-child(odd) .about-us-img {
    animation: float-odd 4s ease-in-out infinite;
}

/* apply on even */
.about-image-wrapper:nth-child(even) .about-us-img {
    animation: float-even 4s ease-in-out infinite;
}

/* Soft floating effect */
@keyframes float-odd {
    0% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(-10px, -10px, -10px);
    }

    100% {
        transform: translate3d(0, 0, 0);
    }
}

/* Soft floating effect */
@keyframes float-even {
    0% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(10px, 10px, 10px);
    }

    100% {
        transform: translate3d(0, 0, 0);
    }
}

/* Small screens (phones) */
@media (max-width: 768px) {

    .about-wrapper {
        gap: 10px;
        /* space between images */
        min-height: auto;
        display: none;
    }

    .about-image-wrapper {
        width: 100%;
        height: auto;
        display: flex;
        justify-content: center;
        position: relative;
    }

    .about-us-img {
        width: 150px;
        height: auto;
        position: relative;
    }

}

/* Container */
.container {
    max-width: 900px;
    margin: 0 auto;
    text-align: justify;
    line-height: 1.8;
    color: var(--primary-2);
}

/* Title */
#about-us h1 {
    font-size: 64px;
    font-weight: bold;
    display: inline;
    margin-bottom: 30px;
    color: #fff;
    padding: 4px 0px 4px 8px;
    background-color: var(--primary-1);
    border-radius: 20px 0 20px 0;
}

/* Paragraphs */
#about-us p {
    font-size: 18px;
    margin-bottom: 20px;
    background-color: #fff;
}
@media (max-width: 768px) {
    #about-us p {
        background-color: transparent;
    }
}


#about-us strong {
    color: #303335;
    font-family: 'LAMASANS-BOLD', sans-serif;
    font-weight: bold;
}

@media (max-width: 868px) {
    .container {
        max-width: 600px;
    }
}

@media (max-width: 768px) {

    #about-us h1 {
        font-size: 40px;
    }

    #about-us p {
        font-size: 16px;
    }
}

#services {
    background-color: var(--secondary-2);
}
.services-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}
@media (max-width: 1000px) {
    .services-container {
        max-width: 800px;
    }
}

.section-title {
    text-align: center;
    font-size: 4em;
    margin: 40px 0px;
    color: #fff;
}

/* Grid layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}
@media (max-width: 1000px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

/* Card styling */
.service-card {
    background: linear-gradient(-135deg, #303335, #51575b);
    border-radius: 15px;
    padding: 8px 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dropdown-btn {
    width: 100%;
    cursor: pointer;
    text-align: right;
    transition: background 0.3s ease;
    border: none;
    padding: 0px;
    margin: 0px;
    background-color: transparent;
}

.dropdown-btn:hover {
    opacity: 0.5;
}

/* Dropdown content */
.dropdown-content {
    max-height: 0;
    padding: 0 20px;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

/* List items */
.dropdown-content li {
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.dropdown-content li:last-child {
    border-bottom: none;
}

/* Toggle using :checked hack */
.dropdown input {
    display: none;
}

.dropdown input:checked~.dropdown-content {
    max-height: 800px;
    /* enough space for items */
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #fff;
}

.service-card h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #fff;
}

.service-card p {
    font-size: 16px;
    color: #fff;
    opacity: 0.8;
    line-height: 1.6;
}

.service-card ol,
.service-card ul {
    padding-left: 20px;
    color: #fff;
    opacity: 0.8;
    line-height: 1.5;
}

.service-card li {
    margin-bottom: 8px;
}
/* projects */
#projects {
    /* background-color: #51575b; */
    padding: 40px 20px;
}
.projects-container {
    max-width: 1400px;
    margin: 0 auto;
}
.projects-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.projects-grid .project-card {
    position: relative;
    width: 100%;
    height: 450px;
    flex: 1;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: flex 0.6s cubic-bezier(0.25, 0.8, 0.25, 1),
            transform 0.6s ease,
            box-shadow 0.6s ease;
}
.projects-grid .project-card img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.projects-container .projects-title {
    text-align: center;
    font-size: 4em;
    margin-bottom: 40px;
    margin-top: 20px;
    color: var(--primary-1);
}
.projects-title h4 {
    margin: 0px;
}
.project-info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0,rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    /* Optional dark overlay */
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    transition: opacity 0.4s ease;

}


.project-card:hover{
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.project-card:hover .project-info {
    background: linear-gradient(0, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0));
}
.project-card:hover .project-main{
    opacity: 1;
}

.project-info {
    text-decoration: none;
    height: 100%;
}
.project-main {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    height: 90%;
    margin: 40px 20px 40px 20px;
    opacity: 0.6;
}
.project-info .project-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

}
.project-info .project-content h2 {
    margin: 0px;
}
.project-info .project-content p {
    text-decoration: none;
    padding: 0px 20px;
    color: #fff;
    transition: color 0.3s ease;
}

#companys {
    padding: 40px 20px;
    background-color: var(--secondary-2);
}
.partners-title {
    margin-bottom: 40px;
    text-align: center;
    font-size: 4em;
    color: #fff;
}
@media (max-width: 768px) {
    .partners-title {
        font-size: 3em;
    }
}
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 40px;
    align-items: center;
    justify-items: center;
}

.partner-item img {
    width: 120px;
    opacity: 0.8;
    filter: grayscale(80%);
    transition: 0.3s ease;
    padding: 10px;
    border-radius: 10px;
    background-color: #ffffff;
}

.partner-item img:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
}
/* contact */
#contact {
    padding: 80px 20px;
}

.contact-wrapper {
    max-width: 1200px;
    margin: auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-header h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.contact-header p {
    color: #666;
    font-size: 18px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: start;
}

/* Info Section */
.contact-info {
    padding: 10px 20px;
    background: var(--secondary-2);
    color: #fff;
    border-radius: 12px;
    border: 1px solid #eee;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.contact-info h2 {
    margin-bottom: 8px;
}
.contact-info hr {
    opacity: 0.5;
    padding: 0px;
    margin: 0 0 20px 0;
}
.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    font-size: 18px;
    opacity: 0.8;
}


/* Form */
.contact-map {
    background: var(--secondary-2);
    padding: 10px;
    border-radius: 12px;
    height: 400px;
    border: 1px solid #eee;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.contact-map iframe {
    width: 100%;
    height: 100%;
}

/* Responsive */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}
/* footer */
.main-footer {
    background: #111;
    color: #eee;
    padding: 50px 20px 20px;
    direction: rtl;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
}

.footer-col h3,
.footer-col h4 {
    margin-bottom: 15px;
    font-weight: bold;
    color: var(--primary-2);
}

.footer-col p {
    line-height: 1.8;
    max-width: 350px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: #fff;
    opacity: 0.8;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: var(--primary-2);
}

.footer-social a {
    font-size: 20px;
    display: inline-block;
    margin-left: 12px;
    color: #ccc;
    transition: 0.3s;
}

.footer-social a:hover {
    color: var(--primary-2);
}

.footer-bottom {
    margin-top: 30px;
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid var(--primary-1);
    font-size: 14px;
    color: #aaa;
}
/* Floating Button Styles */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 0px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50% 0 0 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

:root {
    --accent: var(--primary-2);
    --bg: #f8f9fa;
    --card-bg: #ffffff;
    --text: #222;
    --muted: #6c757d;
}


/* القسم */
#ceo-word {
    background: linear-gradient(180deg, var(--bg) 0%, #ffffff 100%);
    padding: 60px 0px;
}


.ceo-card {
    background: var(--card-bg);
    border-radius: 18px;
    box-shadow: 0 8px 30px rgba(18, 38, 63, 0.08);
    padding: 28px;
    display: flex;
    gap: 28px;
    align-items: center;
    margin: 20px;
}

/* الصورة */
.ceo-photo {
    width: 240px;
    height: 240px;
    border-radius: 100%;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(13, 110, 253, 0.08);
    transform: translateY(-6px);
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.05), rgba(0, 0, 0, 0.02));
    transition: transform 400ms cubic-bezier(.2, .9, .3, 1), box-shadow 300ms;
}

.ceo-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ceo-photo:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 18px 50px #7f77661f;
}

/* نص الكلمة */
.ceo-content {
    flex: 1 1 480px;
    min-width: 260px;
}

.ceo-content h2 {
    font-size: 28px;
    margin: 0 0 14px 0;
    color: var(--text);
    letter-spacing: 0.2px;
}

.ceo-content p {
    margin: 0 0 12px 0;
    line-height: 1.85;
    color: var(--text);
    font-weight: 400;
    font-size: 16px;
    opacity: 0.98;
}

/* اسم وتوقيع المدير */
.ceo-sign {
    margin-top: 18px;
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.ceo-sign h5 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
}

.ceo-sign .role {
    font-size: 13px;
    color: var(--muted);
}

/* خطوط قوية داخل الفقرة (strong) */
.ceo-content strong {
    color: var(--accent);
    font-weight: 700;
}

/* Responsive */
@media (max-width: 992px) {
    .ceo-card {
        padding: 20px;
        gap: 18px;
    }

    .ceo-photo {
        width: 200px;
        height: 200px;
    }

    .ceo-content {
        flex-basis: 50%;
    }
}

@media (max-width: 640px) {
    #ceo-word {
        padding: 36px 0;
    }

    .ceo-card {
        flex-direction: column;
        text-align: center;
        padding: 18px;
    }

    .ceo-photo {
        width: 80px;
        height: 80px;
        margin: 0 auto;
    }

    .ceo-content {
        min-width: unset;
        width: 100%;
    }

    .ceo-content p {
        text-align: center;
        font-size: 15px;
    }

    .ceo-sign {
        justify-content: center;
    }
}

.ceo-photo,
.ceo-content {
    opacity: 0;
    transform: translateY(12px);
    animation: fadeUp 600ms ease forwards;
}

.ceo-photo {
    animation-delay: 120ms;
}

.ceo-content {
    animation-delay: 260ms;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



.contact-form {
    width: 100%;
        max-width: 600px;
        margin: 20px auto;
}
.contact-form .form-group {
    margin-bottom: 15px;
}


.contact-form input,
.contact-form textarea {
    width: calc(100% - 24px);
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background: #f9f9f9;
    font-size: 15px;
    transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #0c7bb3;
    background: #fff;
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.2);
    outline: none;
}

.btn-send {
    background: linear-gradient(135deg, #0c7bb3, #0a9acb);
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    transition: 0.3s;
}

.btn-send:hover {
    background: linear-gradient(135deg, #0a9acb, #0c7bb3);
    transform: translateY(-3px);
}
.success-message {
    background: #e7f7ec;
    border: 1px solid #b6e2c1;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin-top: 15px;
}

.success-message h3 {
    color: #1c8c3c;
    margin-bottom: 10px;
}

.success-message p {
    color: #4a4a4a;
}
