/*--------------Style.css --------------*/
/*----------  Start of
  Unified UI CSS for Kamal Ahmed & Co.
 ------------------------------------------------------------------------------ */

:root {
  --white-color: #ffffff;/* Custom color define by Omega*/
  --primary-color: #012366;/* primary color */
  --secondary-color: #755600;/* secondary color from brand book*/
  --section-bg-color:  #71d9f3;/* secondary color from brand book*/
  --custom-btn-bg-color: #e1ba87;/* secondary color from brand book*/
  --site-footer-bg-color: #c6c6c6;/* secondary color from brand book*/
  --custom-btn-bg-hover-color: #0b4b03;/* secondary color from brand book*/
  --dark-color: #101010;/* secondary color from brand book*/
  --p-color: #525151;/* Custom color define by Omega*/
  --border-color: #b8babb; /* Custom color define by Omega*/
  --page-background-color: #282727; /* Custom color define by Omega*/
  --map-color-green:#77bfc8;/* Custom color define by Omega*/
  --danger-color:#df0000;/* Custom color define by Omega*/
  --off-orange-color:#f7c873;/* Custom color define by Omega*/
  
  --h1-font-size: 52px;
  --h2-font-size: 42px;
  --h3-font-size: 36px;
  --h4-font-size: 28px;
  --h5-font-size: 24px;
  --h6-font-size: 18px;
  --p-font-size: 16px;
  --btn-font-size: 16px;
  --copyright-font-size: 10px;

  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  --soft-shadow: 0 8px 30px rgba(0,0,0,0.35);
  --accent: linear-gradient(135deg,#ff9a9e,#fad0c4);

  font-family: 'Times New Roman', Times, serif;
}





html,
body {
  height: 100%;
  overflow-x: hidden;
  max-width: 100%;
  margin: 0;
  padding: 0;
}


body {
 
  letter-spacing: normal;
  word-spacing: normal;
  min-height: 100vh;
  overflow-y: scroll;
  /*background-color: var(--page-background-color); */
}


/* Ensure no element causes horizontal overflow */

* { 
  box-sizing: border-box; 
  margin:0; 
  padding:0; 
}

/* ----------------------Removing Default Value from the Bootstrap--------------*/
.container,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    max-width: 100%;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
}


/*---------------------------------------
  TYPOGRAPHY             
-----------------------------------------*/

/* --------- Font Size & Color ---------*/

h1,
h2,
h3 {
  font-weight: var(--font-weight-semibold);
  letter-spacing: -1px;
}

h1 {
  font-size: var(--h1-font-size);
  font-weight: var(--font-weight-bold);
  letter-spacing: -2px;
}

h2 {
  font-size: var(--h2-font-size);
  letter-spacing: -2px;
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
}

h6 {
  font-size: var(--h6-font-size);
}

h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
  line-height: 1.6;
}

/* Reduce line-height for small screens */
@media (max-width: 640px) {
  p {
    line-height: 1.2; /* Adjust to reduce spacing */
  }
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

ol li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

a,
button {
  touch-action: manipulation;
  text-decoration: none;
  transition: all 0.3s;
}


/*------Reducing the Spacer and Other in the small screen -------------*/

@media only screen and (max-width: 1000px) {
  .wp-block-spacer {
    height: 0 !important;
    /* Sets the height to 0 on small screens */
    margin: 0 !important;
    /* Removes any margin */
  }

}

/* Mobile: stack columns */
@media (max-width: 640px) {
  .wp-block-columns {
    flex-direction: column;
    height: auto;
  }
  .wp-block-columns > .wp-block-column {
    flex: 0 0 100% !important;
    max-width: 100%;
    height: 300px;
  }

  /* Reduce line spacing for <br> on small screens */
  p br {
    line-height: 0.5; /* Adjust to reduce vertical space */
  }
 .bodoni-subheading {
    letter-spacing: .1em;
  }
}

/* ---------------------------------------------------------------------------
  GENERAL STYLES
/*--------------------------------------------- General Styles --------------*/
.section-padding {
  padding-top: 50px;
  padding-bottom: 20px;
}

.container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

----------------------------------------*/
.page-wrap {
  margin: 6vh 3vw 3vh 3vw;
  padding-top: 5vh;
  padding-bottom: 3vh;
}

@media (max-width: 640px) {
  .page-wrap {
    margin: 1vh 1vw;
    padding:1vh 1vh;
  }
}
/* ---------------------------------------------------------------------------
  CUSTOM CLASSES
/*--------------------------------------------- General Styles --------------*/

/* Site Title and tagline -------------------------------------------*/
.site-title {
  font-size: 1.5rem; 
  margin: 0; 
  font-family: 'Times New Roman', Times, serif;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0px;
  color: var(--white-color);
}

.site-tagline {
  font-size: 1rem; 
  margin: 0; 
  opacity: 0.8; 
  color: var(--white-color);
}

/* Some text outline styles */
.hollow-text_w {
 
  color: transparent;
  /* Makes the inside of the text transparent */
  -webkit-text-stroke: 1px var(--white-color);
  /* Creates the outline */
}

.hollow-text_b {
 
  color: transparent;
  /* Makes the inside of the text transparent */
  -webkit-text-stroke: 2px var(--dark-color);
  /* Creates the outline */
}

.outlined-text {
  color: transparent;
  -webkit-text-stroke: 1px rgb(247, 6, 6);
  text-shadow:
    -1px -1px 0 #000,
    1px -1px 0 #000,
    -1px 1px 0 #000,
    1px 1px 0 #000;
}

/* -----------------------------------------------------------
---------------------MENU CSS---------------------------------------------------------
-----------------------------------------------------------------------------------------------*/
/* -----------------------------------------------------------
---------------------NAVBAR CSS---------------------------------------------------------
-----------------------------------------------------------------------------------------------*/

/* Navbar Container */
.main_navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(159, 216, 251, 0.9);
  min-height: 9vh;
  width: 100%;
  padding: 0 20px;
  z-index: 1000;
  position: relative;
  flex-wrap: wrap;
}

/* Logo container - stays left */
.branding {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.site-logo {
  width: 100px;
  height: auto;
}

/* RIGHT SIDE CONTAINER - holds both menu and button */
.navbar-right-side {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-grow: 1;
}

/* Menu container - positioned BEFORE button */
#bs-example-navbar-collapse-1 {
  justify-content: flex-end;
  margin-right: 20px; /* Space between menu and button */
}

/* Menu items */
.navbar-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  margin-left: auto; /* 🔥 push right */
  list-style: none;
  padding: 0;
}

/* spacing */
.navbar-nav .menu-item {
  margin: 0 10px;
}

/* 🔥 target actual links */
.navbar-nav a {
  display: block;
  font-size: 22px;
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

/* hover */
.navbar-nav a:hover {
  color: var(--secondary-color);
}

/* active */
.navbar-nav .current-menu-item > a,
.navbar-nav .current_page_item > a,
.navbar-nav .current-menu-ancestor > a {
  color: var(--secondary-color);
  font-weight: 600;
}

/* Contact button - far right */
.header-buttons {
  display: flex;
  align-items: center;
  flex-shrink: 0;

}

.heading_btn {
  background-color: var(--secondary-color);
  color: var(--white-color);
  border: 1px solid var(--page-background-color);
  border-radius: 25px;
  padding: 6px 10px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  margin: 0 20px;

}

.heading_btn:hover {
  background-color: var(--primary-color);
  color: white;
  opacity: 0.9;
}

/* ================= NAVBAR BASE ================= */

.navbar-toggler {
  display: none;
  border: none;
  background: none;
  cursor: pointer;
}

/* Hamburger */
.navbar-toggler-icon {
  position: relative;
  width: 30px;
  height: 2px;
  background: var(--dark-color);
  display: block;
  transition: all 0.3s ease;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 2px;
  background: var(--dark-color);
  left: 0;
  transition: all 0.3s ease;
}

.navbar-toggler-icon::before { top: -10px; }
.navbar-toggler-icon::after { top: 10px; }

/* X animation */
.navbar-toggler:not(.collapsed) .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon::before {
  transform: rotate(45deg);
  top: 0;
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon::after {
  transform: rotate(-45deg);
  top: 0;
}

/* ================= DESKTOP ================= */

/* 🔥 FORCE MENU VISIBLE */
.navbar-collapse {
  display: flex !important;
  align-items: center;
  max-height: none;
  overflow: visible;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

  .main_navbar {
    padding: 10px 15px;
    flex-wrap: wrap;
  }

  .navbar-toggler {
    display: block;
    margin-left: auto;
  }

  .navbar-right-side {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }

  /* ✅ ONLY MOBILE: hide menu */
  .navbar-collapse {
    display: block !important;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  .navbar-collapse.show {
    max-height: 500px;
  }

  /* Stack menu */
  .navbar-nav {
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
  }

  .navbar-nav .nav-item {
    width: 100%;
    margin: 5px 0;
  }

  .navbar-nav .nav-link {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
  }

  .site-logo {
    width: 80px;
  }

  .heading_btn {
    padding: 6px 15px;
    font-size: 14px;
  }
}

/* ------------------Buttons Styles -------------*/
.header-buttons {
  display: flex;
  align-items: center;
  gap: 12px; /* spacing between buttons */
  margin-right: 20px;
}

.btn {
  background-color: #2563eb;
  color: white;
  padding: 5px 10px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary-color);
  color: white;
  padding: 5px 10px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  white-space: nowrap;
}

.btn-secondary {
  background: var(--secondary-color);
  color: white;
  padding: 5px 10px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  white-space: nowrap;
}

.btn:hover{
  opacity: .8;
  color:#000000
}

.btn-secondary:hover{
  opacity: .8;
 
}

.btn-primary:hover {
  opacity: .8;
 
}


/*---------------------------------------
  HOME Page              
-----------------------------------------*/

/* -----Hero Section --------------*/
/* Hero section */

.hero-section {
  width: 100%;
  max-width: 100vw;
  margin: 0;
  padding: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* Remove any default WP gradients */
.wp-block-cover.hero-section.has-background-dim::before,
.wp-block-cover.hero-section .wp-block-cover__background {
  display: none !important;
}
.block-container{
  margin: 10px 20px;
  padding: 10px;
}

/* GRADIENT OVERLAY - White at top to slightly white at bottom */
.wp-block-cover.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  pointer-events: none;
}

.wp-block-image img{
  margin-left: 20px;
}
/*background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0.9) 20%,
    rgba(255, 255, 255, 0.6) 40%,
    rgba(255, 255, 255, 0.3) 60%,
    rgba(255, 255, 255, 0.0) 100%
  );


/* HERO TEXT */
/* SIMPLE FONT ANIMATION - Add this to your main.css */
@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:wght@400;500;600;700&display=swap');

.hero-title {
  font-family: 'Times New Roman', Times, serif;
  font-weight: 600;
}
/* Step 1: Start with invisible text */
.hero-title {
    opacity: 0;
    transform: translateY(20px);
    animation: slideInFade 0.8s ease-out forwards;
    animation-delay: 0.5s; /* Waits for background image */
    
    /* Use system font - fast, no loading 
    font-family: 'Old Standard TT', 'Times New Roman', Times, serif; */
  
    font-size: clamp(2.4rem, 5vw, 4rem);
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.7);
}

.hero_heading_txt {
  text-align: left;
  line-height: 1.2;
  font-size: var(--h2-font-size);
  font-family: 'Times New Roman', Times, serif;
  font-weight: 900; /* This gives you the black weight */
  margin: 10px 20px 0px 30px;
  padding: 10px 20px;
}


/* Section Heading and Subheading for other pages*/
.section_heading_txt {
  text-align: left;
  line-height: 1.2;
  font-size: var(--h2-font-size);
  font-family: 'Times New Roman', Times, serif;
  font-weight: 900; /* This gives you the black weight */
  margin: 10px 20px;
  padding: 10px;
}

.section_sub_heading_txt{
  text-align: left;
  line-height: 1.2;
  font-size: var(--h4-font-size);
  font-family: 'Times New Roman', Times, serif;
  margin: 10px 20px 0px 20px;
}

/* Step 2: Smooth animation */
@keyframes slideInFade {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Optional: Add a subtle scale effect */
@keyframes subtlePop {
    0% {
        opacity: 0;
        transform: scale(0.95) translateY(10px);
    }
    70% {
        transform: scale(1.02);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Alternative animation */
.hero-title.pop-animation {
    animation: subtlePop 0.8s ease-out forwards;
    animation-delay: 0.5s;
}

.wp-block-cover.hero-section .hero-subtitle {
  font-size: clamp(1.5rem, 2.5vw, 1.4rem);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.6;
  font-family: 'Times New Roman', Times, serif;
  font-weight: 900; /* This gives you the black weight */
}
.hero_sub_heading_txt {
  text-align: left;
  line-height: 2;
  font-size: var(--h4-font-size);
  font-family: 'Times New Roman', Times, serif;

}

.block_heading_txt{
  text-align: left;
  line-height: 1.2;
  font-size: var(--h3-font-size);
  font-family: 'Times New Roman', Times, serif;
  font-weight: 900; /* This gives you the black weight */
  margin: 10px 20px;
}
.hero_section_content_txt {
  text-align:justify;
  line-height: 1.5;
  font-family: 'Times New Roman', Times, serif;
  margin-left: 10px;
  padding:10px; 
  font-size: 26px;
  color: var(--off-green-color)

}

.hero_link_txt{
  font-size: var(--h6-font-size);

}

/* If you want the text to still be white but readable */
/*
.wp-block-cover.hero-section .hero-title {
  color: #ffffff !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5) !important;
}

.wp-block-cover.hero-section .hero-subtitle {
  color: #f0f0f0 !important;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4) !important;
}
*/

/* MOBILE */
@media (max-width: 768px) {
  .wp-block-cover.hero-section {
    min-height: 70vh;
    padding: 0 16px;
  }
  
  .wp-block-cover.hero-section::before {
    background: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 255, 255, 0.7) 20%,
      rgba(255, 255, 255, 0.3) 40%,
      rgba(255, 255, 255, 0.05) 70%,
      rgba(255, 255, 255, 0) 100%
    );
  }
	.wp-block-cover.hero-section .hero-title {
  font-size: clamp(2rem, 5vw, 4rem);
  margin: 0 0 8px 0;
  }
 
.wp-block-cover.hero-section .hero-subtitle {
  margin-bottom:45px;

  }

}


/* -----------Home page Portfolio design -------------*/

.portfolio-container{
  background-color: var(--white-color);
  margin:10px 5px;
  padding: 5px 0px;
}

/* Container for all logos */
.portfolio-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 20px;
}

/* Each logo block */
.logo-item {
  text-align: center;
  flex: 1 1 150px;
  max-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 150px;
}

/* Logo image */
.logo-item img {
  max-width: 100%;
  height: 80px;
  object-fit: contain;
}

/* slider container */
#clients-slider-container .slick-slide{
    display:flex;
    justify-content:center;
}

/* each slide */
.logo-item.client-logo-slider{
    width:160px;
    height:120px;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    background:none;
}

/* logo image */
.logo-item.client-logo-slider img{
    width:120px;
    height:80px;
    object-fit:contain;
}

/* text */
.logo-item.client-logo-slider p{
    margin-top:8px;
    font-size:14px;
    text-align:center;
}


/* Responsive adjustments for small screens */
@media (max-width: 600px) {
  .portfolio-logos {
    gap: 10px; /* Reduce gap for smaller screens */
  }
  .logo-item {
    flex: 1 1 100px; /* Adjust item width for smaller screens */
  }
  .logo-item img {
    max-height: 80px; /* Reduce height for smaller screens */
  }
}


.afiliation-section{

  padding:10px 20px;

}

/* container */
.affiliation_block {
  background-color: rgb(252, 230, 230);
  width: 100%;
  height: 480px;
  padding: 10px 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

/* figure container */
.affiliation_img {
  width: 100%;
  margin: 0;
  padding: 0;
  line-height: 0;
  text-align: center;      /* Center horizontally if needed */
}

/* target the img directly */
.affiliation_img img {
  width: 100% !important;           /* Override inline width */
  height: auto !important;          /* Override inline height */
  max-width: 100%;
  max-height: 200px;                 /* Adjust based on your text height */
  object-fit: contain !important;    /* Override inline object-fit */
  aspect-ratio: auto !important;     /* Override inline aspect-ratio */
  display: block;
  margin: 0 auto;
}

.affiliation_content_txt {
  text-align: justify;
  line-height: 1.5;
  font-family: 'Times New Roman', Times, serif;
  padding: 10px 15px;
  font-size: 20px;
  color: var(--off-green-color);
  width: 100%;
}

/* -----End of Hero Section --------------*/

/* Reducing the Spacer in the small screen */

@media only screen and (max-width: 1000px) {
  .wp-block-spacer {
    height: 0 !important;
    /* Sets the height to 0 on small screens */
    margin: 0 !important;
    /* Removes any margin */
  }
}

/* Reducing the Hero Text in the small screen */
@media only screen and (max-width: 768px) {
  .hero_img {
    margin: 0;
    padding-top: 0px;
  }

}


/* Custom styles for social media icons */
/* WhatsApp social media icons */

.wp-social-link {
  width: auto;
  /* Adjust the width as desired */
  height: 50px;
  /* Adjust the height as desired */
  margin: 0 8px;
  /* Adjust the spacing between icons */
  text-align: center;
  padding-top: 4px !important;
  font-size: 26px;
  /* Adjust the font size as desired */

}

/* Make the WhatsApp button sticky */
.wp-social-link-whatsapp {
  position: fixed;
  /* Make the button stick to the screen */
  bottom: 50px;
  /* Position from the bottom of the screen */
  right: 20px;
  /* Position it 20px from the right side of the screen */
  z-index: 1000;
  /* Ensure the button is on top of other elements */
}

/* Responsive styles for Contact Button & WhatsApp icons ------*/
@media (max-width: 768px) {

  .wp-social-link {
    width: auto;
    /* Adjust the width as desired */
    height: 10vw;
    /* Adjust the height as desired */
    margin: 0px;
    /* Adjust the spacing between icons */
    text-align: center;
    padding: 0px;
    font-size: 18px;
    /* Adjust the font size as desired */

  }

  .wp-social-link-whatsapp {
    position: fixed;
    /* Make the button stick to the screen */
    bottom: 150px;
    /* Position from the bottom of the screen */
    align-content: center;
    /* Position it centered on the screen */
    padding: 0px !important;
  }

  .wp-block-heading.hero_h5 {
    font-size: 14px !important;
  }
}



/* ---------------Contact Form------------- */

/* Modal container */
.contact-form {
  background: #ffffff;
  width: 100%;
  max-width: 600px;
  margin: 5% auto;
  padding: 40px 30px;
  border-radius: 12px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  animation: fadeInUp 0.3s ease;
}

/* Heading */
.schedule-text {
  font-size: 22px;
  margin-bottom: 25px;
  text-align: center;
  color: #222;
}

/* Inputs + textarea */
.contact-form .form-control {
  border-radius: 8px;
  border: 1px solid #dcdcdc;
  padding: 12px 14px;
  font-size: 15px;
  margin-bottom: 18px;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

/* Focus state */
.contact-form .form-control:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.15);
  outline: none;
}

/* Textarea */
.contact-form textarea.form-control {
  resize: none;
}

/* Submit button */
.submit-button {
  width: 100%;
  background: var(--secondary-color);
  color: #fff;
  border: none;
  padding: 12px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.submit-button:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
}

.form-close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  font-size: 42px;
  cursor: pointer;
  color: var(--primary-color);
  line-height: 1;
  z-index: 10; /* ensures it's above content */
  transition: color 0.3s ease;
}

.form-close-btn:hover {
  color: red;
}

.form-logo {
  display: block;
  margin: -10px auto 20px auto;
  width: 80px;
  height: auto;
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 576px) {
  .contact-form {
    padding: 25px 20px;
  }

  .schedule-text {
    font-size: 18px;
  }

.form-logo {
  display: block;
  margin: 0 auto 10px auto;
  width: 80px;
}

}

/*-----------------------------------------------------------
-------------Special Pages Design -------------------
---------------------------------------------*/
/* ------------------------------About Us Slider wrapper --------------*/

.about_container{
  width: 100%;
  max-width: 100vw;
  margin: 1.2em 2em;
  padding: 1.0em 1.5em;

}

.management_block{
  background-color: var(--white-color);
  padding: 20px;
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

/* grid container */
.management-container{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:90px;
  padding:20px;
}

.team_block{
  margin-top:40px;
  background-color: var(--white-color);
  padding: 20px;
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

/* profile card */
.profile-block{
  text-align:center;
  padding:20px;
  cursor:pointer;
  transition:all .3s ease;

  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-start;
}

/* Hover effect */
.profile-block:hover {
  transform: scale(1.03); /* Slightly enlarge the slide */
  background-color:var(--primary-color); /* Change background color on hover */
  color: #fff; /* Change text color on hover */
}

/* Ensure the text inside changes when hovered */
.profile-block:hover h6,
.profile-block:hover .prof_heading,
.profile-block:hover p 
{
  color: #fff; /* Change text color when the slide is hovered */
}

.mgt_prof_img{
  width: auto;
  height: 350px;
  transition: transform 0.3s ease; /* Smooth scaling effect */
}

.about_slider-container {
  position: relative;
  width: 95%;
  margin: 0 auto;
}

/* Slick root */
.slider-container {
  width: 100%;
}

/* Slick internal track (DO NOT override display) */
.slider-container .slick-track {
  display: flex;
}

/* Individual slide */
.about-slider {
  height: 500px;
  margin: 10px;
  padding: 20px 10px;
  box-sizing: border-box;
  border-radius: 8px;
  background-color: #f0f0f0;
  text-align: left;
  overflow: hidden;

  /* transitions */
  transition:
    transform 0.3s ease,
    background-color 0.3s ease,
    color 0.3s ease;
}

/* Ensure Slick calculates widths correctly */
.slick-slide {
  height: auto;
}

/* Fix overflow clipping */
.slick-list {
  overflow: hidden;
}

/* Image within each slide */
.about_prof_img {
  width: auto;
  height: 300px;
  transition: transform 0.3s ease; /* Smooth scaling effect */
}
.prof_heading{
  padding-bottom: 5px;
  color: var(--dark-color); /* Default text color */
  margin-top: 10px;
  transition: color 0.3s ease; /* Smooth color transition */
}
/* Text within each slide */
.about_bio_text {
  color: var(--dark-color); /* Default text color */
  margin-top: 10px;
  font-size: medium;
  transition: color 0.3s ease; /* Smooth color transition */
}

.about-slider h5, 
.about-slider h6, 
.about-slider p{

padding-left:15px;
  
}


/* Custom arrows */
.about-slick-prev, .about-slick-next {
  background-color: transparent;
  border: none;
  color:var(--primary-color);
  font-size: 5vw; /* Increased font size for better visibility */
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  opacity: 0.5; 
  z-index: 10;
}

.about-slick-prev {
  left:-3vw;
}

.about-slick-next {
  right: -3vw;
}


/* Optional hover effect for arrows */
.about-slick-prev:hover, .about-slick-next:hover {
  opacity: 1.0; /* Slight color change on hover */
}
/* Border in between Digital Experience Section */

.digital-experience-border {
  border-left: 1px solid gray; 
  height: 650px; 
  margin-top:30px;
}


/* modal container */
.profile-modal{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  display:none;
  align-items:center;
  justify-content:center;
  z-index:9999;
}

/* background overlay */
.profile-overlay{
  position:absolute;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.6);
}

/* modal box */
.profile-modal-content{
  position:relative;
  background:#fff;
  padding:40px;
  max-width:600px;
  width:90%;
  text-align:center;
  border-radius:10px;

  transform:scale(.8);
  opacity:0;
  transition:all .4s ease;
}

/* animation when active */
.profile-modal.active .profile-modal-content{
  transform:scale(1);
  opacity:1;
}

/* modal image */
.profile-modal-content img{
  width:auto;
  height:120px;
  object-fit:contain;
  margin-bottom:15px;
}

#modalName{
 font-size: var(--h4-font-size);
}

#modalTitle{
  font-size: var(--h6-font-size);
  color: var(--secondary-color);
}
#modalShort{
  font-size: 18px;
  color: var(--dark-color);
}
#modalDescription{
  font-size: 16px;
  color: var(--dark-color);
  margin-top:10px;
  text-align: left;
}
/* close button */
.profile-close{
position:absolute;
top:10px;
right:15px;
font-size:24px;
background:none;
border:none;
cursor:pointer;
}

/* slider card cursor */
.about-slider{
cursor:pointer;
transition:.3s;
}

.about-slider:hover{
transform:translateY(-5px);
}

/* ------------------About Us Page Responsive ---------------------*/

/* Replace `.side-border` with your actual border selector */
@media (max-width: 768px) {
  .about-slider {
    flex: 0 0 30%; /* 3 slides visible at a time */
    max-width: 30%;
    height: 450px;
    margin:10px;
    padding: 10px;
    box-sizing: border-box;
    border-radius: 8px;
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease, border-radius 0.3s ease; /* Add transition for border-radius */
    background-color: #f0f0f0; /* Default background color */
    justify-content: space-between;
    text-align: left;
    overflow: hidden;
  }



  .management-container{
  grid-template-columns:repeat(2,1fr);
  }
  
  .digital-experience-border {
    border: none;
    height: auto; /* Set to 0 if you want to completely remove space */
    margin-top: 0; /* Optional: adjust margin as needed for better alignment */
  }

  .about-slider {
    flex: 0 0 100%; /* Show one slide at a time on small screens */
  }

    /* Custom arrows */
  .about-slick-prev, .about-slick-next {
    font-size: 10vw; /* Increased font size for better visibility */
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 10;
  }
  /* Adjust arrow position for small screens */
  .about-slick-prev {
    left: -5vw; /* Move closer to the left edge */ 
  }

  .about-slick-next {
    right: -5vw; /* Move Acloser to the right edge */   
  }
  .prof_heading{
    margin-top: 5px;
    text-align: center;
    transition: color 0.3s ease; /* Smooth color transition */
  }
}


/*   ---------------------------------
--------- Service Page  ----
---------------------------------*/

.service-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 40px;
}

.service-box {
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
  cursor: pointer;
}

.text-box {
  margin: 1em 1em;
  padding: 0em 1em; 
}

.service_heading {
 font-family: 'Times New Roman', Times, serif;
  color: #222;
  transition: color 0.3s ease;
}

.service_txt{
  text-align:justify;
  line-height: 1.5;
 font-family: 'Times New Roman', Times, serif;
  font-size: 22px;
  color: var(--off-green-color)
}
.service_img {
  width: 250px;
  height: auto;
  border: 1px solid var(--page-background-color);
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.service-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-box ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 20px;
  text-align: left;
  color: #555;
  transition: color 0.3s ease;
}

.service-box ul li::before {
  content: "✔️";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 16px;
}

/* Change icon color on hover */
.service-box:hover ul li::before {
  content: "✅";
}

/* Hover Effects */
.service-box:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-box:hover .service_heading,
.service-box:hover ul li {
  color: var(--primary-color);
}

.service-box:hover .service_img {
  transform: scale(1.1);
}

.support-service{
margin: 1em 1.2em;
padding: 1.2em 3em;
}
/* Responsive */
@media (max-width: 1200px) {
  .service-container {
      grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .service-container {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .service-container {
      grid-template-columns: 1fr;
  }
}


/*   ---------------------------------
--------- Career Page  ----
---------------------------------*/
.career_text{
  padding: 0 1.5em;
  text-align:justify;
  line-height: 1.5;
 font-family: 'Times New Roman', Times, serif;
  font-size: 22px !important;
  color: var(--off-green-color)

}
.career_section_heading_txt{ 
 font-family: 'Times New Roman', Times, serif;
  padding:10px 0px; 
}

.career_section_content_txt {
  text-align:justify;
  line-height: 1.5;
 font-family: 'Times New Roman', Times, serif; 
  font-size: 22px;
  color: var(--off-green-color)

}

.career_section li {
  text-align:justify;
  line-height: 1.5;
 font-family: 'Times New Roman', Times, serif; 
  font-size: 22px;
  color: var(--off-green-color)

}
/* ----------------------------------------------------------
------------------------------  404 Page  -----*/
.page-404{
background-color: var(--page-background-color);
height: 60vh;
width: 100%;

}
.text-404 {
  margin-top:0vh;
  text-align: center;
  font-size: var(--h2-font-size);
  color: var(--secondary-color);
  padding-top: 50px;
  padding-bottom: 0px;
}

.text_res-404 {
  text-align: center;
  font-size: var(--h3-font-size);
  color: #f87c7c;
  padding-top: 10px;
  padding-bottom: 0px;
}

/* Style for the search bar */
.s_bar-404 {
  font-size: var(--h3-font-size);
  color: var(--custom-btn-bg-color);
  display: flex;
  /* Use flexbox for alignment */
  justify-content: center;
  /* Center content horizontally */
  align-items: center;
  /* Center content vertically if needed */
  margin: 0 auto;
  /* Auto margin to center */
  padding-bottom: 20px;

}

/* Media query for small screens */
@media (max-width: 600px) {
  .s_bar-404 {
    width: 100% !important;
    /* Make the search bar take the full width */
    padding: 0 10px !important;
    /* Add some padding for better spacing */
    flex-direction: column;
    /* Stack children vertically */
  }

  .s_bar-404 input,
  .s_bar-404 button {
    width: 100%;
    /* Make input and button take full width */
    margin-bottom: 0px;
    /* Add some spacing between elements */
  }

  .text-404 {
    font-size: var(--h5-font-size);
    padding: 0px;
  }

  .text_res-404 {
    text-align: center;
    font-size: var(--h5-font-size);
    color: #f87c7c;
    padding: 0px;

  }
}

/* Ensure side-by-side layout order on small screens */

@media (max-width: 767.98px) {
  .custom-order-1 {
    order: 2 !important;
  }

  .custom-order-2 {
    order: 1 !important;
  }

  .custom-order-3 {
    order: 3 !important;
  }
}

/* Optional: Reset order for larger screens */
@media (min-width: 768px) {

  .custom-order-1,
  .custom-order-2,
  .custom-order-3 {
    order: initial !important;
  }
}

/* Widget designed by me */

.widget {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

/* ------------------Blog page styles --------------------------------*/
/* ----------Here it is News & Informaiton Page -----------------*/

.wp-block-heading-others{
  font-size: var(--h4-font-size);
  font-weight: bold;

  margin: 10px 0;
  text-align: left;

}
.sidebar-search-box{
  margin: 20px 0;
}
.sidebar-search-box h2{
  font-size: var(--h4-font-size);
  font-weight: bold;
  margin-bottom: 10px;
  text-align: left;
}

.sidebar-search-box ul li{
  font-size: var(--h6-font-size);
  font-weight: bold;
  text-align: left;
}
.wp-block-search__label{
  font-size: var(--h4-font-size);
  font-weight: bold;
  margin: 10px 0;
  text-align: left;
}

.blog-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 20px 0px;
}

.blog-post {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #ddd;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.blog-post:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.post-thumbnail {
  flex: 0 0 100%;
  max-width: 100%;
}

.post-thumbnail img {
  width: 350px;
  height: auto;
  display: block;
  padding: 10px 15px;
}

.post-content {
  padding: 10px;
  flex: 1;
}

.post-content p{
  text-align:justify;
  line-height: 1.5;
 font-family: 'Times New Roman', Times, serif;
  font-size: 20px;
  color: var(--off-green-color)
}

.article .single-post {
  margin: 0 20px;
  padding: 20px;
}
.single-post h2{
  margin: 10px 0px;
  text-align: center;
}
.single-post .post-content p{
  text-align:justify;
  line-height: 1.5;
 font-family: 'Times New Roman', Times, serif;
  font-size: 22px;
  color: var(--off-green-color)
}

.single-post .post-thumbnail img{
  width: 700px;
  height: auto;
  display: block;
  margin: 20px ;
  padding: 10px 15px;
}

.blog-post h2 {
  font-size: 1.5em;
  margin: 10px 0;
}
.single_post_btn {
  background-color: var(--primary-color);
  border: 1px solid var(--page-background-color);
  border-radius: 25px;
  padding: 6px 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  
}
.single_post_btn:hover {
  opacity: .8;
  
}
.single_post_btn a{
  color: var(--white-color);
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;

}
@media (min-width: 768px) {
  .blog-post {
    flex-direction: row;
  }

  .post-thumbnail {
    flex: 0 0 40%;
    max-width: 40%;
  }

  .post-content {
    flex: 1;
    padding: 20px;
  }
}

/* Pagination designed by me */
.pagination {
  display: flex;
  justify-content: center;
  /* Center the pagination */
  margin-top: 20px;
  /* Add some space above the pagination */
}

.pagination a,
.pagination span {
  margin: 0 5px;
  /* Add space between pagination items */
  padding: 10px 15px;
  /* Add padding for better click size */
  border: 1px solid #ddd;
  /* Add border for better separation */
  border-radius: 4px;
  /* Rounded corners */
  text-decoration: none;
  /* Remove underline */
  color: #007bff;
  /* Link color */
}

.pagination a:hover,
.pagination span.current {
  background-color: #007bff;
  /* Background color on hover or current page */
  color: #fff;
  /* Text color on hover or current page */
}

.pagination .next,
.pagination .prev {
  font-weight: bold;
  /* Highlight next and prev buttons */
}


/*-----------------------------------------
    -- Footer Section ---
-------------------------------------------*/

/* Container and Section--------------------*/
.site-footer {
  background-color:var(--site-footer-bg-color );
  /* Adjust as needed */
  padding: 10px 0;
}

.footer-container {
  max-width: 100vw;
  /* Adjust as needed */
  margin: 1vh .5vw;
  padding: 0 2vw;
}

.footer-section {
  padding: 10px;
  max-width: 100vw;
}


.footer-logo-section{
  display: flex;
  margin: 3vh 0 0 -1vw;
  padding-left:30px;
  width:103vw;
  height:auto;
 
}
.footer-logo-section .branding {
  display: flex;
  align-items: center; /* Centers the image vertically */
  justify-content: flex-start; /* Left-align on larger screens */
}

/* Image styling */
.footer-logo-section .branding img {
  width: 200px;
  height: auto;
  object-position: left;
  margin-top: -20px;
  margin-left: -30px;
}

.footer-section .address-section {
  width: fit-content;
  outline: none;
  align-items: center;

}

.address {
    display: flex;
    align-items: center;
    gap: 10px;
}

.map-link{
    text-decoration:none;
    color:inherit;
}
.map-link:hover{
    text-decoration:underline;
}

.footer-section .menu-links-section {
  outline: none;
  align-items: center;

}

.footer-section .phone-links-section {
  outline: none;
  align-items: center;
  margin-top: 13px;

}
/* Base styles for the footer social section */
.footer-social-section {
  display: flex;
  justify-content:center; /* Align icons to the right on larger screens */
  align-items: center;
  gap: 20px; /* Space between icons */
  height: 50%; /* Restrict to the top half */
  margin-top: 20px;
  padding: 10px 20px; /* Optional padding */
  overflow: hidden;
}

.footer-social-section a {
  width: 60px; /* Set desired width */
  height: 60px; /* Set desired height */
  color: transparent;
 
}

/* Styling for footer social icons */
.footer-social-section img {
  width: 45px; /* Set desired width */
  height: auto; /* Set desired height */
  margin-top: 2vh;
  object-fit: contain; /* Maintain aspect ratio within the specified dimensions */
 
}

.footer-social-section img:hover {
  width: 50px; /* Set desired width */
  height: auto; /* Set desired height */
  transition:  0.3s ease;
 
}

.phone-links-section p {
  align-items: center;
  padding-top: 12px;

}

.footer-section h3 {
  font-size: 18px;
  /* Adjust as needed */
  color: var(--primary-color);
  /* Adjust as needed */
  margin-bottom: 10px;
}

.footer-section p {
  font-size: 16px;
  /* Adjust as needed */
  color:var(--dark-color);
  /* Adjust as needed */
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links a {
  color: var(--off-green-color); /* Customize the link color */
  text-decoration: none; /* Remove underline */
  transition: color 0.3s ease; /* Smooth transition for hover effect */
}

.footer-links a:hover {
  color: var(--dark-color); /* Hover color (customize this to fit your design) */
  text-decoration: none /* Optional hover underline */
}
.external-section{
  overflow: hidden;
}

/* Menu Links Section - ---------------------*/
.footer-menu-links {
  list-style: none;
  padding: 0;
}

.footer-menu-links li {
  margin-bottom: 10px;
}

.footer-menu-links a {
  color: #6c757d;
  /* Adjust as needed */
  text-decoration: none;
}

.footer-menu-links a:hover {
  text-decoration: underline;
  color: #3f55f9;
}

/* Footer Other Content Section - ---------------------*/
.appstore-link-img {
  width: 120px;
  margin-right: 10px;
}

.other-content-section p {
  color: #555555;
  /* Adjust as needed */
  text-decoration: none;
}

/* Copywrite Section - ---------------------*/
.copyright-line p {
  text-align: center;
  font-size: .75rem;
  color: #6c757d;
  padding-top: 10px;
}
.icon-size{
  width: 30px;
  height: auto;
}

/* ------------Responsive Design for smaller screens -----------------------*/
@media (max-width: 768px) {
  .footer-section {
    margin-bottom: 0px;
  }

  .site-footer {
    padding: 10px 5px;
  }

  .footer-social-section {
    justify-content: center; /* Center icons on small screens */
    flex-wrap: nowrap; /* Wrap icons to handle limited space */
    width: 100%;
  }

  .footer-section .branding{
    justify-content: center; /* Center icons on small screens */
   
  }
  .footer-social-section a {
    flex: 1 1 auto; /* Allows icons to shrink or expand evenly */
    text-align: center; /* Center each icon */
  }

  /* Smaller icon size for small screens */
  .footer-social-section a img {
    width: 30px;
    height: 30px;
  }
   
  .site-footer li{
    margin-bottom: 0px;
  }
  .footer-section .menu-links-section {
    margin-top: 3vh;
  
  }

  .external-section{
    overflow: hidden;
    }
	
  .copyright-line p {
	font-size: .5rem;
	padding-top: 6px;
	}
}



/* Media query for screens up to 767.98px */
/* Ensure side-by-side layout order on small screens */

@media (max-width: 767.98px) {
  .custom-order-1 {
    order: 2 !important;
  }

  .custom-order-2 {
    order: 1 !important;
  }

  .custom-order-3 {
    order: 3 !important;
  }
}

/* Optional: Reset order for larger screens */
@media (min-width: 768px) {

  .custom-order-1,
  .custom-order-2,
  .custom-order-3 {
    order: initial !important;
  }
}
