@import url('../css2');
@import url('../css2-1');
.color{color: #293364; color: #018089; color: #ec9c3d; color: #f8bf16;}
* {padding: 0;margin: 0;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;-o-box-sizing: border-box;box-sizing: border-box;}
hr {margin-top: 20px;margin-bottom: 20px;}
.ecommerce {height: 100%;background-color: #eee;font-family: 'Montserrat', sans-serif;}



/***** Start Top header section *****/
/***** Start Top header section *****/
/* Global Variables */
:root {
  --primary-color: #F58220; /* Vibrant Orange */
  --secondary-color: #3a2d21; /* Dark Brown */
  --accent-color: #ffc107; /* Bright Yellow */
  --text-color: #5c5c5c;
  --heading-color: #3a2d21;
  --background-color: #fdfdfd;
  --light-background: #f8f6f3;
  --border-color: #e0e0e0;
  --border-radius: 8px;
  --box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  --font-body: 'Roboto', sans-serif;
  --font-heading: 'Playfair Display', serif;
}

/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body, 'Helvetica Neue', Arial, sans-serif);
    line-height: 1.6;
    background-color: var(--background-color, #f9f9f9);
    color: var(--text-color);
}

.container {
    max-width: 1200px;
    width: 95%;
    margin: 0 auto;
}

a {
    transition: color 0.3s ease, opacity 0.3s ease;
}

a:hover {
    opacity: 0.8;
}

ul {
    list-style: none;
}

h1, h2 {
    font-family: var(--font-heading);
    color: var(--heading-color);
}

/* Header Styles */
.site-header {
    background-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1000;
}

.site-header a {
    color: #fff;
    text-decoration: none;
}

/* Header Top */
.header-top {
    padding: 8px 0;
    font-size: 14px;
    background-color: rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
}

.contact-info a i {
    margin-right: 8px;
}

.language-switcher a {
    margin-left: 10px;
    font-weight: bold;
    padding: 4px 6px;
    border: 1px solid transparent;
    border-radius: 4px;
    transition: background-color 0.3s, border-color 0.3s;
}

.language-switcher a:hover {
    background-color: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.3);
    opacity: 1;
}

/* Header Main */
.header-main .container {
    min-height: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo-image {
    display: block;
    height: 120px;
    width: auto;
    max-width: 100%;
    transition: height 0.3s ease;
}


/* Main Navigation */
.main-nav {
    display: flex;
    align-items: center;
}

.main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav li {
    margin-left: 35px;
}

.main-nav a {
    font-weight: bold;
    text-transform: uppercase;
    padding: 10px 0;
    position: relative;
    letter-spacing: 1px;
    font-size: 15px;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #fff;
    transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

/* Mobile Navigation Toggle */
.nav-toggle-checkbox {
    display: none;
}

.nav-toggle {
    display: none; /* Hidden by default, shown on mobile */
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    -webkit-tap-highlight-color: transparent;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    content: '';
    display: block;
    background-color: #fff;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
}

.hamburger {
    position: relative;
}

.hamburger::before {
    position: absolute;
    top: -8px;
}

.hamburger::after {
    position: absolute;
    bottom: -8px;
}

/* Mobile Menu Active State */
.nav-toggle-checkbox:checked + .nav-toggle .hamburger {
    background-color: transparent; /* Middle bar fades out */
}

.nav-toggle-checkbox:checked + .nav-toggle .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.nav-toggle-checkbox:checked + .nav-toggle .hamburger::after {
    transform: rotate(-45deg);
    bottom: 0;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .main-nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--secondary-color);
        flex-direction: column;
        padding: 10px 0;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }

    .main-nav li {
        margin: 0;
        width: 100%;
    }

    .main-nav a {
        display: block;
        padding: 15px 25px;
        text-align: center;
        width: 100%;
    }

    .main-nav a::after {
        display: none;
    }

    .main-nav a:hover {
        background-color: var(--primary-color);
        opacity: 1;
    }

    .nav-toggle {
        display: block;
    }

    .nav-toggle-checkbox:checked ~ ul {
        display: flex;
    }

    .header-main .container {
        min-height: 80px;
    }
}

@media (max-width: 768px) {
    .header-top .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .logo-image {
        height: 85px;
    }
}
/***** End NavBar header section *****/

/***** Start Our Services *****/
#service {margin-top: 30px;margin-bottom: 30px;}
#service .service-title {text-align: center;font-weight: bold;}
#service .service-box {text-align: center;margin-top: 40px;}
#service .service-box .service-item {margin-bottom: 30px;}
#service .service-box .icon i {font-size: 40px; color: #f8bf16;vertical-align: middle;}
#service .service-box .text {font-weight: bold;font-size: 16px;margin-top: 10px;}
/***** End Our Services *****/



/***** Start Our Tour Destination *****/
#P-tours h2 {font-weight: bold;}
#P-tours h2::after {content: "";display: block;clear: both;color: #f55d0b;border: 1px solid;max-width: 100px;margin: 0 auto;position: relative;top: 5px;border-width: 2px;}
#P-tours .DSF {margin-bottom: 40px;font-weight: bold;display: block;font-size: 14px;text-align: center;color: #000000;}
#P-tours .T-item {width: 100%;position: relative;clear: both;overflow: hidden;margin-bottom: 45px;}
#P-tours .T-item .T-img {height: 219px;}
#P-tours .T-item .T-img img {width: 100%;height: 100%;}
#P-tours .T-item .T-img span {display: block;text-align: center;position: relative;top: -25px;background-color: #ec8405;width: 165px;padding: 10px;border-radius: 65px;margin: 0 auto;-webkit-border-radius: 40px;-moz-border-radius: 40px;-ms-border-radius: 40px;border-radius: 40px;font-weight: bold;color: #383838;z-index: 1000;}
#P-tours .T-item .T-img span i {margin-right: 8px;color: #fff;}
#P-tours .T-box {background-color: #fff;padding: 20px;padding-bottom: 0;}
#P-tours .T-box h4 {font-size: 18px;font-weight: bold;margin-top: 25px;text-align: center;}
#P-tours .T-box h4 a {color: #293364;font-weight: bold;text-decoration: none;}
#P-tours .T-box .rating {overflow: hidden;border-top: 1px solid #f67103;margin-top: 20px;padding-top: 20px;}
#P-tours .T-box .rating ul:first-child {float: left;}
#P-tours .T-box .rating ul:last-child {float: right;color: #f8bf16;vertical-align: middle;}
#P-tours .T-box .rating ul li {display: inline-block;list-style: none;}
#P-tours .T-box .rating ul .CAT {font-weight: bold;font-size: 14px;}
#P-tours .T-box .details {width: 100%;}
#P-tours .T-box .details a {text-align: center;display: block;color: #000000;font-weight: bold;font-size: 15px;text-decoration: none;padding: 10px;border-top: 1px solid #ddd;}
#P-tours .T-box .details a:hover {background-color: #fb7602;}
/***** End Our Tour Destination *****/


/***** Start Our Morocco Tours *****/
#our-tours .content-title {padding-top: 40px;padding-bottom: 40px;color: #293364;font-weight: bold;font-size: 26px;}
#our-tours .T-item {width: 100%;position: relative;clear: both;overflow: hidden;margin-bottom: 45px;}
#our-tours .T-item .T-img {height: 219px;}
#our-tours .T-item .T-img img {width: 100%;height: 100%;}
#our-tours .T-item .T-img span {display: block;text-align: center;position: relative;top: -25px;background-color: #26bdf7;width: 165px;padding: 10px;margin: 0 auto;border-radius: 40px;-webkit-border-radius: 40px;-moz-border-radius: 40px;-ms-border-radius: 40px;font-weight: bold;color: #383838;z-index: 1000;}
#our-tours .T-item .T-img span i {margin-right: 8px;color: #fff;}
#our-tours .T-box {background-color: #fff;padding: 20px;padding-bottom: 0;}
#our-tours .T-box h4 {font-size: 18px;font-weight: bold;margin-top: 25px;text-align: center;}
#our-tours .T-box h4 a {color: #293364;font-weight: bold;text-decoration: none;}
#our-tours .T-box .rating {overflow: hidden;border-top: 1px solid #26bdf7;margin-top: 20px;padding-top: 20px;}
#our-tours .T-box .rating ul:first-child {float: left;}
#our-tours .T-box .rating ul:last-child {float: right;color: #f8bf16;vertical-align: middle;}
#our-tours .T-box .rating ul li {display: inline-block;list-style: none;}
#our-tours .T-box .rating ul .CAT {font-weight: bold;font-size: 14px;}
#our-tours .T-box .details {width: 100%;}
#our-tours .T-box .details a {text-align: center;display: block;color: #018089;font-weight: bold;font-size: 15px;text-decoration: none;padding: 10px;border-top: 1px solid #ddd;}
#our-tours .T-box .details a:hover {background-color: #f8bf16;}
/***** End Our Morocco Tours *****/


/***** Start Footer *****/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

footer {
  background-color: #d17c1b;
  color: #000000;
  font-family: Arial, sans-serif;
  padding: 40px 0;
}

.footer-logo {
  text-align: center;
  margin-bottom: 50px;
}

.footer-logo img {
  width: 150px; /* Default width for desktop */
  height: auto; /* Maintain aspect ratio */
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.footer-column {
  flex: 1;
  min-width: 250px;
  margin-bottom: 20px;
}

.footer-column h4 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: bold;
}

.footer-column ul {
  list-style-type: none;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 15px;
}

.footer-column ul li a:hover {
  color: rgb(23, 20, 14); /* Hover effect */
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid #444;
  margin-top: 20px;
}

.social-icons a {
  display: inline-block;
  margin: 0 10px;
  font-size: 24px; /* Icon size */
  color: #fff;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: orange; /* Hover effect for social media icons */
}

@media screen and (max-width: 768px) {
  .footer-container {
    flex-direction: column;
  }

  .footer-column {
    min-width: 100%;
    text-align: center;
  }

  .footer-logo img {
    width: 100px; /* Adjusted size for mobile */
  }
}
/***** End Footer *****/
  


/***** Start Back to top Section *****/
#scroll-top {position: fixed;right: 30px;bottom: 12px;height: 40px;width: 40px;background-color: #fd6101;text-align: center;border-radius: 50%;z-index: 9;cursor: pointer;display: none;border: 1px solid #293364;}
#scroll-top i {padding-top: 9px;font-size: 22px;color: #f9f9f9;vertical-align: middle;}
#scroll-top i:hover {margin-bottom: 6px;transition: all .5s ease-in-out;}
/***** End Back to top Section *****/


/* CSS File or <style> Section */
body {
  font-family: 'Roboto', sans-serif; /* Default body font */
  font-size: 17px; /* Adjust your body text size as needed */
}

h1, h2, h3 {
  font-family: 'Montserrat', sans-serif; /* Font for headings */
}

/* Example styles for headings and Font name */
h1 {
  font-size: 36px;
  font-weight: bold;
  color: #ff5722; /* Example color */
}

h2 {
  font-size: 28px;
  font-weight: bold;
  color: #333;
}

h3 {
  font-size: 22px;
  font-weight: bold;
}


/* Example styles for headings */


