/*******************************/
/********* General CSS *********/
/*******************************/
body {
    background: linear-gradient(to bottom, #0a0a0a, #1c1c1c);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5); /* Shadow for depth */
    padding: 15px 0;
    font-family: 'Crimson Text', serif;
    margin: 0;
    padding: 0;
    overflow: auto;
    height: auto;
}

h1,
h2, 
h3, 
h4,
h5, 
h6 {
    color: #D5B981;
}

a {
    color: #454545;
    transition: .3s;
}

a:hover,
a:active,
a:focus {
    color: #D5B981;
    outline: none;
    text-decoration: none;
}

.btn:focus,
.form-control:focus {
    box-shadow: none;
}

.container-fluid {
    max-width: 1366px;
}

.back-to-top {
    position: fixed;
    display: none;
    background: #D5B981;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 22px;
    right: 15px;
    bottom: 15px;
    transition: background 0.5s;
    z-index: 9;
}

.back-to-top:hover {
    background: #1d2434;
}

.back-to-top:hover i {
    color: #D5B981;
}

.back-to-top i {
    color: #1d2434;
    padding-top: 10px;
}


/**********************************/
/********** Top Bar CSS ***********/
/**********************************/
.top-bar {
    position: relative;
    height: 60px;
    font-family: 'Crimson Text', serif;
    
}

.top-bar .top-bar-left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.top-bar .top-bar-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.top-bar .text {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 60px;
    padding: 0 10px;
    text-align: center;
    border-left: 1px solid rgba(255, 255, 255, .15);
}

.top-bar .text:last-child {
    border-right: 1px solid rgba(255, 255, 255, .15);
}

.top-bar .text h2 {
    color: #eeeeee;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 1px;
    margin: 0;
}

.top-bar .text p {
    color: #eeeeee;
    font-size: 16px;
    font-weight: 400;
    margin: 0;
}

.top-bar .social {
    display: flex;
    height: 60px;
    font-size: 0;
    justify-content: flex-end;
}

.top-bar .social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 100%;
    font-size: 22px;
    color: #ffffff;
    border-right: 1px solid rgba(255, 255, 255, .15);
}

.top-bar .social a:first-child {
    border-left: 1px solid rgba(255, 255, 255, .15);
}

.top-bar .social a:hover {
    color: #D5B981;
    background: #ffffff;
}

@media (min-width: 992px) {
    .top-bar {
        padding: 0 60px;
    }
}
@media (max-width: 575.98px) {
    .top-bar {
        padding: 0 20px;
    }
    .top-bar .text h2 {
        font-size: 16px;
    }
    .top-bar .text p {
        font-size: 14px;
    }
    .top-bar .social a {
        width: 40px;
    }
}

@media (max-width: 575.98px) {
    .top-bar {
        padding: 0 10px;
    }
    .top-bar .text h2 {
        font-size: 14px;
    }
    .top-bar .text p {
        font-size: 12px;
    }
    .top-bar .social a {
        width: 40px;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .top-bar {
        padding: 0 20px;
    }
    .top-bar .text h2 {
        font-size: 16px;
    }
    .top-bar .text p {
        font-size: 14px;
    }
    .top-bar .social a {
        width: 50px;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .top-bar {
        padding: 0 30px;
    }
    .top-bar .text h2 {
        font-size: 18px;
    }
    .top-bar .text p {
        font-size: 16px;
    }
    .top-bar .social a {
        width: 60px;
    }
}

/**********************************/
/*********** Nav Bar CSS **********/
/**********************************/
/* Main Navbar (with Custom Background) */
/**********************************/
/********** Navbar Styles *********/
/**********************************/

/* Navbar Container */
/* Navbar Styling */
.custom-navbar {
    background: linear-gradient(to bottom, #0a0a0a, #1c1c1c);
    box-shadow: 0px 0px 20px 5px rgba(213, 185, 129, 0.5); /* Glow effect */
    border-bottom: 2px solid #D5B981; /* Optional gold line */
    padding: 15px 0;
  
    position: sticky;
    top: 0;
    z-index: 999;
    font-family: 'Crimson Text', serif;
}
.brand .brand-text {
    font-family: 'Crimson Text', serif;
    font-size: 30px; /* Adjust size */
    font-weight: 700; /* Adjust weight */
    color: #D5B981; /* Add color if desired */
}


.brand-text.hollywood {
    font-family: 'Crimson Text', serif;
    font-weight: 700; /* Optional: For bold styling */
    color:#D5B981;
    font-size: 40px;
}

  /* Brand Text */
  .custom-navbar .brand {
    font-family: 'Crimson Text', serif;
    font-size: 36px;
    font-weight: bold;
    color: #D5B981;
    margin-left: 20px;
    display: flex;
    align-items: center;
  }
  
  
  /* Star Logo */
  .custom-navbar .star-logo {
    height: 50px;
    width: auto;
    margin-right: 20px;
  }
  
  /* Navbar Links */
  .navbar {
    padding: 10px 0;
    font-family: 'Crimson Text', serif;
  }
  
  .navbar-nav {
    text-align: center;
    list-style: none;
    margin: 0;
    padding: 0;
    font-family: 'Cinzel', serif;
  }
  
  .navbar-nav .nav-item {
    margin: 0 15px;
  }
  
  .navbar-nav .nav-link {
    font-family: 'Crimson Text', serif;
    font-size: 18px;
    color: #ffffff;
    text-transform: uppercase;
    padding: 5px 10px;
    transition: all 0.3s ease;
  }
  
  .navbar-nav .nav-link:hover {
    color: #D5B981;
  }
  
  .navbar-toggler {
    border-color: #D5B981;
  }
  .brand {
    display: flex;
    align-items: center;
}

.star-logo {
    height: 30px; /* or width: 30px; Adjust based on the size you want */
    margin-left: 10px; /* Ensure there’s some space between the text and the logo */
    object-fit: contain; /* Prevents the image from stretching and keeps aspect ratio */
    display: inline-block;
}

  
  /* Responsive Adjustments */
 /* Style for the Navbar on Small Screens (Mobile version) */
/* Style for the Navbar on Small Screens (Mobile version) */
/* Adjust Brand Layout on Mobile */
@media (max-width: 768px) {
    .navbar {
        padding: 15px;
    }

    .navbar .dropdown-menu {
        box-shadow: none;
    }
    .custom-navbar .navbar-toggler {
        border: 2px solid #D5B981;
        background-color: transparent;
        position: absolute;
       
        right: 15px; /* Push it to the right side */
        transform: translateY(-50%); /* Center vertically */
        z-index: 10; /* Ensure it's clickable */
    }
    .custom-navbar .navbar-toggler span {
        display: block;
        width: 20px; /* Length of the lines */
        height: 2px; /* Thickness of the lines */
        background-color: #D5B981; /* Line color */
        margin: 6px 0; /* Spacing between lines */
   
    }

    /* Add Hover Effect */
    .custom-navbar .navbar-toggler:hover span {
        background-color: #D5B981; /* Slightly different hover color */
    }
}

@media (min-width: 992px) {
    .navbar {
        position: absolute;
        width: 100%;
        top: 60px;
        padding: 20px 60px;
        z-index: 9;
    }
    .custom-navbar .navbar-toggler {
        border: 2px solid #D5B981;
        background-color: transparent;
        position: absolute;
       
        right: 15px; /* Push it to the right side */
        transform: translateY(-50%); /* Center vertically */
        z-index: 10; /* Ensure it's clickable */
    }
}

@media (max-width: 991.98px) {   
    .navbar {
        padding: 15px;
    }

    .navbar .dropdown-menu {
        box-shadow: none;
    }
    .custom-navbar .navbar-toggler {
        border: 2px solid #D5B981;
        background-color: transparent;
        position: absolute;
       
        right: 15px; /* Push it to the right side */
        transform: translateY(-50%); /* Center vertically */
        z-index: 10; /* Ensure it's clickable */
    }
    .custom-navbar .navbar-toggler span {
        display: block;
        width: 20px; /* Length of the lines */
        height: 2px; /* Thickness of the lines */
        background-color: #D5B981; /* Line color */
        margin: 6px 0; /* Spacing between lines */
   
    }

    /* Add Hover Effect */
    .custom-navbar .navbar-toggler:hover span {
        background-color: #D5B981; /* Slightly different hover color */
    }
}
@media (max-width: 575.98px) {
  
    .custom-navbar .navbar-collapse {
        display: flex; /* Ensure it is a flex container */
        flex-direction: column;
        align-items: flex-end;
        width: 100%; /* Ensure full-width collapse */
        max-height: 0; /* Initially collapsed */
        overflow: hidden; /* Hide overflow */
        transition: 0.5s ease-in-out, padding 0.5s ease-in-out; /* Smooth transition for both opening and closing */
      
    }
    .custom-navbar .navbar-collapse.show {
        max-height: 1000px; /* Expanded height */
    }

    .custom-navbar .navbar-nav {
        flex-direction: column; /* Display items vertically */
        width: 100%;
        padding-left: 0;
    }

    .custom-navbar .navbar-nav .nav-item {
        margin: 8px 0; /* Margin between items vertically */
    }

    .custom-navbar .navbar-toggler {
        border: 2px solid #D5B981;
        background-color: transparent;
        position: absolute;
        right: 15px; /* Push it to the right side */
        transform: translateY(-50%);
        z-index: 10;
        
    }

    .custom-navbar .navbar-toggler-icon {
        display: block;
        width: 20px; /* Length of the lines */
        height: 2px; /* Thickness of the lines */
        background-color: #D5B981; /* Line color */
        margin: 6px 0; /* Spacing between lines */
      
    }

    .custom-navbar .navbar-toggler:hover .navbar-toggler-icon {
        background-color: #D5B981; /* Slightly different hover color */
    }
    
    /* Adjust the brand */
    .custom-navbar .navbar-brand {
        display: flex;
        align-items: center;
        font-size: 0.8em; /* Make the brand text smaller */
        margin-right: auto; /* Align to the left */
    }

    .custom-navbar .navbar-brand .star-logo {
        height: 30px; /* Make the logo smaller */
        width: auto;
        margin-right: 10px; /* Adjust spacing */
    }

    .custom-navbar .brand-text {
        font-size: 24px; /* Adjust brand text size */
    }

    .custom-navbar .brand-text.hollywood {
        font-size: 28px; /* Adjust brand text size */
    }

}

/*******************************/
/********** Hero CSS ***********/
/*******************************/
.hero {
    position: relative;
    width: 100%;
    height: calc(100vh - 60px); /* Full-screen height */
    background: url(/img/bg.png) no-repeat center center / cover;
    background-attachment: fixed; /* Optional: Parallax scrolling effect */
    overflow: hidden;
    box-shadow: inset 0 0 0 1000px rgba(8, 8, 8, 0.5); /* Add a shadow effect */
}
.hero .hero-image-container {
    position: absolute;
    top: 5%;
    right: 5%;
    width: 20%; /* Covers a portion of the hero */
    background: linear-gradient(135deg, rgba(29, 36, 52, 0.9), rgba(45, 54, 70, 0.9));
    
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column; /* Stack everything vertically */
    justify-content: flex-start; /* Align items at the top */
    align-items: center; /* Center everything horizontally */
    gap: 15px; /* Space between elements */
    z-index: 2;
    height:40%;
}

/* Styling for the album images */
.hero .hero-image-container .album img {
    width: 28%;
    max-width: 100px; /* Adjust to keep smaller sizes */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    opacity: 0.9; /* Add some transparency */
    transition: transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease;
}

/* Custom image placement for dynamic layout */
.hero .hero-image-container .album img:nth-child(1) {
    transform: translate(-10px, -20px) rotate(-8deg);
}

.hero .hero-image-container .album img:nth-child(2) {
    transform: translate(15px, 10px) rotate(5deg);
}

.hero .hero-image-container .album img:nth-child(3) {
    transform: translate(-15px, 15px) rotate(-12deg);
}

.hero .hero-image-container .album img:nth-child(4) {
    transform: translate(10px, -15px) rotate(8deg);
}

.hero .hero-image-container .album img:nth-child(5) {
    transform: translate(-5px, 25px) rotate(-6deg);
}

.hero .hero-image-container .album img:nth-child(6) {
    transform: translate(5px, -25px) rotate(10deg);
}

/* Hover effect for album images */
.hero .hero-image-container .album img:hover {
    transform: scale(1.1) translate(0px, 0px); /* Center and zoom */
    opacity: 1; /* Remove transparency */
    z-index: 5; /* Bring image to the front */
}

/* Button styling */
.hero .hero-image-container .btn {
    
    margin-top: 20px;
    padding: 12px 30px;
    font-size: 25px;
    font-weight: bold;
    color: #D5B981;
    border: 2px solid #D5B981;
    background: none;
    transition: all 0.3s ease;
}

.hero .hero-image-container .btn:hover {
    background: #D5B981;
    color: #1d2434;
}

/* Hero Text Area */
.hero .hero-text {
    position: absolute; /* Absolute positioning to allow placement on the left */
    top: 70%; /* Vertically center the text */
  
    transform: translateY(-50%); /* Adjust for vertical centering */
    width: 50%; /* Occupy half of the hero section's width */
    padding: 40px; /* Internal spacing within the border */
    color:#1d2434;
   
    border-radius: 20px; /* Rounded corners */
    background: D5B; /* Semi-transparent background */
   
    height:100%;
}

.hero .hero-text h1 {
    font-family: 'Arima', cursive;
    font-size: 50px;
    font-weight: normal;
    margin-bottom: 30px;
    line-height: 1.2; /* Improve line spacing */
    color:#D5B981;
    text-align: center;
    
}

.hero .hero-text p {
    font-size: 28px;
    margin-bottom: 25px;
    
    line-height: 1.5; /* Improve readability */
    
}
.hero .hero-text .hero-button {
    display: flex; /* Use flexbox for centering */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    margin-top: 20px; /* Space between the text and the button */
    width: 100%; /* Make the button wider */
    max-width: 400px; /* Adjust max-width to prevent crashing at the bottom */
    padding: 15px 30px; /* Adjust padding for a better fit */
    font-size: 20px; /* Adjust font size */
    background: linear-gradient(135deg, rgba(29, 36, 52, 0.9), rgba(45, 54, 70, 0.9)); /* Background similar to the image container */
    color: #D5B981; /* Gold text color */
    border: 2px solid #D5B981; /* Adjust border size */
    border-radius: 20px; /* Rounded corners */
    text-align: center; /* Center the button text */
    text-decoration: none; /* Remove underline */
    font-weight: bold; /* Bold text for emphasis */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25); /* Shadow for depth */
    transition: all 0.3s ease; /* Smooth hover effect */
    cursor: pointer; /* Pointer cursor for interactivity */
}

/* Hover Effect */
.hero .hero-text .hero-button:hover {
    background: rgba(45, 54, 70, 0.9); /* Darker shade on hover */
    color: white; /* White text on hover */
    border-color: #D5B981; /* Gold border on hover */
}
.certification-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 32px;
    margin-bottom: 16px;
    padding: 24px 0;
    /* Optional: add a subtle divider line above or below for separation */
}

.certification-img {
    background: rgba(255, 255, 255, 0.95);         /* Soft white background for contrast */
    border-radius: 18px;                            /* Rounded corners for a modern look */
    box-shadow: 0 6px 32px 0 rgba(0,0,0,0.11),      /* Soft drop shadow */
                0 1.5px 8px 0 #ffe06680;            /* Gold glow for premium feel */
    filter: brightness(1.22) contrast(1.18);        /* Gentle enhancement */
    max-width: 340px;                               /* Consistent sizing */
    width: 100%;
    height: auto;
    padding: 16px 24px;                             /* Space inside the badge area */
    transition: box-shadow 0.35s, filter 0.35s, background 0.3s;
}

.certification-img:hover {
    background: rgba(255,255,240,0.99);
    box-shadow: 0 10px 40px 0 #ffe066cc,
                0 3px 12px 0 #fffbeacc;
    filter: brightness(1.33) contrast(1.32);
    cursor: pointer;
}

/* Media query for larger screens */
@media (min-width: 1200px) {
    .hero .hero-text {
        display: flex;
        flex-direction: column;
        align-items: center; /* Center align items */
        text-align: center;  /* Center text */
    }

    .hero .hero-text .hero-button {
        max-width: 600px; /* Increase max-width for larger screens */
        padding: 20px 40px; /* Increase padding for larger screens */
        font-size: 24px; /* Increase font size for larger screens */
    }
 

}

/* Responsiveness */
/* General Responsiveness */
@media (max-width: 991px) {
    .hero .hero-image-container {
        width: 40%; /* Slightly larger for larger mobile screens */
        top: 0;
        right: 0;
        height: 40%;
    }

    .hero .hero-text h1 {
        font-size: 35px;
    }

    .hero .hero-text p {
        font-size: 16px;
    }

    .hero .hero-text {
        padding: 0 20px; /* Add padding to ensure text doesn't crash with the edges */
    }
   
}


@media (max-width: 767px) {
    .hero .hero-image-container {
        width: 40%; /* Adjusted width for smaller screens */
        top: 20%;
        right: 10%;
        height: 20%;
    }

    
    .hero .hero-text h1 {
        font-size: 30px;
    }

    .hero .hero-text p {
        font-size: 14px;
    }

    .hero .hero-text {
        padding: 0 15px; /* Adjust padding for medium-sized devices */
    }
  
}

@media (max-width: 575px) {
    .hero .hero-text h1 {
        font-size: 30px;
    }

    .hero .hero-text p {
        font-size: 12px;
    }

    .hero .hero-image-container .btn {
        padding: 4px 8px; /* Adjust padding to make the button smaller */
        font-size: 12px; /* Adjust font size to make the button smaller */
        width: auto; /* Allow the button to be as wide as its content */
        max-width: 80%; /* Ensure the button does not take more than 80% of the container width */
        border: 1px solid #D5B981; /* Adjust border size */
        white-space: nowrap; /* Prevent the text from wrapping */
        display: inline-block; /* Ensure the button is inline */
        text-align: center; /* Center the text inside the button */

        /* Hide the original text and display "Γκαλερί" */
        position: relative; /* Ensure the pseudo-element is positioned relative to the button */
        color: transparent; /* Hide the original text */
    }

    .hero .hero-image-container .btn::after {
        content: 'Γκαλερί'; /* Display "Γκαλερί" */
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: #D5B981; /* Use the button's original color */
        white-space: nowrap; /* Prevent the text from wrapping */
    }


    .hero .hero-text {
        padding: 0 10px; /* Adjust padding for smaller screens */
    }

    /* Make the image container smaller */
    .hero .hero-image-container {
        width: 100%; /* Adjust width for smaller screens */
        top: 10%;
        right: 10%;
        height: auto; /* Allow the height to adjust dynamically */
    }

    .hero .hero-image-container .album img {
        width: 30%; /* Adjust the image size within the container */
    }

    /* Make the hero button smaller */
    .hero-text .hero-button {
        width: 100%; /* Adjust width for smaller screens */
        max-width: 200px; /* Limit the maximum width */
        padding: 10px 20px; /* Adjust padding for smaller screens */
        font-size: 23px; /* Adjust font size for smaller screens */
        margin-top: 10px; /* Adjust margin for spacing */
    }
 
}

@media (max-width: 884px) {
    .hero .hero-image-container {
        width: 40%; /* Scale down the image container */
        top: 10px; /* Adjust vertical alignment */
        right: 5px; /* Prevent button clipping */
        height: auto; /* Allow the height to adjust dynamically */
    }

    .hero .hero-image-container .btn {
        padding: 12px 25px; /* Ensure the button scales proportionally */
        font-size: 16px; /* Slightly smaller text for the button */
        margin-top: 15px; /* Add margin below other content inside the container */
    }

    .hero .hero-image-container {
        overflow: visible; /* Ensure elements inside aren't cropped */
    }
    
    
}



/* Modal Styles */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 9999 !important;
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
    padding-top: 60px;
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
    max-width: 500px; /* Max width for the modal */
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    text-align: center;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.modal-header {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.modal-body {
    font-size: 1.2em;
}

.modal-footer {
    margin-top: 20px;
}

.modal-footer .btn {
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.modal-footer .btn:hover {
    background-color: #77e1fe;
}

/*******************************/
/******* CONTACT PAGE *******/
/*******************************/
.page-header {
    position: relative;
    margin-bottom: 45px;
    padding: 150px 0 90px 0;
    text-align: center;
    background: #D5B981;
}

.page-header h2 {
    position: relative;
    color: #1d2434;
    font-size: 60px;
    font-weight: 700;
}

.page-header a {
    position: relative;
    padding: 0 12px;
    font-size: 22px;
    color: #1d2434;
}

.page-header a:hover {
    color: #ffffff;
}

.page-header a::after {
    position: absolute;
    content: "/";
    width: 8px;
    height: 8px;
    top: -2px;
    right: -7px;
    text-align: center;
    color: #1d2434;
}

.page-header a:last-child::after {
    display: none;
}

@media (max-width: 767.98px) {
    .page-header h2 {
        font-size: 35px;
    }
    
    .page-header a {
        font-size: 18px;
    }
}


/*******************************/
/******* Section Header ********/
/*******************************/
.section-header {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    margin-bottom: 45px;
}

.section-header p {
    margin-bottom: 5px;
    position: relative;
    font-size: 16px;
    font-weight: 600;
}

.section-header h2 {
    margin: 0;
    position: relative;
    font-size: 50px;
    font-weight: 700;
}

@media (max-width: 767.98px) {
    .section-header h2 {
        font-size: 30px;
    }
}





/*******************************/
/******** Portfolio CSS ********/
/*******************************/
/* Portfolio Section Base */
/* Grid-based Portfolio Layout */
.portfolio .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive column layout */
    gap: 20px; /* Space between grid items */
}

.portfolio .portfolio-wrap {
    overflow: hidden; /* Ensure images stay clean */
    border-radius: 10px; /* Rounded edges for images */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); /* Soft shadow for style */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio .portfolio-wrap:hover {
    transform: translateY(-5px); /* Subtle lift on hover */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4); /* Elevated shadow on hover */
}

.portfolio .portfolio-wrap img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover; /* Ensures no distortion */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .portfolio {
        gap: 20px; /* Smaller gaps for tablets */
    }
}

@media (max-width: 576px) {
    .portfolio {
        grid-template-columns: 1fr; /* Single column layout */
        gap: 15px; /* Compact spacing */
    }
}

/*******************************/
/********* Contact CSS *********/
/*******************************/
/* Contact Section */
.contact {
    position: relative;
    width: 100%;
    margin: 45px 0;
    background: #1d2434;
}

/* Background Image on Larger Screen */
.contact .container-fluid {
    background: url(/img/index.png) left center no-repeat;
    background-size: contain;
}

/* Contact Form Styling */
.contact .contact-form {
    position: relative;
    padding: 90px 0 90px 45px;
    background: #1d2434;
}

.contact .contact-form h3 {
    color: #D5B981;
    font-size: 28px;
    margin-bottom: 30px;
}

/* Input Fields */
.contact .contact-form input,
.contact .contact-form textarea {
    padding: 15px 0;
    background: none;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid #D5B981;
    font-size: 20px;
    color: #D5B981;
}

.contact .contact-form textarea {
    height: 90px;
}

/* Datepicker Field for Selecting Appointment Date */
.contact .contact-form #appointment-date {
    display: block;
    padding: 15px 0;
    font-size: 20px;
    background: none;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid #D5B981;
    color: #D5B981;
}

.contact .contact-form #appointment-date:focus {
    border-color: #D5B981;
}

/* Styling for the time slots container */
.contact .contact-form .time-slots {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

/* Styling for individual time slots */
.contact .contact-form .time-slot {
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
}

/* Available time slot */
.contact .contact-form .time-slot.available {
    background-color: #116424;
    color: #fff;
}

/* Unavailable time slot */
.contact .contact-form .time-slot.unavailable {
    background-color: #6b171f;
    color: #fff;
    cursor: not-allowed;
}

/* Active (selected) time slot */
.contact .contact-form .time-slot.active {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    outline: 3px solid #D5B981;
}

/* Submit Button Styling */
.contact .contact-form .btn {
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #D5B981;
    background: none;
    border: 2px solid #D5B981;
    border-radius: 0;
    transition: 0.3s;
    width:215px;
    
  
}

.contact .contact-form .btn:hover {
    color: #1d2434;
    background: #D5B981;
}

/* Additional styling for the help text or validation errors */
.contact .help-block ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
.cancel-link {
    display: block;
    margin-top: 0; /* Remove any extra spacing */
    font-size: 16px; /* Match the font size of the button */
    font-weight: 600; /* Match the font weight of the button */
    letter-spacing: 1px; /* Match letter spacing of the button */
    color: #dc3545; /* Keep the red color */
    background: none; /* No background */
    border: 2px solid #dc3545; /* Same border size as the button */
    border-radius: 0; /* Match the button's border radius */
    padding: 15px 30px; /* Match the padding of the button */
    text-align: center; /* Center the text */
    text-decoration: none; /* Remove underline */
    transition: 0.3s; /* Smooth transitions for hover effects */
    width: fit-content; /* Automatically adjust width based on padding */
}
.cancel-link:hover {
    color: #1d2434; /* Match the hover text color to the button */
    background: #dc3545; /* Use red as the background on hover */
    border-color: #dc3545; /* Keep the border color red */
}
.contact-form .btn,
.cancel-link {
    min-width: 200px; /* Set a shared minimum width */
}
/* General Mobile Styles */

/* This is for all small screens */
/* Mobile Version Fix */

/* Mobile Version Fix */

/* For very small screens and larger phones (smaller than 576px) */
/* For very small screens (below 576px) */
/* General Styling for Mobile */
@media (max-width: 767px) {
    .contact .container-fluid {
        background: url(/img/index.png) left center no-repeat;
        background-size: cover;
    }

    .contact .contact-form {
        width: 90%; /* Adjust the form to take more space on mobile */
        margin: auto; /* Center form horizontally */
        padding: 40px 20px; /* Add internal padding */
        background: rgba(29, 36, 52, 0.9); /* Darker semi-transparent overlay for readability */
        border-radius: 8px; /* Slightly rounded corners */
    }

    .contact .contact-form input,
    .contact .contact-form textarea {
        font-size: 14px; /* Adjust font size for smaller screens */
        margin-bottom: 15px; /* Space between form fields */
    }

    .contact .contact-form .btn, .cancel-link {
        padding: 12px 25px;
        font-size: 14px;
        width: 215px;
    }
}

@media (max-width: 576px) {
  
  
    .contact .container-fluid {
        background: url(/img/index.png) center center no-repeat;
        background-size: cover; /* Cover the entire screen */
        padding: 15px;
    }
 


    .contact .contact-form {
        padding: 30px 15px;
        background: rgba(29, 36, 52, 0.9); /* Darker semi-transparent overlay for readability */
        border-radius: 8px; /* Slightly rounded corners */
    }

    .contact .contact-form input,
    .contact .contact-form textarea {
        font-size: 14px; /* Adjust font size for smaller screens */
        margin-bottom: 15px; /* Space between form fields */
        color: #FFFFFF; /* Make the input text color more visible on mobile */
    }

    .contact .contact-form input::placeholder,
    .contact .contact-form textarea::placeholder {
        color: #c2c2c2; /* Make the placeholder text color white on mobile */
    }

    .contact .contact-form label {
        color: #D5B981; /* Make the label text color visible on mobile */
    }

    .contact .contact-form h3 {
        color: #D5B981; /* Ensure the heading color is visible on mobile */
    }

    .contact .contact-form .btn, .cancel-link {
        padding: 10px 20px;
        font-size: 12px;
        width: 215px;
    }
 

}

/*******************************/
/******* Single Page CSS *******/
/*******************************/
.single {
    position: relative;
    width: 100%;
    padding: 45px 0 65px 0;
}

.single img {
    width: 100%;
    margin: 0 0 25px 0;
}

.single .table,
.single .list-group {
    margin-bottom: 30px;
}

.single .ul-group {
    padding: 0;
    list-style: none;
}

.single .ul-group li {
    margin-left: 2px;
}

.single .ul-group li::before {
    position: relative;
    content: "\f0da";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.single .ol-group {
    padding-left: 18px;
}



/*******************************/
/********* Footer CSS **********/
/*******************************/
.footer {
    position: relative;
    margin-top: 45px;
    padding-top: 90px;
    background: #1d2434;
}

.footer .footer-contact,
.footer .footer-link,
.footer .footer-newsletter {
    position: relative;
    margin-bottom: 45px;
    color: #999999;
}

.footer .footer-contact h2,
.footer .footer-link h2,
.footer .footer-newsletter h2{
    position: relative;
    margin-bottom: 30px;
    font-size: 22px;
    font-weight: 700;
    color: #D5B981;
}

.footer .footer-link a {
    display: block;
    margin-bottom: 10px;
    color: #999999;
    transition: .3s;
}

.footer .footer-link a::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .footer-link a:hover {
    color: #D5B981;
    letter-spacing: 1px;
}

.footer .footer-contact p i {
    width: 25px;
}

.footer .footer-social {
    position: relative;
    margin-top: 20px;
}

.footer .footer-social a {
    display: inline-block;
}

.footer .footer-social a i {
    margin-right: 15px;
    font-size: 18px;
    color: #D5B981;
}

.footer .footer-social a:last-child i {
    margin: 0;
}

.footer .footer-social a:hover i {
    color: #999999;
}



.footer .footer-newsletter .btn:hover {
    color: #D5B981;
    background: #1d2434;
}

.footer .copyright {
    padding: 0 30px;
}

.footer .copyright .row {
    background: linear-gradient(to bottom, #0a0a0a, #1c1c1c);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5); /* Shadow for depth */
    padding: 15px 0;
    padding-top: 25px;
    padding-bottom: 25px;
}

.footer .copyright p {
    margin: 0;
    color: #d6d2d2;
    font-size: 20px;
}

.footer .copyright .col-md-6:last-child p {
    text-align: right;
}

.footer .copyright p a {
    color: #917707;
    font-weight: 700;

}

.footer .copyright p a:hover {
    color: #D5B981;
}
/* Adjust map container for the footer */
/* General styling for the map in the footer */
.footer .footer-map {
    margin-top: -30px; /* Pull up the map for desktop view */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); /* Optional shadow */
    border-radius: 10px;
    height: 250px; /* Standard height */
    overflow: hidden; /* Prevent overflow edges */
}

/* Ensure the iframe fits perfectly */
.footer .footer-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Mobile Specific Adjustments */
@media (max-width: 768px) {
    .footer {
        text-align: left; /* Ensure text aligns well on mobile */
    }

    /* Map customization on mobile */
    .footer .footer-map {
        height: 120px; /* Smaller map height */
        width: 45%; /* Larger width relative to available space */
        float: right; /* Align to the right of the footer information */
        margin-top: 0; /* Remove offset on mobile */
    }

    .footer .footer-contact {
        width: 55%; /* Adjust width of contact section to share space with the map */
        margin-bottom: 15px;
        float: left;
    }

    .footer .footer-social {
        text-align: center;
        margin-top: 20px; /* Provide some spacing */
    }

    .footer .footer-contact h2,
    .footer .footer-contact p {
        font-size: 14px; /* Slightly smaller for mobile */
    }
}

/* Tablet adjustments for map and spacing */
@media (max-width: 991px) and (min-width: 769px) {
    .footer .footer-map {
        height: 200px;
        width: 100%; /* Ensure it spans full width in tablet view */
        margin-top: 15px;
    }
}
/* For very small devices (phones) */
@media (max-width: 576px) {
    .footer {
        text-align: left; /* Ensure text aligns well on mobile */
        padding-top: 45px; /* Reduce padding for smaller screens */
    }

    .footer .footer-contact,
    .footer .footer-link,
    .footer .footer-newsletter {
        margin-bottom: 30px; /* Reduce margin for smaller screens */
    }

    .footer .footer-contact h2,
    .footer .footer-link h2,
    .footer .footer-newsletter h2 {
        font-size: 18px; /* Smaller font size for headings */
    }

    .footer .footer-contact p,
    .footer .footer-link a {
        font-size: 14px; /* Smaller font size for text */
    }

    .footer .footer-social {
        text-align: center;
        margin-top: 20px; /* Provide some spacing */
    }

    .footer .footer-social a i {
        margin-right: 10px;
        font-size: 16px; /* Slightly smaller icons */
    }

    .footer .footer-map {
        height: 100px; /* Smaller map height */
        width: 100%; /* Full width for the map */
        margin-top: 15px; /* Adjust margin as needed */
    }

    .footer .footer-contact,
    .footer .footer-link,
    .footer .footer-newsletter {
        width: 100%; /* Full width for sections */
        float: none; /* Reset float */
    }

    .footer .footer-contact h2,
    .footer .footer-contact p {
        font-size: 14px; /* Slightly smaller for mobile */
    }

    .footer .footer-newsletter .btn {
        font-size: 14px; /* Adjust button font size */
        padding: 10px 20px; /* Adjust button padding */
    }

    .footer .copyright .row {
        text-align: center; /* Center align text */
        padding: 10px 0; /* Adjust padding */
    }

    .footer .copyright .col-md-6:last-child p {
        text-align: center; /* Center align text */
    }

    .footer .copyright p {
        font-size: 14px; /* Smaller font size */
    }
}
