/* Navigation Bar*/
	
nav {
 /* position: fixed;*/
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px 0px;
  z-index: 1000;
  background-color:#272162;
  box-shadow: 0 2px 10px rgba(0,0,0,0.52);

  position: relative; /* ← ADD THIS */
}

nav a {
	font-family: 'Arimo', sans-serif;
	font-size: 16px;
	color: #e6e6e6;
	text-decoration: none;
	transition: color 0.3s, border-bottom 0.3s;
	padding-bottom: 5px;
	position: relative;
	}

nav ul{
	list-style: none;
	padding:0;
	margin:0;
	display:flex;
	justify-content: center;
	align-items: center;
	 }

nav li {
	margin: 0 15px;
}

nav a:hover {
	color:#2b6289;
	border-bottom: 2px solid #e6e6e6;
	}
	
/* Hamburger button */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #e6e6e6;
  font-size: 28px;
  cursor: pointer;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}


@media (max-width: 768px) {

  /* Show hamburger */
  .nav-toggle {
    display: block;
  }

  /* Hide menu by default */
  nav ul {
    display: none;
    flex-direction: column;
    background-color: #272162;
    width: 100%;
    margin-top: 10px;
  }

  /* Show menu when active */
  nav ul.active {
    display: flex;
  }

  nav li {
    margin: 15px 0;
    text-align: center;
  }
}

	
/* Header Grid */
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto; /* Left, center, right */
  align-items: center;
  padding: 1rem;
  width: 100%;
  box-sizing: border-box;
  gap: 1rem;
}

/* Left Logo */
.logo-image img {
  max-width: 150px;
  height: auto;
  display: block;
}

/* Center Title */
.header-content {
  text-align: center;
}

.header-title {
  font-size: 40px;
  color: #272162;
  margin: 0;
}

/* Right Logo */
.which-logo img {
  max-width: 150px;
  height: auto;
  display: block;
  justify-self: end;
}

/* Tablet */
@media (max-width: 768px) {
  .header-inner {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    text-align: center;
  }

  .which-logo {
    grid-column: 2;
    justify-self: center;
    margin-top: 10px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .header-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }

  .logo-image,
  .header-content,
  .which-logo {
    justify-self: center;
    margin: 10px 0;
  }
}


/* Main body*/

p {
	border-radius: 50px;
		}

body { 
	font-size: 20px;
	color: #272162;
	font-family: 'Arimo', sans-serif;
  	font-weight: 400;
  	font-style: normal;
  	margin: 0;
  	padding: 0;
  	padding-top: 90px;
	}	
	
h1 { 
	font-size:40px;
	color:#272162;
	font-family:  'Arimo', sans-serif;
  	font-weight: 400;
  	font-style: normal;
	border-radius: 50px;
	
	}

.content {
	min-height: 100vh;
	}

h2 { 
	font-size:28px;
	color:#272162;
	font-family:  'Arimo', sans-serif;
  	font-weight: 700;
  	font-style: normal;
	padding:10px 10px;
	}
	
	
.background {
	position: relative;
	min-height: 100vh;
	
	}
	
.background::before {
	content:"";
	position: absolute;
	inset: 0;
	background-image:url("logo.jpg");
	background-size: 90%;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 0.4;
	z-index: -1;
	}
	

/*Home Page Style*/

.two-column-container {
	display: flex;
	justify-content: space-between;	
	margin-top: 100px;
	padding: 0 20px;
	margin-left: 0;
	margin-bottom: 50px;
}

.column {
	flex-basis: 48%;
	
}

.column img {
	width: 100%;
	height: auto;
	}


.home-section p {
	font-size: 20px;
	color: #272162;
	font-family: 'Arimo', sans-serif;
  	font-weight: 400;
  	font-style: normal;
  	margin: 0;
  	padding: 3rem;
	margin: 0px;
	}

@media (max-width: 768px) {
  .two-column-container {
    flex-direction: column;
    margin: 80px 20px 40px;
  }

  .column {
    flex-basis: 100%;
  }
}


@media (max-width: 767px) {
  .home-section p {
    padding: 1.5rem;
  }
}

	
	/* Gallery section styles*/

#main-gallery-container {
	margin-top:50px;
	
	}
	
#gallery {
	display:grid;
	grid-template-columns: 1fr 1fr 1fr;
	width: 75vw;
	margin: 20px auto;
	}
	
figure{
	margin: 10px;
	padding: 0px;
	position: relative;
}

figure img{
	width: 100%;
	}
	
#gallery img {
	padding: 0px;
	border:3px solid #272162;
	box-shadow: 0px 0px 3px #ccc;
	z-index: 1;
	position: relative;
	width: 100%;
	box-sizing: border-box;
	}
	
figcaption{
	background-color: rgba(255,255,255,0.5);
	width: 100%;
	text-align: center;
	color: #272162;
	z-index: 1;
	padding: 9px 0px 11px 0px;
	font-size: 15px;
	position: absolute;
	bottom: 6px;
	}
	
#image-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

#modal-image {
    max-width: 90%;
    max-height: 90%;
    cursor: pointer;
}

#close-modal {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}
.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 50px;
    color: white;
    background: rgba(0,0,0,0.4);
    border: none;
    cursor: pointer;
    padding: 10px 15px;
    z-index: 1100;
}

.nav-arrow.left {
    left: 20px;
}

.nav-arrow.right {
    right: 20px;
}

.nav-arrow:hover {
    background: rgba(0,0,0,0.7);
}


	
@media screen and (max-width: 600px) {
	figcaption {
		font-size: 3vw;
		}
		
	#gallery {
		grid-template-columns: 1fr;
		width: 90vw;
		}
		
	}

 /*Testimonials */
 
.testimonials {
  padding: 80px 20px;
  text-align: center;
}

.testimonials h2 {
  font-size: 32px;
  margin-bottom: 10px;
}


.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  position: relative;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
}

.quote {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 40px;
  color: #272162;
}

.testimonial-card img {
  width: 120px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin: 10px auto 20px;
}

.testimonial-card p {
  font-size: 14px;
  color: #272162;
  line-height: 1.6;
}

.testimonial-card small {
  color: #999;
}


/* Footer container */
footer {
  background-color: #272162;
  color: #e6e6e6;
  width: 100%;
  padding: 20px 0;
  font-family: 'Arimo', sans-serif;
  position: relative;
  z-index: 1;
  text-decoration:none;
}

/* Flex row for layout */
.footer-row {
  display: flex;
  align-items: center;       /* vertically center all items */
  justify-content: space-between; /* logos stick to edges */
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;           /* stack on smaller screens */
  gap: 1rem;
}

/* Logos */
.footer-logo {
  flex: 0 0 auto;            /* do not grow */
}

.footer-logo img {
  max-width: 120px;
  height: auto;
  display: block;
}

/* Center content */
.footer-content {
  flex: 1;                   /* take remaining space */
  text-align: center;
  font-family: 'Arimo', sans-serif;
}

/* Footer links */
.footer-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
}

.footer-links a {
  color: #e6e6e6;
  text-decoration: none;
  font-family: 'Arimo', sans-serif;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #2b6289;
  text-decoration: none;
}

/* Button styled as link */
a.button.Email {
  display: inline-block;
  margin: 10px 0;
  padding: 15px 25px;
  background-color: #e6e6e6;
  color: #272162;
  border-radius: 3px;
  text-decoration: none !important; /* remove underline */
  font-weight: bold;
  font-family: 'Arimo', sans-serif;
  transition: background 0.3s, color 0.3s;
  cursor: pointer;
}

a.button.Email:hover {
  background-color: #2b6289;
  color: #e6e6e6;
  text-decoration: none !important;
}

/* Responsive for tablets & mobile */
@media (max-width: 767px) {
  .footer-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-logo img {
    max-width: 100px;
    margin-bottom: 10px;
  }

  .footer-content {
    width: 100%;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.footer-logo.left {
  margin-left: 20px; /* moves logo slightly inward from edge */
}

.footer-logo.right {
  margin-right: 20px;
}

