/**
* Template Name: PhotoFolio
* Template URL: https://bootstrapmade.com/photofolio-bootstrap-photography-website-template/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Century Gothic", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Century Gothic", sans-serif;
  --nav-font: "Century Gothic", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: white; /* Background color for the entire website, including individual sections */
  --default-color: #fafafa; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #181245; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #27a776; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #1a1a1a; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-hover-color: #181245; /* Color applied to main nav menu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Background color for dropdown items */
  --nav-dropdown-color: #181245; /* Color for navigation links of dropdown items */
  --nav-dropdown-hover-color: #181245; /* Color applied to dropdown navigation links when hovered over */
}


/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #181245;
  --surface-color: #181245;
}

.dark-background {
  --background-color: #181245;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #181245;
  font-family: var(--heading-font);
}

/* PHP Email Form Messages */
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: #181245; /* Text color */
  background-color: white; /* Background color */
  padding: 10px 0; /* Reduced padding */
  transition: all 0.5s;
  z-index: 997;
  border-bottom: 1px solid #181245; /* Border color */
  width: 100%; /* Ensures header takes full width */
  box-sizing: border-box; /* Include padding in width */
}

.header .logo img {
  max-height: 30px; /* Smaller logo height for mobile */
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 20px; /* Smaller font size for mobile */
  margin: 0;
  font-weight: 400;
  color: #181245; /* Heading color */
}

.header .logo i {
  font-size: 18px; /* Smaller icon size for mobile */
  margin-right: 6px;
}

.header .header-social-links {
  padding-right: 15px;
}

.header .header-social-links {
  display: flex;
  gap: 10px; /* Reduced gap between icons */
  align-items: center;
}

.header .header-social-links a {
  color: #181245; /* Default color for all social links */
  background-color: transparent; /* Transparent background by default */
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 28px; /* Smaller width for uniformity */
  height: 28px; /* Smaller height for uniformity */
  border-radius: 40%; /* Make them circular */
  transition: background-color 0.3s, color 0.3s;
  font-size: 18px; /* Smaller icon size */
  border: 2px solid #181245; /* Border for all icons */
}

.header .header-social-links a:hover {
  background-color: #181245; /* Background changes to primary color on hover */
  color: white; /* Icons change to white on hover */
}

.header .header-social-links a i {
  line-height: 1;
}

/* Specific styling for WhatsApp to maintain uniform look */
.header .header-social-links a.whatsapp {
  background-color: transparent; /* Match the same style as others */
  color: #181245; /* WhatsApp icon color matches others */
}

.header .header-social-links a.whatsapp:hover {
  background-color: #181245; /* Hover effect for WhatsApp matches others */
  color: white; /* Icon changes to white on hover */
}

/* Media Queries for Responsiveness */
@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .logo h1 {
    font-size: 20px; /* Adjusted font size */
  }

  .header .logo i {
    font-size: 18px; /* Adjusted icon size */
  }

  .header .header-social-links {
    order: 2;
  }

  .header .header-social-links a {
    font-size: 14px; /* Adjusted font size */
  }

  .header .header-social-links {
    order: 2;
  }

  .header .navmenu {
    order: 3;
  }
}

/* Additional Media Query for Mobile Devices */
@media (max-width: 768px) {
  .header {
    flex-direction: column; /* Stack items vertically */
    padding: 5px 0; /* Reduced padding */
    align-items: stretch; /* Align items to fill the width */
  }

  .header .logo {
    margin-bottom: 10px; /* Add space below logo */
    text-align: center; /* Center the logo */
  }

  .header .navmenu {
    text-align: center; /* Center the nav menu */
    width: 100%; /* Full width */
    padding: 0; /* Remove any default padding */
    margin: 0; /* Remove any default margin */
  }

  .header .navmenu ul {
    flex-direction: column; /* Stack menu items vertically */
    padding: 0; /* Remove padding */
    margin: 0; /* Remove margin */
  }

  .header .navmenu ul li {
    margin: 5px 0; /* Space between menu items */
  }

  .header .header-social-links {
    justify-content: center; /* Center social icons */
    margin-top: 10px; /* Add space above social links */
  }

  /* Ensure no gaps on the right */
  .header .container-fluid {
    padding-left: 0; /* Remove left padding */
    padding-right: 0; /* Remove right padding */
    margin-left: 0; /* Remove left margin */
    margin-right: 0; /* Remove right margin */
  }
}

/* Reduce size for all elements on mobile */
@media (max-width: 576px) {
  .header .logo img {
    max-height: 28px; /* Further reduce logo height for very small screens */
  }

  .header .logo h1 {
    font-size: 18px; /* Further reduce font size for mobile */
  }

  .header .logo i {
    font-size: 16px; /* Further reduce icon size for mobile */
  }

  .header .header-social-links a {
    width: 24px; /* Smaller width for uniformity */
    height: 24px; /* Smaller height for uniformity */
    font-size: 16px; /* Further reduce icon size */
  }
}

.scrolled .header {
  border-color: color-mix(in srgb, white 90%, #181245 20%);
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 12px 10px;
    font-size: 13px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  /* Horizontal Dropdown with Columns */
  .navmenu .dropdown ul {
    margin: 0;
    padding: 5px; /* Decrease padding to reduce height */
    background: rgba(24, 18, 69, 0.8); /* Background color with increased transparency */
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns for dropdown items */
    gap: 10px; /* Increased space between columns and items */
    position: absolute;
    visibility: hidden;
    left: 50%; /* Center the dropdown horizontally */
    transform: translateX(-50%); /* Shift it back by half of its width */
    top: 100%; /* Dropdown below the parent */
    opacity: 0;
    transition: opacity 0.3s, visibility 0.3s, top 0.3s;
    border-radius: 4px;
    z-index: 99;
    max-width: 1200px; /* Increased dropdown width */
}

.navmenu .dropdown ul li {
    margin: 0; /* Remove extra margin */
    position: relative; /* Required for absolute positioning of the arrow */
}

.navmenu .dropdown ul a {
    padding: 4px 10px; /* Reduced padding for height adjustment (top/bottom padding decreased) */
    font-size: 14px; /* Slightly larger font size */
    text-transform: none;
    color: white; /* White text for contrast */
    display: block;
    background-color: transparent; /* Set to transparent */
    border-radius: 3px; /* Rounded corners for headings */
}

/* Add right arrow before each heading */
.navmenu .dropdown ul li a::before {
    content: '>'; /* Use '>' as the arrow */
    color: #ffffff; /* Arrow color */
    margin-right: 8px; /* Space between arrow and text */
    font-size: 14px; /* Size of the arrow */
}

.navmenu .dropdown ul a:hover,
.navmenu .dropdown ul .active:hover,
.navmenu .dropdown ul li:hover > a {
    color: #ffed99; /* Lighter hover color */
    background-color: rgba(42, 30, 138, 0.7); /* Darker shade on hover */
}

/* Show dropdown on hover */
.navmenu .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

/* Sub-dropdown positioning (for nested menus) */
.navmenu .dropdown .dropdown ul {
    left: 100%; /* Position sub-dropdown to the right */
    top: 0;
    visibility: hidden;
}

.navmenu .dropdown .dropdown:hover > ul {
    opacity: 1;
    visibility: visible;
}

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: #ffed99; /* Lighter hover color */
    background-color: #2a1e8a; /* Darker shade on hover */
  }

  /* Show dropdown on hover */
  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  /* Sub-dropdown positioning (for nested menus) */
  .navmenu .dropdown .dropdown ul {
    left: 100%; /* Position sub-dropdown to the right */
    top: 0;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    visibility: visible;
  }
}

/* Mobile - Keep dropdown vertical */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}




/* General Font Setting */




@media (max-width: 400px) {
    .text-overlay h1 {.navmenu {
  display: flex;
  align-items: center;
  background-color: var(--nav-background-color);
}

.navmenu .dropdown {
  position: relative;
  display: inline-block;
  margin-right: 20px;
}

.navmenu .dropdown ul {
  display: flex;
  flex-direction: row;
  position: absolute;
  top: 100%;
  left: 0;
  margin: 0;
  padding: 10px 0;
  background: var(--nav-dropdown-background-color);
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s, opacity 0.3s, transform 0.3s ease;
  border-radius: 4px;
  z-index: 99;
}

.navmenu .dropdown ul li {
  min-width: 150px;
  list-style: none;
}

.navmenu .dropdown ul a {
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 500;
  color: var(--nav-dropdown-color);
  text-decoration: none;
  transition: color 0.3s;
}

.navmenu .dropdown ul a:hover,
.navmenu .dropdown ul .active:hover,
.navmenu .dropdown ul li:hover > a {
  color: var(--nav-dropdown-hover-color);
  background-color: var(--nav-dropdown-hover-background);
}

.navmenu .dropdown:hover > ul {
  visibility: visible;
  opacity: 1;
  transform: translateY(10px);
}

.navmenu .dropdown .dropdown ul {
  position: absolute;
  top: 0;
  left: 100%;
  transform: translateX(0);
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s, opacity 0.3s, transform 0.3s;
}

.navmenu .dropdown .dropdown:hover > ul {
  visibility: visible;
  opacity: 1;
  transform: translateX(10px);
}

/* Optional Styling Tweaks for More Professional Look */
.navmenu .dropdown ul {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.navmenu .dropdown ul a {
  border-radius: 4px;
}

.navmenu .dropdown ul a:hover {
  background-color: var(--nav-hover-background-color);
}

.navmenu .dropdown ul li + li {
  margin-left: 10px;
}

        font-size: 1.5em; /* Smaller devices like phones */
    }

    .text-overlay h2 {
        font-size: 1em; /* Smaller devices like phones */
    }
}

/* Buttons for navigation */
button.prev, button.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    padding: 10px;
    cursor: pointer;
    z-index: 2;
    font-size: 2em;
}

button.prev {
    left: 10px; /* Position on the left */
}

button.next {
    right: 10px; /* Position on the right */
}

button.prev:hover, button.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}




/*--------------------------------------------------------------
# myGallery Section
--------------------------------------------------------------*/
/* General Styling  my code*/
body {
  font-family: 'Century Gothic', Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f5f5f5; /* Light background for contrast */
}

.gallery {
  padding: 60px 0;
}

/* Gallery Item Styling */
.gallery .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px; /* More pronounced rounded corners */
  margin: 0; /* Remove bottom margin */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

.gallery .gallery-item img {
  transition: transform 0.4s ease, filter 0.4s ease;
  border-radius: 15px; /* Match item rounding */
  width: 100%; /* Full width */
  height: auto; /* Maintain aspect ratio */
}

/* Hover Overlay Styles */
.gallery .gallery-overlay {
  position: absolute;
  bottom: -50%;
  left: 0;
  right: 0;
  height: 50%;
  background: rgba(24, 18, 69, 0.9); /* Increased opacity for better contrast */
  opacity: 0;
  transition: bottom 0.4s ease-in-out, opacity 0.4s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 0 0 15px 15px; /* Rounded corners at the bottom only */
}

.gallery .overlay-content {
  color: #ffffff; /* White text for contrast */
  font-size: 18px; /* Slightly larger font for visibility */
  padding: 10px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7); /* Added text shadow for readability */
}

.gallery .gallery-overlay a {
  color: #ffffff; /* White text for links */
  text-decoration: none;
  font-weight: bold; /* Emphasized link */
}

.gallery .gallery-item:hover img {
  transform: scale(1.1); /* Increased scale for hover effect */
  filter: brightness(0.85); /* Adjusted brightness for better hover effect */
}

.gallery .gallery-item:hover .gallery-overlay {
  bottom: 0;
  opacity: 1;
}

.gallery .gallery-item:hover .overlay-content {
  opacity: 1;
  transform: translateY(0);
}

/* Text Styling for Gallery Items */
.gallery .gallery-item h3 {
  text-align: center;
  font-weight: bold;
  color: #181245;
  margin: 20px 0 10px; /* Adjusted margins for better spacing */
}

/* Section Heading Styling */
.section-heading {
  text-align: center;
  margin-bottom: 40px; /* Increased bottom margin */
}

.section-heading h1 {
  font-weight: bold;
  font-size: 2.8rem; /* Larger heading for impact */
  color: #181245;
  margin: 0;
}

.section-heading .line {
  border: 0;
  height: 3px; /* Slightly thicker line */
  background: #181245;
  width: 60%; /* Wider line */
  margin: 20px auto;
}

/* Responsive Layout */
.row {
  display: flex;
  justify-content: center; /* Center items */
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
  margin: 0; /* Remove margin on the row */
  padding: 0; /* Remove padding on the row */
}

.col-xl-4, .col-lg-4, .col-md-6 {
  flex: 0 0 30%; /* Column width set to 30% */
  max-width: 26%; /* Max width set to 30% */
  padding: 0; /* Remove padding to eliminate gaps */
}

/* Responsive Padding */
.container-fluid {
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 768px) {
  .container-fluid {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (min-width: 992px) {
  .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}

/* Additional Media Queries for Small Screens */
@media (max-width: 768px) {
  .col-xl-4, .col-lg-4, .col-md-6 {
    flex: 0 0 45%; /* Make columns wider on smaller screens */
    max-width: 45%; /* Ensure each column is 45% width */
  }
}

@media (max-width: 576px) {
  .col-xl-4, .col-lg-4, .col-md-6 {
    flex: 0 0 100%; /* Make columns take full width on extra small screens */
    max-width: 100%; /* Ensure each column is 100% width */
  }
}



/*--------------------------------------------------------------
# News/Events
--------------------------------------------------------------*/
/* General Section Styling */
.news-events-section {
  padding: 40px 0;
  background-color: white;
}

/* Section Heading Styling */
.section-title {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  position: relative;
  margin-bottom: 20px;
  color: #181245;
  display: inline-block;
  padding: 0 20px; /* Padding around the title */
}

/* Lines before and after headings */
.section-title::before, .section-title::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 50px; /* Length of the line */
  height: 2px;
  background-color: #181245;
}

.section-title::before {
  left: -70px; /* Position before the title */
}

.section-title::after {
  right: -70px; /* Position after the title */
}

/* Responsive for mobile view */
@media (max-width: 576px) {
  .section-title::before, .section-title::after {
    width: 30px; /* Adjust line length for smaller screens */
    left: -40px; /* Position before the title */
    right: -40px; /* Position after the title */
  }

  .section-title {
    font-size: 1.5rem; /* Adjust heading font size for smaller screens */
  }
}

/* News Items Styling */
.news-items-container, .videos-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.news-item {
  margin-bottom: 10px; /* Reduced the margin-bottom */
  text-align: center;
}

.news-item img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.news-item h3 {
  color: #181245;
  margin-top: 5px; /* Reduced the margin-top */
  font-size: 1.2rem;
  margin-bottom: 5px; /* Reduced the margin-bottom */
}

.news-item p {
  color: #181245;
  font-size: 0.9rem;
}

.news-item .read-more {
  color: #181245;
  font-weight: bold;
  text-decoration: underline;
}

/* Divider Styling */
.divider-container {
  /* display: flex; */
  justify-content: center;
  align-items: center;
}

.divider {
  width: 2px;
  background-color: #181245;
  height: 100%;
}

/* Videos Section Styling */
.videos-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.video-item {
  margin-bottom: 10px; /* Reduced the margin-bottom */
  text-align: center;
}

.video-item iframe {
  width: 100%;
  height: auto;
  max-height: 180px; /* Adjust this height as needed */
  border-radius: 10px;
}

.video-item p {
  color: #181245;
  font-size: 1rem;
  margin-top: 5px; /* Reduced the margin-top */
}

/*--------------------------------------------------------------
# partners
--------------------------------------------------------------*/
/* Ensure the swiper takes full width */
.clients {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.clients .section-title {
  text-align: center;
  font-family: 'Century Gothic', sans-serif;
  color: #181245;
  margin-bottom: 40px;
  font-size: 2rem;
  font-weight: bold;
}

.clients-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.swiper-wrapper {
  display: flex;
  align-items: center;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  padding: 0;
  margin: 0;
  flex-shrink: 0;
}

.swiper-slide img {
  max-width: 90%; /* Ensure images scale nicely */
  height: auto;
  object-fit: contain;
  transition: none;
}

.swiper-button-prev,
.swiper-button-next {
  color: #181245;
  font-size: 2rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
}

.swiper-button-prev {
  left: 10px;
}

.swiper-button-next {
  right: 10px;
}

.swiper-pagination {
  display: none;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .swiper-slide {
    width: auto;
  }
}

@media (max-width: 576px) {
  .swiper-slide {
    width: auto;
    max-width: 100%; /* Ensure the slides take the full width of smaller screens */
  }

  .swiper-slide img {
    max-width: 80%; /* Scale down logos on very small devices */
  }
}

    

















/* newclientsection */
.clients-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px; /* Adjust the gap between logos */
  padding: 20px 0;
}

.client-item {
  flex: 1 1 100px; /* Set a smaller base width for the logos */
  max-width: 150px; /* Maximum width for larger screens */
}

.client-logo {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain; /* Ensures logos fit without distortion */
}

.section-heading {
  text-align: center;
  margin-bottom: 20px;
}

#clients {
  background-color: #f8f9fa; /* Light background color for the section */
  padding: 40px 0;
}

/* aboutmycode */

.about-us-section {
  background-color: #f8f9fa; /* Light background */
  padding: 80px 0; /* Increased padding for more breathing space */
}

.about-us-content h2 {
  color: #181245; /* Preferred heading color */
  font-family: 'Century Gothic', sans-serif; /* Applying Century Gothic font */
  font-size: 32px; /* Increasing the size of headings */
  font-weight: bold; /* Making the headings bold */
  margin-bottom: 20px; /* Adding more space below headings */
  text-transform: uppercase; /* Giving the headings a modern uppercase look */
}

.about-us-content p {
  color: #181245;
  font-size: 15px; /* Increasing the size of the paragraph text */
  line-height: 1.8; /* Adding line spacing for better readability */
  margin-bottom: 30px; /* More spacing below paragraphs for a clean look */
  font-family: 'Century Gothic', sans-serif; /* Applying the Century Gothic font */
  text-align: justify; /* Justifying the text */
  
}

/* Enhancing the logo section */
/* Enhancing the logo section */
/* Enhancing the logo section */
/* Container Styling */
.logo-container {
  position: relative;
  width: 100%;
  max-width: 450px;
  aspect-ratio: 1;
  border: 5px solid transparent;
  border-radius: 50%;
  padding: 10px;
  background: linear-gradient(45deg, #181245, #6a57d5); /* Gradient background */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* Center Logo (Static) */
.logo-center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30%;
  height: 30%;
  transform: translate(-50%, -50%);
  z-index: 10;
  border-radius: 50%;
  overflow: hidden;
  background: radial-gradient(circle, #ffffff, #e0e0e0); /* Subtle gradient */
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.7), inset 0 0 30px rgba(0, 0, 0, 0.1); /* Glowing effect */
}

.logo-center img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
}

/* Rotating Logo Container */
.logo-circular-container {
  position: relative;
  width: 100%;
  height: 100%;
  animation: rotate 12s linear infinite; /* Rotate container only */
  transform-origin: center;
}

/* Fixed Position Logos */
.logo-circular-item {
  position: absolute;
  width: 22%; /* Size for visibility */
  height: 22%;
  border-radius: 50%;
  background: radial-gradient(circle, #ffffff, #f3f3f3); /* Gradient background */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2), 0 0 12px rgba(106, 87, 213, 0.5); /* Shadow + Glow */
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, box-shadow 0.3s; /* Smooth hover effect */
}

/* Position each logo around the center without rotation */
.logo-item:nth-child(1) {
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
}
.logo-item:nth-child(2) {
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
}
.logo-item:nth-child(3) {
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
}
.logo-item:nth-child(4) {
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
}

/* Logo image styling */
.logo-circular-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s; /* Zoom effect on hover */
}

/* Glow effect on hover for logos */
.logo-circular-item:hover {
  transform: scale(1.1); /* Enlarge logo on hover */
  box-shadow: 0 0 20px rgba(106, 87, 213, 0.7), 0 0 10px rgba(0, 0, 0, 0.3); /* Enhanced glow on hover */
}

/* Circular rotation animation for the container only */
@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .logo-container {
    max-width: 300px;
  }

  .logo-center {
    width: 25%;
    height: 25%;
  }

  .logo-circular-item {
    width: 24%; /* Adjusted size for mobile screens */
    height: 24%;
  }
}

@media (max-width: 480px) {
  .logo-container {
    max-width: 200px;
  }

  .logo-center {
    width: 20%;
    height: 20%;
  }

  .logo-circular-item {
    width: 25%; /* Adjusted size for mobile screens */
    height: 25%;
  }
}

/* teammycode */
.team {
  background: #fff;
  padding: 60px 0;
}

.team .section-title p {
  font-family: 'Century Gothic', sans-serif;
  font-weight: bold;
  color: #181245;
  font-size: 24px;
  text-align: center;
}

.team .member {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.team .member .member-img {
  position: relative;
  overflow: hidden;
}

.team .member .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
}

.team .member .social a {
  transition: color 0.3s;
  color: #181245;
  margin: 0 3px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.8);
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.team .member .social a:hover {
  background: #181245;
  color: #fff;
}

.team .member .social i {
  font-size: 18px;
  line-height: 0;
}

.team .member .member-info {
  padding: 25px 15px;
}

.team .member .member-info h4 {
  font-family: 'Century Gothic', sans-serif;
  font-weight: bold;
  color: #181245;
  font-size: 20px;
}

.team .member .member-info span {
  font-family: 'Century Gothic', sans-serif;
  font-weight: normal;
  color: #181245;
  font-size: 14px;
}

.team .member:hover .social {
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
/* General Styling for the Counts Section */
.counts {
  padding: 60px 0;
  background-color: #181245; /* Dark background for the section */
  color: #ffffff; /* White text color */
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Styling for each counter box */
.counts .count-box {
  position: relative;
  background: #ffffff10; /* Transparent white background for the boxes */
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 30px;
  transition: all 0.4s ease-in-out;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); /* Light shadow for depth */
}

.counts .count-box:hover {
  background-color: #ffffff20; /* Slight change on hover */
  transform: translateY(-10px); /* Lift the box on hover */
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2); /* Enhanced shadow on hover */
}

/* Styling for the counter numbers */
.counts .purecounter {
  font-size: 56px; /* Large font size for the numbers */
  font-weight: bold;
  color: #ffffff; /* White for the numbers */
  display: block;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.counts .purecounter::after {
  content: "+"; /* Adding a '+' symbol to the numbers */
  font-size: 24px;
  color: white; /* Bright color for the '+' symbol */
  vertical-align: super;
  margin-left: 5px;
}

.counts .count-box:hover .purecounter {
  color: white; /* Change number color on hover */
}

/* Styling for the labels below the numbers */
.counts p {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

@media (max-width: 768px) {
  .counts .counters {
    flex-direction: column; /* Stack the counters on mobile */
  }
  
  .counts .count-box {
    width: 100%; /* Ensure full width on smaller screens */
  }
}

@media (min-width: 769px) {
  .counts .count-box {
    transition: background-color 0.3s ease, transform 0.3s ease; /* Smooth transitions */
  }
}


/*--------------------------------------------------------------
# busiinessfurther
--------------------------------------------------------------*/

.property-valuation-section {
  font-family: 'Century Gothic', sans-serif;
  color: #181245;
  padding: 60px 20px;
  background-color: #ffffff; /* White background for a clean look */
  line-height: 1.8; /* Improved readability */
}

.heading-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
  padding: 60px 0;
  background-color: #181245; /* Dark background for contrast */
  border-radius: 10px; /* Smooth corners for a modern look */
}

.heading-wrapper h2 {
  color: #ffffff;
  font-weight: 700;
  text-align: center;
  margin: 0;
  padding: 0 20px;
  font-size: 2.5rem; /* Larger font size for heading */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); /* Subtle shadow for depth */
}

.heading-wrapper .line {
  flex: 1;
  height: 2px;
  background-color: #ffffff; /* White line for a sharp contrast */
  margin: 0 30px;
}

.content-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
}

.text-content {
  flex: 1;
  max-width: 600px;
}

.text-content p {
  text-align: justify;
  color: #181245;
  margin-bottom: 25px;
  font-size: 1.1rem; /* Slightly larger for readability */
}

.text-content h3 {
  color: #181245;
  font-weight: 700;
  margin-top: 30px;
  border-left: 4px solid #181245; /* Decorative dark border to highlight subheading */
  padding-left: 10px;
  font-size: 1.5rem;
}

.text-content ul {
  margin-left: 20px;
  list-style-type: disc;
  color: #181245;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.image-content {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 600px;
}

.image-content img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0px 10px 30px rgba(24, 18, 69, 0.2); /* Darker shadow for depth */
  transition: transform 0.3s ease-in-out;
}

.image-content img:hover {
  transform: scale(1.05); /* Slight zoom on hover for interactivity */
}

/* Responsive Styles */
@media (max-width: 768px) {
  .heading-wrapper {
    padding: 40px 10px;
  }

  .heading-wrapper h2 {
    font-size: 2rem;
  }

  .content-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .text-content {
    margin-left: 0;
    max-width: 100%;
  }

  .image-content {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .heading-wrapper {
    padding: 20px 5px;
  }

  .heading-wrapper h2 {
    font-size: 1.5rem;
  }

  .heading-wrapper .line {
    margin: 0 10px;
  }

  .content-wrapper {
    gap: 20px;
  }

  .image-content img {
    max-height: 250px;
  }
}


/*--------------------------------------------------------------
# Main Content
--------------------------------------------------------------*/
main {
  margin-top: 0; /* Remove any top margin */
}

header {
  margin-bottom: 0; /* Ensure no margin at the bottom of the header */
}

#landing {
  margin-top: 0; /* Remove any top margin */
  padding-top: 0; /* Ensure there's no padding at the top */
}


/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  background-color: #ffffff;
  color: #181245;
  padding: 20px 0;
}

.footer .footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.footer .footer-contact {
  flex: 1;
  text-align: left;
}

.footer .address {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
}

.footer .phone-email {
  margin: 5px 0 0;
  font-size: 14px;
  font-weight: 300;
}

.footer .footer-copyright {
  flex: 2;
  text-align: center;
}

.footer .footer-social {
  flex: 1;
  text-align: right;
}

.footer .footer-social .social-links {
  display: flex;
  justify-content: flex-end;
}

.footer .footer-social .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #181245;
  font-size: 18px;
  color: #181245;
  margin: 0 8px;
  transition: background-color 0.3s, color 0.3s;
}

.footer .footer-social .social-links a:hover {
  background-color: #181245;
  color: #ffffff;
}

.footer .footer-bottom {
  text-align: center;
  font-size: 12px;
  margin-top: 10px;
}

.footer .credits a {
  color: #181245;
  text-decoration: none;
}

.footer .credits a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .footer .footer-content {
      flex-direction: column;
      align-items: center;
      text-align: center;
  }
  .footer .footer-contact, .footer .footer-copyright, .footer .footer-social {
      width: 100%;
      margin-bottom: 10px;
  }
  .footer .footer-social .social-links {
      justify-content: center;      
  }
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  display: flex;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  z-index: 99999;
}

#preloader:before,
#preloader:after {
  content: "";
  background-color: #181245;
  position: absolute;
  inset: 0;
  width: 50%;
  height: 100%;
  transition: all 0.3s ease 0s;
  z-index: -1;
}

#preloader:after {
  left: auto;
  right: 0;
}

#preloader .line {
  position: relative;
  overflow: hidden;
  margin: auto;
  width: 1px;
  height: 280px;
  transition: all 0.8s ease 0s;
}

#preloader .line:before {
  content: "";
  position: absolute;
  background-color: #ffffff;
  left: 0;
  top: 50%;
  width: 1px;
  height: 0%;
  transform: translateY(-50%);
  animation: lineincrease 1000ms ease-in-out 0s forwards;
}

#preloader .line:after {
  content: "";
  position: absolute;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  transform: translateY(-100%);
  animation: linemove 1200ms linear 0s infinite;
  animation-delay: 2000ms;
}

#preloader.loaded .line {
  opacity: 0;
  height: 100% !important;
}

#preloader.loaded .line:after {
  opacity: 0;
}

#preloader.loaded:before,
#preloader.loaded:after {
  animation: preloaderfinish 300ms ease-in-out 500ms forwards;
}

@keyframes lineincrease {
  0% {
    height: 0%;
  }

  100% {
    height: 100%;
  }
}

@keyframes linemove {
  0% {
    transform: translateY(200%);
  }

  100% {
    transform: translateY(-100%);
  }
}

@keyframes preloaderfinish {
  0% {
    width: 5 0%;
  }

  100% {
    width: 0%;
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
/* Scroll to Top Button */
.scroll-top {
  position: fixed;
  visibility: hidden; /* Initially hidden */
  opacity: 0; /* Fully transparent initially */
  right: 15px; /* Positioning from the right */
  bottom: -15px; /* Initially positioned out of view */
  z-index: 99999; /* High z-index to ensure it's on top */
  background-color: #181245; /* Dark blue background */
  width: 60px; /* Slightly larger button */
  height: 60px; /* Slightly larger button */
  border-radius: 50%; /* Circular button */
  display: flex; /* Center icon */
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5); /* Subtle shadow for depth */
  transition: all 0.4s ease-in-out; /* Smooth transition for visibility and position */
  border: 2px solid #ffffff; /* White border for contrast */
  background-image: radial-gradient(circle, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4)); /* Gradient background for depth */
}

.scroll-top i {
  font-size: 28px; /* Larger icon size */
  color: #ffffff; /* White icon color */
  line-height: 0; /* Remove extra space around the icon */
  transition: color 0.4s ease-in-out; /* Smooth color transition */
}

.scroll-top:hover {
  background-color: #2d2d72; /* Slightly lighter dark blue on hover */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.7); /* Stronger shadow on hover */
  transform: scale(1.1); /* Slightly enlarge the button on hover */
}

.scroll-top.active {
  visibility: visible; /* Make button visible */
  opacity: 1; /* Fully opaque */
  bottom: 15px; /* Position button in view */
  right: 15px; /* Ensure correct positioning */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.7); /* Stronger shadow when active */
}

.scroll-top::before {
  content: "↑"; /* Arrow indicator */
  font-size: 24px; /* Size of the arrow */
  color: #ffffff; /* Arrow color */
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 64px;
  font-weight: 400;
}

.page-title .heading .cta-btn {
  color: var(--default-color);
  background: var(--accent-color);
  font-weight: 400;
  font-size: 14px;
  display: inline-block;
  margin-top: 20px;
  padding: 12px 40px;
  border-radius: 4px;
  transition: 0.5s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-title .heading .cta-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color) 90%, white 10%);
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 100px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
/* .section-title {
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 400;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  position: relative;
  font-family: var(--default-font);
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}

.section-title p {
  color: var(--heading-color);
  margin: 0;
  font-size: 36px;
  font-weight: 400;
  font-family: var(--heading-font);
} */

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/


/* Global Reset */
* {
    margin: 0; /* Remove all margins */
    padding: 0; /* Remove all paddings */
    box-sizing: border-box; /* Include padding and border in element's total width and height */

}

body {
    font-family: 'Century Gothic', sans-serif;
}

nav {
    /* Add any specific styling for your navbar here */
    position: relative; /* Ensure it layers properly */
    z-index: 10; /* Keep it above other content */
}

#hero {
    position: relative;
    width: 100%;
    /* height: 100vh; Full viewport height */
    overflow: hidden; /* Hide overflow for scrolling images */
    padding-top: -10px;
    margin-top: -60px;
}

.carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.slides {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.slide {
    flex: 1 0 100%; /* Each slide takes full width */
    position: relative;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Show full image */
}

/* Responsive Media Queries */
@media (max-width: 1200px) {
    #hero {
        height: 80vh; /* Adjust height for larger devices */
        margin-top: -238px;
    }
}

@media (max-width: 992px) {
    #hero {
        height: 75vh; /* Adjust height for tablets */
    }
}

@media (max-width: 768px) {
    #hero {
        height: 85vh; /* Increase height for small tablets */
    }
    .slide img {
        max-height: 90%; /* Allow image to fill most of the height */
        object-fit: contain; /* Show full image */
    }
}

@media (max-width: 576px) {
    #hero {
        height: 80vh; /* Reduce height for smaller screens */
    }
    .slide img {
        max-height: 90%; /* Allow images to be taller */
        object-fit: contain; /* Ensure full image visibility */
    }
}

@media (max-width: 400px) {
    #hero {
        height: 75vh; /* Further reduce height for very small devices */
    }
    .slide img {
        max-height: 100%; /* Keep the images larger */
        object-fit: contain; /* Maintain full visibility */
    }
}

/* Styles for the Underlying Section */
#under-section {
    margin: 0; /* Remove any margin */
    padding: 0; /* Remove any padding */
}



/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  padding: 50px 0;
  /* background: linear-gradient(135deg, #f8f9fa 0%, #e1e5f2 100%); */
  border-top: 5px solid #181245;
}

.testimonials .testimonial-item {
  background-color: #ffffff;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  padding: 30px;
  margin: 40px 20px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 15px;
  position: relative;
}

.testimonials .testimonial-item:hover {
  transform: scale(1.05);
  box-shadow: 0px 15px 40px rgba(0, 0, 0, 0.15);
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
  text-align: center;
}

.testimonials .testimonial-item .stars i {
  color: #f4d03f;
  margin: 0 3px;
  font-size: 14px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 20px auto;
  transition: transform 0.3s ease;
}

.testimonials .testimonial-item:hover .testimonial-img {
  transform: scale(1.1);
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: 700;
  color: #181245;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #888888;
  margin-bottom: 15px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  color: #181245;
  margin: 0 auto 20px auto;
  line-height: 1.5;
  text-align: justify;
  font-size: 14px;
  max-width: 90%;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #181245;
  opacity: 1;
  transition: background-color 0.3s ease;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #f4d03f;
}

.testimonials .swiper-slide {
  opacity: 0.4;
  transition: opacity 0.3s ease;
}

.testimonials .swiper-slide-active {
  opacity: 1;
  transform: scale(1.05);
}

@media (max-width: 1199px) {
  .testimonials .testimonial-item {
      margin: 25px 15px;
  }
}

@media (min-width: 1200px) {
  .testimonials .swiper-slide-next {
      opacity: 1;
      transform: scale(1.08);
  }
}

/* Gradient overlay for a decorative effect */
.testimonials .testimonial-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(241, 241, 241, 0.1), rgba(217, 217, 217, 0.05));
  z-index: -1;
  border-radius: 15px;
}

/*--------------------------------------------------------------
# Gallery Details Section
--------------------------------------------------------------*/
/* General Styles */
body {
  font-family: 'Century Gothic', Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.gallery {
  padding: 60px 0;
  display: flex;
  justify-content: center; /* Center the entire gallery section */
}

.gallery-wrapper {
  display: flex;
  gap: 20px; /* Adjusted gap between boxes */
  justify-content: center; /* Center the items inside the wrapper */
  flex-wrap: wrap; /* Allow items to wrap to the next line if necessary */
  max-width: 1200px; /* Adjust for a more centralized gallery */
  padding: 0 20px; /* Add some padding on the sides for balance */
}

/* Gallery Item Styling */
.gallery .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  width: 300px; /* Keep the fixed width */
  margin-bottom: 30px;
  box-sizing: border-box; /* Include padding and borders in the width */
}

.gallery .gallery-item img {
  transition: transform 0.4s ease, filter 0.4s ease;
  border-radius: 10px;
  width: 100%;
  height: auto;
}

/* Hover Overlay Styles */
.gallery .gallery-overlay {
  position: absolute;
  bottom: -50%;
  left: 0;
  right: 0;
  height: 50%;
  background: rgba(24, 18, 69, 0.8);
  opacity: 0;
  transition: bottom 0.4s ease-in-out, opacity 0.4s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 0 0 10px 10px;
}

.gallery .overlay-content {
  color: #fff;
  font-size: 14px;
  padding: 10px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.gallery .gallery-overlay a {
  color: #fff;
  text-decoration: none;
}

.gallery .gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(0.8);
}

.gallery .gallery-item:hover .gallery-overlay {
  bottom: 0;
  opacity: 1;
}

.gallery .gallery-item:hover .overlay-content {
  opacity: 1;
  transform: translateY(0);
}

/* Text Styling for Gallery Items */
.gallery .gallery-item h3 {
  text-align: center;
  font-weight: bold;
  color: #181245;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 18px;
}

/* Section Heading Styling */
.section-heading {
  text-align: center;
  margin-bottom: 30px;
}

.section-heading h1 {
  font-weight: bold;
  font-size: 2rem;
  color: #181245;
  margin: 0;
}

.section-heading .line {
  border: 0;
  height: 2px;
  background: #181245;
  width: 50%;
  margin: 20px auto;
}

/* Responsive Layout Adjustments */
@media (max-width: 991px) {
  .gallery-wrapper {
    gap: 15px; /* Reduce the gap slightly for smaller screens */
  }
  
  .gallery .gallery-item {
    width: calc(50% - 15px); /* Two items in a row for medium screens */
  }
}

@media (max-width: 768px) {
  .gallery .gallery-item {
    width: calc(100% - 20px); /* One item per row for small screens */
  }
}
@media (max-width: 768px) {
  #gallery {
    margin-top: -200px !important;
  }
}


/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
/* .services .service-item {
  background-color: var(--surface-color);
  padding: 50px 30px;
  transition: all 0.3s ease-in-out;
  height: 100%;
  position: relative;
  z-index: 1;
}

.services .service-item:before {
  content: "";
  position: absolute;
  background: var(--accent-color);
  inset: 100% 0 0 0;
  transition: all 0.3s;
  z-index: -1;
}

.services .service-item .icon {
  margin-bottom: 15px;
}

.services .service-item .icon i {
  color: var(--default-color);
  background-color: var(--accent-color);
  font-size: 24px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: ease-in-out 0.3s;
}

.services .service-item h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
  font-family: var(--default-font);
}

.services .service-item h4 a {
  color: var(--heading-color);
  transition: ease-in-out 0.3s;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
  transition: ease-in-out 0.3s;
}

.services .service-item:hover h4 a,
.services .service-item:hover p {
  color: var(--default-color);
}

.services .service-item:hover i {
  color: var(--accent-color);
  background-color: var(--default-color);
}

.services .service-item:hover:before {
  background: var(--accent-color);
  inset: 0;
  border-radius: 0px;
} */

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
/* .pricing .pricing-item {
  border-bottom: 1px dashed color-mix(in srgb, var(--default-color), transparent 60%);
  width: 100%;
  height: 100%;
  padding: 0 0 15px 0;
}

.pricing .pricing-item h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

.pricing .pricing-item h4 {
  margin: 0;
  font-size: 18px;
  color: var(--accent-color);
} */

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-wrap {
  margin-bottom: 40px;
  padding: 20px;
  background-color: #f9f9f9; /* Light background for a polished look */
  border-radius: 10px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
}

.contact .info-item {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  transition: transform 0.3s ease-in-out;
}
    
.contact .info-item:hover {
  transform: scale(1.05); /* Slight scale effect on hover */
}

.contact .info-item i {
  font-size: 22px;
  color: #181245;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  border: 2px solid #181245;
  margin-right: 20px;
  background-color: #ffffff;
}

.contact .info-item h3 {
  font-size: 20px;
  font-weight: 700;
  font-family: 'Century Gothic', sans-serif;
  color: #181245;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px; /* Enhanced typography */
}

.contact .info-item p {
  font-size: 15px;
  color: #181245;
  margin: 0;
}

.contact .info-item:hover i {
  background: #181245;
  color: #ffffff;
  transform: rotate(360deg); /* Add rotation effect on hover */
}

.styled-email-form input[type=text],
.styled-email-form input[type=email],
.styled-email-form textarea {
  font-size: 16px;
  padding: 12px 20px;
  border-radius: 6px;
  background-color: #ffffff;
  color: #181245;
  border: 1px solid #181245;
  transition: border-color 0.3s ease;
}

.styled-email-form input[type=text]:focus,
.styled-email-form input[type=email]:focus,
.styled-email-form textarea:focus {
  border-color: #ff4500; /* Bright color on focus for visibility */
}

.styled-email-form input[type=text]::placeholder,
.styled-email-form input[type=email]::placeholder,
.styled-email-form textarea::placeholder {
  color: #b0b0b0;
}

.styled-email-form button[type=submit] {
  color: #ffffff;
  background: #181245;
  font-weight: 600;
  font-size: 16px;
  display: inline-block;
  margin-top: 25px;
  padding: 15px 45px;
  border-radius: 6px;
  border: 2px solid transparent;
  transition: background 0.3s, border-color 0.3s;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.styled-email-form button[type=submit]:hover {
  background-color: #ffffff;
  color: #181245;
  border-color: #181245;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); /* Enhanced hover shadow */
}

.styled-email-form button[type=submit]:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(24, 18, 69, 0.3); /* Focus outline */
}
.map-container {
  position: relative;
  width: 100%;
  max-width: 1200px;  /* Adjust the width as per your preference */
  margin: 0 auto;  /* Centers the map container */
  padding: 20px;
  background-color: white; /* Background color to match your theme */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Soft shadow for a professional look */
  border-radius: 10px; /* Rounded corners for a modern look */
}

.map-container iframe {
  border-radius: 10px; /* Matches the container's rounded corners */
  border: 2px solid #181245; /* Adds a border matching your color scheme */
}

/* Optional: Add hover effect for more interactivity */
.map-container:hover {
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15); /* Slightly stronger shadow on hover */
  transform: scale(1.01); /* Slight zoom effect */
  transition: all 0.3s ease-in-out; /* Smooth transition */
}

/* Global Styling */
body {
  margin: 0;
  padding: 0;
  font-family: 'Century Gothic', sans-serif;
  background-color: #ffffff;
}

/* Section Wrapper */
.section-wrapper {
  margin-bottom: 50px;
  padding: 60px 40px;
  border-radius: 15px;
  background-color: #ffffff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  border-left: 4px solid #181245;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-left 0.3s ease;
}

.section-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
  border-left: 6px solid #181245;
}

.section-wrapper h2 {
  font-size: 24px;
  color: #181245;
  margin-bottom: 20px;
  font-weight: 600;
}

.section-wrapper p {
  font-size: 16px;
  color: #181245;
  line-height: 1.6;
}


/* Section Title */


/* Image Item Styling */
.image-item {
  position: relative;
  background-color: #f0f0f0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0px 6px 14px rgba(24, 18, 69, 0.15);
  border: 2px solid transparent;
  transition: transform 0.3s ease-in-out, border-color 0.3s;
}

.image-item:hover {
  transform: scale(1.05);
  border-color: #181245;
  box-shadow: 0px 10px 20px rgba(24, 18, 69, 0.3);
}

/* Image Styling */
.image-item img {
  width: 100%;
  height: auto;
  border-radius: 12px 12px 0 0;
  transition: transform 0.3s ease-in-out;
}

.image-item:hover img {
  transform: scale(1.1);
}

/* Image Caption Styling */
.image-caption {
  text-align: center;
  color: #fff;
  background-color: #181245;
  padding: 14px 0;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 1px;
  border-radius: 0 0 12px 12px;
  transition: background-color 0.3s;
}

.image-item:hover .image-caption {
  background-color: #1f2d63;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .section-title {
      font-size: 32px;
  }
}

@media (max-width: 768px) {
  .section-title {
      font-size: 28px;
  }

  .image-grid {
      gap: 20px;
  }
}

@media (max-width: 480px) {
  .section-title {
      font-size: 24px;
  }

  .image-item {
      width: 100%;
  }
}


}

/* eventsmyyyy */
/* Reset */
/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  color: white; /* Set text color to white */
  padding: 20px;
  line-height: 1.6;
}

/* Main Section */
.activities-section {
  width: 100%;
  min-height: 100vh; /* Full height */
  /* background-color: #181245; Set the section background color */
  padding: 20px 0; /* Top and bottom padding */
}

/* Section Title */
.section-title {
  font-size: 28px;
  font-weight: bold;
  color: #181245;
  margin: 20px 0;
  text-align: left; /* Align titles to the left */
  text-transform: uppercase;
  border-bottom: 2px solid #fff; /* White border */
  padding-bottom: 10px;
}

/* Image Grid */
.image-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 15px;
}

.image-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-item img {
  width: 100%;
  height: 300px; /* Set a fixed height for images */
  object-fit: cover; /* Ensure images cover the item space */
  display: block;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.image-item:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.image-caption {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 8px 12px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.image-caption:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Media Queries */
@media (min-width: 400px) {
  .image-grid {
    grid-template-columns: repeat(1, 1fr); /* Small screens: 1 column */
  }
}

@media (min-width: 500px) {
  .image-grid {
    grid-template-columns: repeat(2, 1fr); /* Large mobile screens: 2 columns */
  }
}

@media (min-width: 768px) {
  .image-grid {
    grid-template-columns: repeat(3, 1fr); /* Tablet screens: 3 columns */
  }
}

@media (min-width: 1024px) {
  .image-grid {
    grid-template-columns: repeat(4, 1fr); /* Desktop screens: 4 columns */
  }
}
