*, *::before, *::after 
{ box-sizing: border-box; } 

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

nav a { 
	font-family: 'Abel', 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: #32F073; 
	border-bottom: 2px solid #32F073;
	 } 
	 
@media (max-width: 768px) {

    nav {
        padding: 10px;
    }

    nav ul {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }

    nav li {
        margin: 0;
    }

    nav a {
        font-size: 15px;
    }

    body {
        padding-top: 70px;
    }
}


/*Header Content*/ 
header { 
	color:#0a2b7d; 
	margin: 0; 
	display: flex; 
	flex-direction: column;
	align-items: center; 
	width: 100%; 
	} 
	
header h1{ 
	grid-column: 2; 
	text-align: center; 
	margin: 0;
	 } 
	 
.logo-image { 
	width: clamp(200px, 100vw, 240px); 
	height: auto; 
	} 
	
.logo-image img{ 
	width:100%; height:auto; 
	} 
	
.header-content { 
	text-align: center;
	 } 
	 
.header-title{ 
	margin: 0; 
	z-index: 0;
	 } 
	 
/* Main body*/ 
html,body { 
	height: 100%; 
	margin: 0;
	 } 
	 
main{ 
	flex: 1; 
	padding: 40px 20px;
	 } 
	  
body { 
	font-size: clamp(16px, 2vw, 20px); 
	font-family: 'Abel', serif; 
	/*color:#AFbbab;*/
	font-weight: 400; 
	font-style: normal; 
	margin: 0; 
	padding: 0; 
	padding-top: 20px; 
	display: flex; 
	flex-direction: column; 
	min-height: 100vh; 
	flex-direction: column; 
	min-height: 100vh; 
	} 
	
h1{
    font-size:clamp(28px,4vw,40px);
	color:#dea798; 
	font-family: 'Abel', serif; 
	font-weight: 400; 
	font-style: normal; 
	border-radius: 40px;
	text-align: center;
	} 
	
h2 { 
	font-size: clamp(18px, 2.5vw, 22px);
	color:#e6e6e6; 
	font-family: 'Abel', serif; 
	font-weight: 400; 
	font-style: normal; 
	padding:40px 10px; 
	} 

	 
/* Bio Styling*/ 
.about-section {
    position: relative;
    overflow: hidden;
    padding: 40px 20px;
}

.about-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("Gallery/cm4.jpg");
    background-size:min(900px, 90%);
    background-position: center;
    background-repeat: no-repeat;

    opacity: 0.2;      /* Change this value */
    z-index: -1;
}
.about-content {
    position: relative;
	padding: 20px;
    max-width: 900px;
    margin: 0 auto;
    z-index: 1;
}

.about-content p {
    margin-bottom: 20px;
    line-height: 1.7;
}

/* Services we offer*/
.services {
	display: flex; 
	justify-content: center; 
	padding: 20px; 
	background-color: #F9F7F2;
	} 
	
.two-column-container { 
	display: flex; 
	gap: 40px; 
	width: 100%; 
	max-width: 1200px; 
	align-items: stretch; 
	} 
	
.text-column { 
	flex: 2; 
	padding-right: 60px; 
	display: flex; 
	flex-direction: column;
	justify-content: center; /* or space-between */ 
	} 
	
.image-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.image-column img {
    width:100%;
    max-width:100%;
    height:250px;
    object-fit:cover;
}

@media (max-width: 900px) {

    .two-column-container {
        flex-direction: column;
        gap: 30px;
    }

    .text-column {
        padding-right: 0;
    }

    .image-column {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .image-column img {
        flex: 1 1 250px;
        height: 220px;
    }
}

	/* About Us*/

.Video{
	background-color: #F9F7F2;
	padding: 20px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	height: auto;
	border: 1px solid #fff;
	}

/* Section background */
#team {
  background-color: #F9F7F2;
  padding: 40px 20px;
}

/* Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Card */
.team-card {
  background: white;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  text-align: center;
}

/* Image */
.team-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  margin: 0 auto 12px;
}

/* Name */
.team-card figcaption {
  font-weight: 700;
  font-size: 16px;
  color: #272162;
  margin-bottom: 12px;
}

/* Quote */
.quote {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  font-style: italic;
  color: #333;
  line-height: 1.5;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.05);
}

/* Optional quote “speech bubble” tip */
.quote::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin: -22px auto 8px auto;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid white;
}


/*Blog*/

.blog {
    padding: 20px;
}

/* Individual blog cards */
.blog > div {
    position: relative;
    overflow: hidden;
    padding: 30px;
    margin-bottom: 30px;
    max-width: 1100px;
	margin: 0 auto 30px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    z-index: 0;
}

@media (max-width:768px){

    .blog{
        padding:15px;
    }

    .blog > div{
        padding:20px;
    }

}

/* Shared background settings */
.blog > div::before {
    content: "";
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

/* Text formatting */
.blog h2 {
    margin-top: 0;
    color: #2d5a27;
}

.blog p {
    margin-bottom: 0;
    line-height: 1.7;
}

/* Week backgrounds */

.week1::before {
    background-image:
        linear-gradient(rgba(255,255,255,.75), rgba(255,255,255,.75)),
        url("Gallery/w1.jpg");
}

.week2::before {
    background-image:
        linear-gradient(rgba(255,255,255,.75), rgba(255,255,255,.75)),
        url("Gallery/w2.jpg");
}

.week3::before {
    background-image:
        linear-gradient(rgba(255,255,255,.75), rgba(255,255,255,.75)),
        url("Gallery/w3.jpg");
}

.week4::before {
    background-image:
        linear-gradient(rgba(255,255,255,.75), rgba(255,255,255,.75)),
        url("Gallery/w4.jpg");
}

.week5::before {
    background-image:
        linear-gradient(rgba(255,255,255,.75), rgba(255,255,255,.75)),
        url("Gallery/w5.jpg");
}

.week6::before {
    background-image:
        linear-gradient(rgba(255,255,255,.75), rgba(255,255,255,.75)),
        url("Gallery/w6.jpg");
}

.week7::before {
    background-image:
        linear-gradient(rgba(255,255,255,.75), rgba(255,255,255,.75)),
        url("Gallery/w7.jpg");
}

.week8::before {
    background-image:
        linear-gradient(rgba(255,255,255,.75), rgba(255,255,255,.75)),
        url("Gallery/w8.jpg");
}

.week9::before {
    background-image:
        linear-gradient(rgba(255,255,255,.75), rgba(255,255,255,.75)),
        url("Gallery/w9.jpg");
}

.week10::before {
    background-image:
        linear-gradient(rgba(255,255,255,.75), rgba(255,255,255,.75)),
        url("Gallery/w10.jpg");
}

.week11::before {
    background-image:
        linear-gradient(rgba(255,255,255,.75), rgba(255,255,255,.75)),
        url("Gallery/w11.jpg");
}

.week12::before {
    background-image:
        linear-gradient(rgba(255,255,255,.75), rgba(255,255,255,.75)),
        url("Gallery/w12.jpg");
}

.week13::before {
    background-image:
        linear-gradient(rgba(255,255,255,.75), rgba(255,255,255,.75)),
        url("Gallery/w13.jpg");
}

.week14::before {
    background-image:
        linear-gradient(rgba(255,255,255,.75), rgba(255,255,255,.75)),
        url("Gallery/w14.jpg");
}

.week15::before {
    background-image:
        linear-gradient(rgba(255,255,255,.75), rgba(255,255,255,.75)),
        url("Gallery/w15.jpg");
}

.week16::before {
    background-image:
        linear-gradient(rgba(255,255,255,.75), rgba(255,255,255,.75)),
        url("Gallery/w16.jpg");
}


 /* Footer section styles */ 
.footer { 
	background-color:#144C27; 
	padding: 50px 20px; 
	color:#e6e6e6; 
	text-align:center; 
	} 

.footer-content { 
	text-align: center; 
	max-width: 1200px; 
	margin: 0 auto; 
	} 
	
.footer-links{ 
	list-style-type:none; 
	padding:20px; 
	display: flex; 
	justify-content:center; 
	gap: 20px; 
	} 

.footer-links a { 
	color: #e6e6e6; 
	text-decoration: none; 
	transition: color 0.3s; 
	} 
	
.footer-links a:hover{ 
	color: #32F073; 
	text-decoration: none; 
	transition: color 0.3s; 
	} 

.footer-social { 
	margin-top: 30px; 
	} 

.footer-social a { 
	color: #e6e6e6; 
	font-size: 30px; 
	margin:0 15px; 
	text-decoration: none; 
	transition: color 0.3s; 
	} 
	
.footer-social a:hover { 
	color: #32F073; 
	} 
	
	
@media (max-width:768px){

    .footer-links{
        flex-direction:column;
        gap:12px;
        padding:10px;
    }

    .footer-social a{
        margin:0 10px;
        font-size:28px;
    }

}

.Email {
    margin-bottom: 15px;
}

.Email a {
    color: #e6e6e6;
    text-decoration: none;
    font-size: 22px;
    font-weight: bold;
    transition: color 0.3s;
}

.Email a:hover {
    color: #32F073;
}
	
.contact-box {
    max-width: 750px;
    margin: 10px auto 30px;
    padding: 25px 40px;
}

.contact-box form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-box label {
    display: block;
    text-align: left;
    margin-bottom: 6px;
    font-weight: bold;
}

.contact-box input,
.contact-box textarea {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 16px;
    box-sizing: border-box;
}
input[type="submit"] {
    background: #ddb87a;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 18px;
    transition: .3s;
}

input[type="submit"]:hover {
    background: #dea798;
}
.row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.row > div {
    flex: 1;
}
@media (max-width:600px){

    .contact-box{
        padding:20px;
    }

    .Email a{
        font-size:18px;
    }

    .phone{
        font-size:18px;
    }

}

@media (max-width: 768px) {
    .row {
        flex-direction: column;
    }
}
.phone {
    margin: 10px 0 15px;
    font-size: 20px;
    font-weight: bold;
    margin-bottom:5px;
}
.contact-box h2 {
    padding: 0;
    margin: 0 0 20px;
    color: #e6e6e6;
}

@media (max-width:480px){

    body{
        font-size:15px;
    }

    h1{
        font-size:26px;
    }

    h2{
        font-size:20px;
    }

    .services,
    .Video,
    #team,
    .about-section{
        padding:20px 15px;
    }

    .team-card{
        padding:15px;
    }

    .team-card img{
        width:100px;
        height:100px;
    }

}