/* FONTS */
@import url(../css/clash-display.css);

/* VARIABLES */
:root {
    --c-dark: #212529;
    --c-brand: #4e57d4;
    --c-brand-light: #6970dd;
    --c-brand-rgb: 78, 87, 212;
    --c-body: #727272;
    --font-base: "ClashDisplay", sans-serif;
    --box-shadow: 0px 15px 25px rgba(0,0,0,0.08);
    --transition: all 0.5s ease;
}

/* RESET & HELPERS */
body {
    font-family: var(--font-base);
    line-height: 1.7;
    color: var(--c-body);
}

h1, h2, h3,h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-weight: 600;
    color: var(--c-dark);
}

a {
    text-decoration: none;
    color: var(--c-brand);
    transition: var(--transition);
}

a:hover {
    color: var(--c-brand-light);
}

img {
    max-width: 100%;
    height: auto;
}

.section-padding {
    padding-top: 140px;
    padding-bottom: 140px;
}

.theme-shadow {
    box-shadow: var(--box-shadow);
}

/* IMAGE ZOOM */
.image-zoom {
    position: relative;
    /* overflow: hidden; */
}

.image-zoom-wrapper {
    overflow: hidden;
    position: relative;
}

.image-zoom-wrapper img{
     transition: var(--transition);
}

.image-zoom:hover .image-zoom-wrapper img {
    transform: scale(1.1);
}


/* NAVBAR */
/* Navbar styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    padding: 10px 20px;
    height: 85px;  /* Set a fixed height for the navbar */
}

/* Logo styles */
.logo img {
    width: 80px;    /* Set the width of the logo */
    height: auto;    /* Ensure the height is adjusted automatically */
}

/* Navigation links styling */
.nav-links {
    list-style-type: none;
    display: flex;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    padding: 10px;
    transition: background-color 0.3s;
}

.nav-links a:hover {
    background-color: #555;
    border-radius: 5px;
}
/* Text next to the logo */
.logo-text {
    color: white;         /* Set text color to white */
    font-size: 20px;      /* Set font size */
    /*font-weight: bold;Make the text bold */
    margin-left: 10px;    /* Space between logo and text */
}

/* BTN */
.btn {
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 0;
    padding: 10px 24px;
}

.btn-brand {
    background-color: green; /* Set button background color to green */
    color: white; /* Set text color to white for contrast */
    border: none; /* Optional: Remove any border */
    padding: 10px 20px; /* Optional: Adjust padding */
    border-radius: 5px; /* Optional: Rounded corners */
    text-decoration: none; /* Optional: Remove underline from links */
}

.btn-brand:hover {
    background-color: #212529;
    border-color: var(--c-brand-light);
    color: white;
}


/* HERO */
#hero {
    background: linear-gradient(rgba(var(--c-brand-rgb), 0.4), rgba(var(--c-brand-rgb), 0.5)), url(../images/939.png);
    background-position: center;
    background-size: cover;
}

.custom-h5 {
    font-size: 18px; /* Adjust text size as needed */
    line-height: 1.9; /* Adjust line height for readability */
    font-family: Arial; /* Example: Define font family */
    color: #ffffff; /* Example: Set text color */
    margin-top: 20px; /* Example: Adjust top margin */
    margin-bottom: 20px; /* Example: Adjust bottom margin */
    padding: 20px; /* Example: Add padding inside the element */
    background-color: rgba(0, 0, 0, 0.5); /* Example: Add background color with opacity */
    border-radius: 5px; /* Example: Add rounded corners */
    text-align: center; /* Example: Justify text for better alignment */
    font-weight: normal;
    text-indent: 30px; /* Indent for the first line */
    padding-left: 30px; /* Additional padding for the whole block */
}

.custom-h5:hover {
    opacity: 0.8; /* Example: Reduce opacity on hover */
    transform: scale(1.05); /* Example: Scale up on hover */
    transition: opacity 0.3s, transform 0.3s; /* Example: Smooth transition */
}


/* SECTION TITLE */
.section-title {
    margin-bottom: 60px;
}

.section-title .line {
    width: 60px;
    height: 4px;
    background-color: var(--c-brand);
    margin: 16px auto 24px auto;
}

.section-title p {
    width: 80%;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-indent: 30px;
}


/* ICONBOX */
.iconbox {
    width: 70px;
    height: 70px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: green;
    font-size: 34px;
    flex: none;
}

/* SERVICE */
.service {
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.service::after {
    content: "";
    width: 40px;
    height: 40px;
    background: green;
    position: absolute;
    bottom: 0;
    right: 0;
    transition: var(--transition);
}


.service:hover::after {
    width: 100%;
    height: 100%;
    background: #212529;
    z-index: -1;
}

.service:hover h5,
.service:hover p {
    color: white;
}

.service:hover .iconbox {
    background-color: rgba(255,255,255,0.2);
    color: white;
}

/* COUNTER */
#counter {
    background: linear-gradient(rgba(var(--c-brand-rgb), 0.3), rgba(var(--c-brand-rgb), 0.3)), url(../images/bn.jpg);
    background-position: center;
    background-size: cover;
}


/* TEAM MEMBER */
.team-member {
    text-align: center; /* Center align the content */
    margin-bottom: 30px; /* Space between team members */
    display: flex; /* Use flexbox */
    flex-direction: column; /* Align items in a column */
    align-items: center; /* Center align items horizontally */
}

.team-member-content {
    background-color: #333; /* Background color for the content */
    padding: 20px; /* Padding inside the content */
    border-radius: 10px; /* Rounded corners */
    margin-top: 20px; /* Space between the image and the content */
    opacity: 0; /* Hide content by default */
    transition: opacity 0.3s ease; /* Smooth transition for opacity */
}

.team-member:hover .team-member-content {
    opacity: 1; /* Show content on hover */
}

.team-member-content h4 {
    margin-bottom: 10px; /* Space below the name */
    font-size: 20px; /* Font size for the name */
    color: #fff; /* White color for the name */
}

.team-member-content p {
    font-size: 14px; /* Font size for the role description */
    margin-bottom: 0; /* Remove default margin */
    color: #fff; /* White color for description */
}

/* Image Container */
.image-zoom-wrapper {
    display: block; /* Ensure the container wraps around the image */
    overflow: hidden; /* Hide overflow to prevent image spillover */
    border-radius: 50%; /* Make it a perfect circle */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Shadow effect */
    transition: transform 0.3s ease; /* Smooth transition for zoom effect */
    margin-bottom: 20px; /* Space between image and content */
}

.image-zoom-wrapper:hover {
    transform: scale(1.1); /* Zoom effect on hover */
}

.image-zoom-wrapper img {
    display: block; /* Ensure the image behaves like a block element */
    width: 100%; /* Ensure the image fills the container */
    height: auto; /* Maintain aspect ratio */
}

.custom-image-container {
    width: 200px; /* Size of the circle */
    height: 200px; /* Size of the circle */
}

/* CONTACT */
#contact {
    position: relative;
    z-index: 2;
}

#contact::after {
    content: "";
    width: 100%;
    height: 70%;
    background: linear-gradient(rgba(var(--c-brand-rgb), 0.1), rgba(var(--c-brand-rgb), 0.1)), url(../images/bk2.jpg);
    background-position: center;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

#contact .form-control {
    border-radius: 0;
}

#contact .form-control:focus {
    box-shadow: none;
    border-color: var(--c-brand);
}

/* General Footer Styling */
footer.bg-dark {
    background-color: #1e1e1e;
    color: #fff;
    padding-top: 50px;
    padding-bottom: 40px;
  }
  
  footer .footer-top {
    border-bottom: 1px solid #333;
  }
  
  footer .footer-top .container {
    max-width: 1140px;
  }
  
  footer h5 {
    font-size: 1.25rem;
    font-weight: 600;
    text-transform: uppercase;
  }
  
  footer .line {
    width: 50px;
    height: 3px;
    background-color: #ff5722;
    margin: 10px 0;
  }
  
  footer .footer-top p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #bbb;
  }
  
  footer .footer-top ul {
    padding-left: 0;
    list-style: none;
  }
  
  footer .footer-top ul li {
    margin-bottom: 8px;
  }
  
  footer .footer-top ul li a {
    color: #bbb;
    font-size: 0.95rem;
    transition: color 0.3s ease-in-out;
  }
  
  footer .footer-top ul li a:hover {
    color: #ff5722;
  }
  
  footer .social-icons a {
    color: #fff;
    margin-right: 15px;
    font-size: 1.4rem;
    transition: color 0.3s ease-in-out;
  }
  
  footer .social-icons a:hover {
    color: #ff5722;
  }
  
  /* Footer Bottom */
  footer .footer-bottom {
    background-color: #121212;
    padding-top: 15px;
    padding-bottom: 15px;
  }
  
  footer .footer-bottom p {
    color: #bbb;
    font-size: 0.9rem;
  }
  
  footer .footer-bottom .col-auto {
    display: flex;
    align-items: center;
  }
  
  footer .footer-bottom .col-auto p {
    margin: 0;
  }
  
  /* Responsive Design */
  @media (max-width: 991px) {
    footer .footer-top .row {
      flex-direction: column;
      align-items: center;
    }
  
    footer .footer-top .col-lg-3 {
      width: 100%;
      margin-bottom: 30px;
    }
  
    footer .footer-bottom {
      text-align: center;
    }
  }
  
  @media (max-width: 767px) {
    footer h5 {
      font-size: 1.1rem;
    }
  
    footer .social-icons a {
      font-size: 1.2rem;
      margin-right: 10px;
    }
  
    footer .footer-top p {
      font-size: 0.9rem;
    }
  
    footer .footer-bottom p {
      font-size: 0.8rem;
    }
  }
  
