@charset "utf-8";
/* CSS Document */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  overflow-x: hidden; /* only the full page, not every element */
  max-width: 100%;
}



.header {
  position: absolute;  /* sit on top of video */
  top: 0;
  left: 0;
  width: 100%;
  height: 130px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  background: transparent;   /* remove white background */
  z-index: 10;               /* stay above video */
}


.logoicon {
	
	width: 250px;
  	height: 100px;
	background-image: url("images & icons/icon 13-01.png");
  	background-size:contain;
  	background-repeat: no-repeat;
	
}



#menusection {
    width: 100%;
    display: flex;
    justify-content: center; /* centers the whole menu */
}

#menusection ul {
    list-style: none;
	font-family: 'Readex Pro', sans-serif;
    font-weight: 300; 
    margin: 0;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 40px; /* space between menu items */
    flex-wrap: wrap; /* allows wrapping on mobile */
}

#menusection li {
    padding: 10px;
}

#menusection li:not(#booknow) a{
	color: white;              /* normal menu text color */
    text-decoration: none;
    font-family: 'Readex Pro', sans-serif;
    font-weight: 300;
    transition: 0.3s;
}

#menusection li:not(#booknow) a:hover {
    color: #3C63AE;
}



/* Book Now button styling */
#booknow {
    border-radius: 50px;
    margin-left: 100px;
}

#booknow a {
    box-sizing: border-box; /* include border in width calculation */
    padding: 10px 40px;
    border: 1px solid transparent; /* invisible border to reserve space */
    border-radius: 50px;
    background-color: #3C63AE;
    color: white;
    font-family: 'Readex Pro', sans-serif;
    font-weight: 300; 
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

#booknow :hover {
    background-color: white;
    color: #3C63AE;
    border-color: #3C63AE; /* show border without changing size */
}

/*banner area works*/

.banner {
  position: relative;
  width: 100%;
  height: 100vh;   /* 👈 full viewport height (or match header height if fixed) */
  overflow: hidden;
}
.banner video {
  width: 100%;
  height: 90%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;   /* 👈 push video behind everything */
}

.bannercontent h1 {
  padding-top: 100px;
  font-family: 'Readex Pro', sans-serif;
  font-weight: 400; 
  font-size: 40px;
  max-width: 650px;  /* ✅ better than fixed width */
  margin-bottom: 15px;
  line-height: 1.4;   /* improves readability */
}

.bannercontent {
  position: relative;
  z-index: 2;
  padding-top: 180px;
  text-align: left; /* or center, depending on your design */
  color: white;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  white-space: nowrap; /* 👈 prevents text wrapping */
  max-width: none; /* 👈 removes the 650px width limit */
  margin-left: 150px;
}

.banner-buttons {
  display: flex;
  gap: 20px;
  margin-left: 370px; 
  justify-content: flex-start; /* align buttons with text */
  margin-top: 20px;            /* spacing below text */
}

.banner-buttons .btn-primary,
.banner-buttons .btn-secondary {
  text-decoration: none;
  padding: 12px 30px;
  font-family: 'Readex Pro', sans-serif;
  font-weight: 500; 
  font-size: 11px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: 2px solid white;
  background: transparent;
  color: white;
  width: 160px;
  text-align: center;

  /* 👇 fade-up animation */
  opacity: 0; /* start hidden */
  animation: fadeUp 1.8s ease-out forwards;
}

.banner-buttons .btn-primary:hover {
  background-color: white;
  border-color: white;color: #3C63AE;
}

.banner-buttons .btn-secondary:hover {
  background-color: white;
  border-color: white;color: #3C63AE;
}


@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px); /* start below */
  }
  100% {
    opacity: 1;
    transform: translateY(0);    /* move to normal */
  }
}
/*service area */


.service{
	
	width: 100%;
	display: flex;
  	flex-direction: column;
  	justify-content: center;  
  	align-items: center;
	
}

.service h2{ 
	margin-top:40px;
	color: black;
	padding-bottom: 10px;text-align: center;
	align-content: center;
	font-family: 'Readex Pro', sans-serif;
    font-weight: 400; 
	font-size: 40px;}

.service p{ 
	color: black;
	text-align: center;
	font-family: 'Readex Pro', sans-serif;
    font-weight: 100; 
	font-size: 25px;
	padding-bottom: 10px; 
	
}
/*-----------------------------------------------------------------------*/
/* Initial state */
.service h2,
.service p {
  opacity: 0;
  transform: translateY(20px); /* start slightly below */
  animation: fadeSlideUp 1s ease forwards;
}

/* Stagger animations for nicer effect */
.service h2 {
  animation-delay: 0.3s;
}

.service p {
  animation-delay: 0.6s;
}

/* Keyframes for fade + slide up */
@keyframes fadeSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*-----------------------------------------------------------------------*/

.service p::after {
  content: "";
  display: block;
  width: 680px;           /* bar length */
  height: 5px;           /* bar thickness */
  background: #3C63AE;      /* bar color */
  margin: 10px auto 0;   /* spacing and center */
  border-radius: 2px;
}

/*-----------------------------------------------------------------------*/



/*-----------------------------------------------------------------------*/


.boxstrategic{ 
	  display: flex;
  flex-direction: column;     /* stack h5 and p vertically */
  justify-content: center;    /* vertical center */
  align-items: center;
	/* horizontal center */
  width: 200px;
  height: 150px;
  background-color: #222;     /* example dark background */
  border-radius: 8px;
	
}
.strategictext h5 {
  color: white;
  font-size: 18px;
  margin: 5px 0;
}

.strategictext p {
  color: white;
  font-size: 12px;
  margin: 0;
}

.features {
  display: flex;
  flex-wrap: wrap;           /* allow wrapping on smaller screens */
grid-template-columns: repeat(3, 1fr);
  justify-content: center;   /* center the row */
  gap: 30px;                 /* spacing between boxes */
  max-width: 1700px;         /* optional max width */
  margin: 50px auto;         /* center container */
  box-sizing: border-box;
}
.service-box {
  width: 400px;             /* box width */
  height: 400px;            /* square box */
  background-color: white;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start; /* start from top for spacing */
  padding: 20px;
  text-align: center;
  box-sizing: border-box;
}

.service-box img {
  width: 100%;              /* fill box width */
  height: 100%;              /* larger image height */
  object-fit: cover;        /* fill nicely */
  border-radius: 8px;       /* optional rounded corners */
  margin-bottom: 15px;      /* space between image and text */
	transition: transform 0.3s ease, box-shadow 0.3s ease; 
}

.service-box img:hover {
  transform: scale(1.05);         /* slightly zoom in */
  box-shadow: 0 10px 20px rgba(0,0,0,0.2); /* subtle shadow */
}


/* Responsive: 2 boxes per row on medium screens */
@media screen and (max-width: 1500px) {
  .features {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Responsive: 1 box per row on small screens */
@media screen and (max-width: 1024px) {
  .features {
    grid-template-columns: 1fr;
  }
}
.service-box h5 {
	font-family: 'Readex Pro', sans-serif;
    font-weight: 400; 
  font-size: 18px;
  margin: 5px 0;
  color: black;
}

.service-box p {font-family: 'Readex Pro', sans-serif;
    font-weight: 300; 
  font-size: 12px;
  color: black;margin-top: 5px;
}
.service-box h5,
.service-box p {
  position: absolute;           /* overlay text */
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);  /* center both horizontally and vertically */
  color: white;
  text-align: center;
  margin: 0;
  padding: 0 10px;              /* optional: small padding for readability */
}


.feature-button {
  text-align: center;   /* center horizontally */
  margin-top: 10px;     /* space above the button */
}

.feature-button button {
  	background-color: transparent; 
	border: 3px solid #3C63AE;
 	 color: #3C63AE;font-family: 'Readex Pro', sans-serif;
    font-weight: 400; 
  	font-size: 16px;
  	padding: 12px 40px;
 	 border-radius: 30px;
  	cursor: pointer;
  	transition: 0.3s ease;
}

.feature-button button:hover {
  background-color: #3C63AE; /* fill on hover */
  border-color: #3C63AE;     /* stroke becomes blue */
  color: white;           /* text stays white */
}


/*our mission work area*/


.mission{
	
	width: 100%;
  	background-color: white; 
	display: flex;
  	flex-direction: column;
  	justify-content: center;  
  	align-items: center;
	
}
.mission h2{ margin-top:40px;
	color: black;padding-bottom: 10px;padding-top: 50px;
	align-content: center;
	font-family: 'Readex Pro', sans-serif;
    font-weight: 400; 
	font-size: 40px;}

.mission p{ 
	color: black;
	text-align: center;
	font-family: 'Readex Pro', sans-serif;
    font-weight: 100; 
	font-size: 25px;padding-bottom: 50px;border-bottom: 3px #FFFFFF;
	
}
.mission p::after {
  content: "";
  display: block;
  width: 650px;           /* bar length */
  height: 5px;           /* bar thickness */
  background: #3C63AE;      /* bar color */
  margin: 10px auto 0;   /* spacing and center */
  border-radius: 2px;
}

/* mission h2 p bar for animation ----------------------------------------------------*/
.mission h2,
.mission p,
.mission p::after {
  opacity: 0;
  transform: translateY(20px); /* start slightly below */
  animation: fadeSlideUp 1s ease forwards;
}

/* Stagger animations */
.mission h2 {
  animation-delay: 0.2s;
}

.mission p {
  animation-delay: 0.5s;
}

/* Animate the blue bar after text */
.mission p {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideUp 1s ease forwards;
  animation-delay: 0.5s;
}

@keyframes fadeSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Keyframes for bar growth */
@keyframes growBar {
  to {
    width: 650px; /* final bar width */
    opacity: 1;
  }
}

/*--------------------------------------------------------------------------------------------*/

.missionbanner{ width: 100%;
  height: 75vh;
  background: url("images & icons/mission background.jpg") no-repeat center center/cover;}

.missionbanner {
  display: flex;
  justify-content: flex-start; /* push everything to left */
  align-items: center;
  padding: 60px 20px;
}

.mission-container {
  display: grid;
  grid-template-columns: 1fr 2px 1fr; /* left | bar | right */
  gap: 40px;
  max-width: 1000px;
  width: 100%;
}



.mission-left,
.mission-right {
	margin-top: 90px;
 	display: flex;
  	flex-direction: column;
  	justify-content: flex-start; /* stack from top */
  	align-items: flex-start;     /* align all to left */
  	gap: 40px;
}

.text-box h6 {
	
  font-size: 25px;
  font-family: 'Readex Pro', sans-serif;
    font-weight: 400; 
  color: #3C63AE;
  margin-bottom: 8px; 
}

.text-box p {
	font-family: 'Readex Pro', sans-serif;
    font-weight: 300; 
  font-size: 13px;
  color: #3C63AE;
  line-height: 1.5;
}

.mission-bar {
  background-color: #3C63AE; /* bar color */
  width: 3px;
  height: 250px;
  border-radius: 2px;
  margin: 60px auto 0 0px;/* top | right | bottom | left */
	
}

/* Text animations ------------------------------------------------------------------------*/



/* Mission banner text animation */
.mission-left h6,
.mission-left p,
.mission-right h6,
.mission-right p {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideUp 1s ease forwards;
}

/* Stagger delays for smooth appearance */
.mission-left h6 { animation-delay: 0.3s; }
.mission-left p  { animation-delay: 0.3s; }
.mission-right h6{ animation-delay: 0.3s; }
.mission-right p { animation-delay: 0.3s; }

@keyframes fadeSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Vertical bar animation */


/* Optional: mission banner fade-in */
.missionbanner {
  opacity: 0;
  animation: bannerFade 1s ease forwards;
  animation-delay: 0.2s;
}

@keyframes bannerFade {
  to { opacity: 1; }
}


/*----------------------------------------------------------------------------------------------------*/


/*why choose us*/


.choosepage{
	
	width: 100%; 
	display: flex;
  	flex-direction: column;
  	justify-content: center;  
  	align-items: center;
	
}

.choosepage h2{ 
	margin-top:40px;
	color: black;
	padding-bottom: 10px;
	align-content: center;
	font-family: 'Readex Pro', sans-serif;
    font-weight: 400; 
	font-size: 40px;}

.choosepage p{ 
	color: black;
	text-align: center;
	font-family: 'Readex Pro', sans-serif;
    font-weight: 100; 
	font-size: 25px;
	padding-bottom: 10px;
	
}

/*
--------------------------------------------------------------------------------*/

/* Initial state: hidden and slightly below */
.choosepage h2,
.choosepage p {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideUp 1s ease forwards; /* animation properties */
}

/* Stagger the delay so h2 appears first, then p */
.choosepage h2 {
  animation-delay: 0.3s;
}

.choosepage p {
  animation-delay: 0.6s;
}

/* Keyframes for fade + slide */
@keyframes fadeSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*
--------------------------------------------------------------------------------*/



.choosepage p::after {
  content: "";
  display: block;
  width: 544px;           /* bar length */
  height: 5px;           /* bar thickness */
  background: #3C63AE;      /* bar color */
  margin: 10px auto 0;   /* spacing and center */
  border-radius: 2px;
}

/*animation area -------------------------------------------------------------------------------*/

/*------------------------------------------------------------------------------------------*/

.circle-section {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.circle {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden; /* keep everything inside */
}

/*---------------------------------------------------------------------------------*/

.circle {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden; /* keep everything inside */
  
  /* Animation */
  opacity: 0;                  /* start invisible */
  transform: scale(0.8);       /* slightly smaller */
  animation: circleAppear 0.8s ease forwards;
}

/* Stagger multiple circles if needed */
.circle:nth-child(1) { animation-delay: 0.2s; }
.circle:nth-child(2) { animation-delay: 0.4s; }
.circle:nth-child(3) { animation-delay: 0.6s; }
.circle:nth-child(4) { animation-delay: 0.8s; }

@keyframes circleAppear {
  to {
    opacity: 1;
    transform: scale(1);       /* final size */
  }
}

/*---------------------------------------------------------------------------------*/

.circle:hover {
  background-color: #007bff; /* blue on hover */
  color: white;
}

/* background image fits inside circle */
.circle img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
	padding: 2px;
  z-index: 1; /* behind text */
}



/* counting number */
.circle .count {
  font-size: 30px;font-family: 'Readex Pro', sans-serif;
    font-weight: 400; 
  z-index: 2; /* above image */
  position: relative;top: -5px;
}

/* plus sign next to number */
.circle .plus {
  font-size: 20px;
  font-weight: bold;
  margin-left: 3px;
  z-index: 2;
  position: relative;
}

/* label text */
.circle p {
  font-size: 14px;
  margin-top: 8px;
  z-index: 2;
  position: relative;
}

/*about area*/

.aboutarea{
	
	width: 100%;
  	/*background-color: green; */
	display: flex;
  	flex-direction: column;
  	justify-content: center;  
  	align-items: center;
	
}

.aboutarea h2{ 
	margin-top:40px;
	color: black;
	padding-bottom: 10px;
	padding-top: 50px;
	align-content: center;
	font-family: 'Readex Pro', sans-serif;
    font-weight: 400; 
	font-size: 40px;}

.aboutarea p{ 
	color: black;text-align: center;
	font-family: 'Readex Pro', sans-serif;
    font-weight: 100; 
	font-size: 25px;
	padding-bottom: 50px;
	border-bottom: 3px #FFFFFF;
	
}

/*-----------------------------------------------------------------------------------*/

/* Initial state: hidden and slightly down */
.aboutarea h2,
.aboutarea p {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideUp 1s ease forwards;
}

/* Stagger animations */
.aboutarea h2 {
  animation-delay: 0.2s;
}

.aboutarea p {
  animation-delay: 0.5s;
}

/* Keyframes for fade + slide animation */
@keyframes fadeSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*------------------------------------------------------------------------------------------------*/


.aboutarea p::after {
  content: "";
  display: block;
  width: 650px;           /* bar length */
  height: 5px;           /* bar thickness */
  background: #3C63AE;      /* bar color */
  margin: 10px auto 0;   /* spacing and center */
  border-radius: 2px;
}


/*----------------------------------------------------------------------------------------------*/

.aboutbanner{ 
	 width: 100%;
  height: 75vh;
  background: url("images & icons/about banner.jpg") no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 20px;
  position: relative;
}

.banner-content {
  max-width: 800px;
}

.banner-content h2 {
  font-size: 48px;
  margin-bottom: 15px;
  font-family: 'ReadexPro Medium';
}

.banner-content p {
	
	color: white;
  font-size: 20px;
  margin-bottom: 25px;
  font-family: 'Readex Pro', sans-serif;
    font-weight: 400; 
}
/*--------------------------------------------------------------------------*/
.banner-content p {
  color: white;
  font-size: 20px;
  margin-bottom: 25px;
  font-family: 'Readex Pro', sans-serif;
  font-weight: 400;

  opacity: 0;                  /* start invisible */
  transform: translateY(20px);  /* start slightly lower */
  animation: fadeSlideUp 1s ease forwards;
  animation-delay: 0.5s;        /* delay to sync with title if needed */
}

@keyframes fadeSlideUp {
  to {
    opacity: 1;                 /* fade in */
    transform: translateY(0);   /* slide up to original position */
  }
}

/*--------------------------------------------------------------------------*/

.explore-btn {
  display: inline-block;
	font-family: 'Readex Pro', sans-serif;
    font-weight: 300; 
  padding: 12px 40px;
  border: 2px solid white;   /* border is already there */
  border-radius: 50px;
  color: white;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s ease;
  box-sizing: border-box;    /* prevents size shift */
}

.explore-btn:hover {
  background-color: #3C63AE;
  color: white;  /* your brand navy */
  border: 2px solid #3C63AE;  /* keep same border on hover */
}

/*------------------------------------------our clients-------------------------------------------------------------*/

.clients-container {
  padding: 60px 20px;
  background: white;
  text-align: center;
}

.clients-header h2 {
  font-size: 40px;
  font-family: 'Readex Pro', sans-serif;
  font-weight: 400;
  color: black;
  margin-bottom: 10px;
	opacity: 0;
	 transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards;
}

.clients-header p::after {
  content: "";
  display: block;
  width: 650px;           /* bar length */
  height: 5px;           /* bar thickness */
  background: #3C63AE;      /* bar color */
  margin: 10px auto 0;   /* spacing and center */
  border-radius: 2px;
	  animation: expandBar 0.8s ease forwards;
  animation-delay: 0.6s;
}
.clients-header p {
  font-size: 25px;
	font-weight: 100;
	font-family: 'Readex Pro', sans-serif;
  color: black;
  margin-bottom: 40px;
	opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 0.3s;
  position: relative;
}

/* Logos grid */
.clients-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  align-items: center;
  justify-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.client-logo img {
  width: 120px;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.client-logo img:hover {
  filter: grayscale(0%) brightness(1.1);
  transform: scale(1.05);
}

.client-logo {
  opacity: 0;
  transform: scale(0.9);
  animation: fadeIn 0.8s ease forwards;
  animation-delay: 0.8s; 
}




/* Animations */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes expandBar {
  to {
    width: 650px;
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}



/*---------------------------------------------------------screen work area--------------------------------------*/


/* 📱 Mobile Portrait (max-width: 480px) */
@media (max-width: 480px) and (orientation: portrait) {
  .clients-container {
    padding: 50px 20px;  /* extra breathing space */
  }
  .clients-header h2 {
    font-size: 16px;     /* larger heading for 430px+ screens */
  }
  .clients-header p {
    font-size: 10px;
    margin-bottom: 28px;
  }
.clients-header p::after {
    max-width: 270px;      /* reduce bar size for small screens */
    height: 3px;
  }
  .client-logo img {
    width: 100px;        /* good size for wide phones */
  }
}
/* 📱 Mobile Landscape (max-width: 768px, landscape) */
@media (max-width: 932px) and (orientation: landscape) {
  .clients-container {
    padding: 35px 20px;
  }
  .clients-header h2 {
    font-size: 20px;
  }
  .clients-header p {
    font-size: 14px;
    margin-bottom: 25px;
  }
  .clients-header p::after {
    max-width:320px;
    height: 3px;
  }
  .client-logo img {
    width: 80px;
  }
}

/* 📲 iPad Pro Portrait (1023px–1367px, portrait) */
@media only screen and (min-width: 1023px) and (max-width: 1367px) and (orientation: portrait) {
  .clients-container {
    padding: 60px 50px;
  }
  .clients-header h2 {
    font-size: 24px;
  }
  .clients-header p {
    font-size: 16px;
  }
  .clients-header p::after {
    max-width: 370px;
    height: 5px;
  }
  .client-logo img {
    width: 125px;
  }
}

/* 💻 iPad Pro Landscape (1023px–1367px, landscape) */
@media only screen and (min-width: 1023px) and (max-width: 1367px) and (orientation: landscape) {
  .clients-container {
    padding: 70px 60px;
  }
  .clients-header h2 {
    font-size: 32px;
  }
  .clients-header p {
    font-size: 20px;
  }
  .clients-header p::after {
    max-width: 450px;
    height: 5px;
  }
  .client-logo img {
    width: 140px;
  }
}

/* =========================
   Clients section - single, fluid desktop + large-screen rules
   (Put this at the end of your CSS file)
   ========================= */

.clients-container {
  padding: clamp(40px, 6vw, 120px) clamp(20px, 4vw, 100px);
  max-width: 1600px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* Heading (fluid from small -> large) */
.clients-header h2 {
  font-size: clamp(20px, 2.5vw, 48px);   /* min 20px, fluid, max 48px */
  line-height: 1.08;
  margin: 0 0 12px;
}

/* Subtitle */
.clients-header p {
  font-size: clamp(12px, 1.2vw, 26px);   /* min 12px, fluid, max 26px */
  margin: 0 0 clamp(12px, 1.5vw, 28px);
}
@media (max-width: 1366px) {
  .clients-header p::after {
    max-width: clamp(350px, 25vw, 400px);
	  max-height: 3px;/* fluid width for resizing */
  }
}

/* Optional smaller laptops (768px–1023px) */
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .clients-header p::after {
    width: 180px; /* narrower for small laptops */
  }
}


/* Client logos scale fluidly */
.client-logo img {
  width: clamp(80px, 8vw, 200px);  /* min 80, fluid, max 200 */
  height: auto;
  display: block;
}

/* Make sure grid / flex that contains logos centers nicely */
.clients-logos, .clients-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(100px, 12vw, 220px), 1fr));
  gap: clamp(10px, 1.2vw, 40px);
  align-items: center;
  justify-items: center;
}

/* Optional stronger override if something else keeps overriding */
body .clients-container .clients-header h2,
body .clients-container .clients-header p {
  /* uncomment only if absolutely necessary */
  /* font-weight: 700 !important; */
}




/*review area work */


.reviewarea{
	
	width: 100%;
	display: flex;
  	flex-direction: column;
  	justify-content: center;  
  	align-items: center;
	
}

.reviewarea h2{ 
	font-family: 'Readex Pro', sans-serif;
    font-weight: 400; 
	margin-top:40px;
	color: black;
	padding-bottom: 10px;
	align-content: center;
	font-size: 40px;}

.reviewarea p{ 
	color: black;
	text-align: center;
	font-family: 'Readex Pro', sans-serif;
    font-weight: 100; 
	font-size: 25px;
	padding-bottom: 10px;
	border-bottom: 3px #FFFFFF;
	
}

/*----------------------------------------------------------------------------------------*/

.reviewarea h2,
.reviewarea p {
  opacity: 0;                  /* start hidden */
  transform: translateY(20px); /* start slightly lower */
  animation: fadeSlideUp 1s ease forwards;
}

.reviewarea h2 {
  animation-delay: 0.3s;       /* h2 appears first */
}

.reviewarea p {
  animation-delay: 0.6s;       /* paragraph appears after h2 */
}

@keyframes fadeSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*----------------------------------------------------------------------------------------*/

.reviewarea p::after {
  content: "";
  display: block;
  width: 600px;           /* bar length */
  height: 5px;           /* bar thickness */
  background: #3C63AE;      /* bar color */
  margin: 10px auto 0;   /* spacing and center */
  border-radius: 2px;
}



/*----------------------------------------------------------------------------------------*/

/*review box*/

.reviews {
  display: flex;
  justify-content: center;height: 350px;
  gap: 40px;
  margin: 60px auto 100px;
  flex-wrap: wrap; /* responsive */
}


/*----------------------------------------------------------------------------------------*/

.review-box {
  width: 300px;
  background: #3C63AE;
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  position: relative;
  transition: all 0.3s ease-in-out;
  /* Animation */
  opacity: 0;                  /* start invisible */
  transform: translateY(20px); /* start slightly below */
  animation: fadePop 0.8s ease forwards; /* run animation */
  animation-delay: 0.5s;       /* optional delay */
}

@keyframes fadePop {
  to {
    opacity: 1;
     /* move to original position */
  }
}

/*----------------------------------------------------------------------------------------*/

.profile-pic {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit:cover;
}

.review-box h4 {
  margin-top: 15px;
  font-size: 18px;
  font-family: 'Readex Pro', sans-serif;
    font-weight: 400; 
  color: white; /* your brand navy */
}

.review-box h5 {
  margin-top: 5px;
  font-size: 12px;
  font-family: 'Readex Pro', sans-serif;
    font-weight: 100; 
  color: white; /* your brand navy */
}

.review-box p {
  font-size: 13px;
	font-family: 'Readex Pro', sans-serif;
    font-weight: 100; 
  color: white;
  margin-top: 10px;
  line-height: 1.5;
}

/* Optional hover effect */
.review-box:hover {
   transform: translateY(-8px) scale(1.03);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  transition: all 0.3s ease-in-out;
}

/*contact area*/

.contact-area {
  width: 100%;
  padding: 0px 20px;
  background-color: white;
  text-align: center;
}

.contact-area h2 {
  font-family: 'Readex Pro', sans-serif;
    font-weight: 400; 
  font-size: 36px;
  color: black;
  margin-bottom: 10px;
}

.contact-area p {
  font-family: 'Readex Pro', sans-serif;
    font-weight: 100; 
  font-size: 18px;
  color: black;
  margin-bottom: 40px;
}


/*----------------------------------------------------------------------------------------*/


.contact-area h2,
.contact-area p {
  opacity: 0;                /* start invisible */
  transform: translateY(20px); /* start slightly below */
  animation: fadeSlideUp 0.8s ease forwards; /* animation */
}

.contact-area h2 {
  animation-delay: 0.3s; /* delay for h2 */
}

.contact-area p {
  animation-delay: 0.6s; /* delay for p */
}

@keyframes fadeSlideUp {
  to {
    opacity: 1;
    transform: translateY(0); /* move to original position */
  }
}

/*----------------------------------------------------------------------------------------*/


.contact-area p::after {
  content: "";
  display: block;
  width: 680px;           /* bar length */
  height: 5px;           /* bar thickness */
  background: #3C63AE;      /* bar color */
  margin: 10px auto 0;   /* spacing and center */
  border-radius: 2px;
}

.contact-area p::after {
  content: "";
  display: block;
  width: 0;                    /* start collapsed */
  height: 5px;
  background: #3C63AE;
  margin: 10px auto 0;
  border-radius: 2px;
  opacity: 0;                  /* start invisible */
  animation: growFadeBar 1s ease forwards;
  animation-delay: 0.8s;       /* delay after text */
}

@keyframes growFadeBar {
  to {
    width: 680px;               /* final width */
    opacity: 1;                 /* fade in */
  }
}

/*----------------------------------------------------------------------------------------*/


.contact-form {
  max-width: 700px; padding: 30px;
  margin: 0 auto;
}

.contact-form {
  max-width: 700px; 
  padding: 30px;
  margin: 0 auto;
  
  /* animation properties */
  opacity: 0;                /* start invisible */
  transform: translateY(20px); /* start slightly below */
  animation: fadeSlideUp 1s ease forwards;
  animation-delay: 0.5s;     /* optional delay */
}

@keyframes fadeSlideUp {
  to {
    opacity: 1;               /* fade in */
    transform: translateY(0); /* slide to original position */
  }
}


.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap; /* responsive for smaller screens */
}

.form-row input {
  flex: 1;
	font-family: 'Readex Pro', sans-serif;
    font-weight: 400; 
  padding: 14px 5px;
  border-radius: 50px;
  border: 1px solid #3C63AE;
  font-size: 13px;
}

.phone-input {
  display: flex;
  align-items: center;
  flex: 1;
  border: 1px solid #3C63AE;
  border-radius: 50px;
  overflow: hidden;
  background: #fff;
}

.phone-input select {
  padding: 15px 20px;
	font-family: 'Readex Pro', sans-serif;
    font-weight: 400; 
  border: none;
  background: #3C63AE;
  font-size: 13px;
  color: white;
  border-right: 1px solid #3C63AE;
  appearance: none; /* removes default arrow in some browsers */
  cursor: pointer;
}


.phone-input input {
	font-family: 'Readex Pro', sans-serif;
    font-weight: 400; 
  flex: 1;
  border: none;
  padding: 14px 20px;
  font-size: 13px;
  outline: none;
}

.phone-input input::placeholder {
  color: #aaa;
}
textarea {
  width: 100%;
	font-family: 'Readex Pro', sans-serif;
    font-weight: 400; 
  padding: 16px 20px;
  border-radius: 30px;
  border: 1px solid #3C63AE;
  font-size: 13px;
  margin-bottom: 25px;
  resize: none;
  min-height: 120px;
}

.send-btn {
  display: inline-block;
	font-family: 'Readex Pro', sans-serif;
    font-weight: 300; 
  padding: 14px 70px;
  border: 2px solid #3C63AE;
  border-radius: 50px;
  background-color: transparent;
  color: #3C63AE;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s ease;
}

.send-btn:hover {
  background-color: #3C63AE; color: white;/* hover color */
  border-color: #007bff;
}


/*footer*/

.site-footer {
  width: 100%;
  color: white;
  padding: 50px 20px;
  
  /* background image settings */
  background-image: url("images & icons/footer banner-01.jpg");
  background-size: cover;        /* makes it always cover full footer */
  background-position: center;   /* keeps it centered */
  background-repeat: no-repeat;  /* stops tiling/repeating */
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
}

/* Left section: Contact */
.footer-left h4 {
	text-align: center;
	font-family: 'Readex Pro', sans-serif;
    font-weight: 400; 
  	font-size: 18px;
  	margin-bottom: 10px;
}

.footer-left a {
  color: white;         /* your brand color */
  text-decoration: none;   /* remove underline */
  font-weight: 500;
}

.footer-left a:hover {
  color: black;         /* hover effect */
}

.contact-list {
  list-style: none; /* remove bullets */
  padding: 0;
  margin: 0;
}

.contact-list li {
	text-align: center;
	font-family: 'Readex Pro', sans-serif;
    font-weight: 400; 
  font-size: 14px;
  margin: 5px 0;cursor: pointer;
}

.contact-list li:hover{ color: black;
	
	
}
/* Center section: Logo + Social Icons */
.footer-center {
  flex: 1;
  text-align: center;
}

.footer-logo {
	margin-left: 100px;
  width: 200px;
  margin-bottom: 15px;
}

.social-icons {
	margin-left: 90px;
  	display: flex;
  	justify-content: center;
  	gap: 25px;
}

.social-icons img {
	
  width: 30px;
  height: 30px;
  transition: 0.3s;
}

.social-icons img:hover {
  transform: scale(1.1);
}

/* Right section: Location */
.footer-right h4 {
	text-align: center;
	font-family: 'Readex Pro', sans-serif;
    font-weight: 400; 
  font-size: 18px;
  margin-bottom: 10px;
}

.footer-right p {
	text-align: center;
	font-family: 'Readex Pro', sans-serif;
    font-weight: 300; 
	color: white;
  	font-size: 14px;
  	margin: 5px 0;
}

/* Sidebar container */
.floating-social-sidebar1 {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 15px; /* space between buttons */
}

/* Each button base style */
.floating-social-sidebar1 a {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  overflow: hidden;
}

/* Icon images */
.floating-social-sidebar1 a img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
  pointer-events: none;
}

/* WhatsApp Button (above Instagram) */
.whatsapp-button1 {
  position: fixed;
  right: 20px;
  bottom: 90px;               /* sits above Instagram */
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #25D366;  /* WhatsApp green */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  z-index: 1000;
  animation: whatsapp-bounce 2s infinite; /* bounce animation */
}

.whatsapp-button1 img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  pointer-events: none;
}

.whatsapp-button1:hover {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 10px 28px rgba(0,0,0,0.22);
  background: #fff;
}

/* Bounce animation (WhatsApp only) */
@keyframes whatsapp-bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Instagram Button (bottom-right corner) */
.instagram-button1 {
  position: fixed;
  right: 20px;
  bottom: 20px;               /* sticks at bottom */
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(45deg,
    #f09433 0%, #e6683c 25%,
    #dc2743 50%, #cc2366 75%, #bc1888 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  z-index: 1000;
}

.instagram-button1 img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  pointer-events: none;
}

.instagram-button1:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 0 18px rgba(225, 48, 108, 0.6), 0 10px 28px rgba(0,0,0,0.22);
}

/* Responsive smaller size on mobiles */
@media (max-width: 767px) {
  .floating-social-sidebar1 a {
    width: 50px;
    height: 50px;
  }
  .floating-social-sidebar1 a img {
    width: 22px;
    height: 22px;
  }
}









html {
  scroll-behavior: smooth;
}

html {
  scroll-behavior: smooth; /* smooth anchor scrolling */
  scroll-padding-top: 0;   /* optional if you have fixed header */
}


/* Modal container */
.modal {
  display: none; /* hidden by default */
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto; /* scroll if needed */
  background-color: rgba(0,0,0,0.5); /* semi-transparent background */
}

/* Modal content box */
.modal-content {
  background-color: white;
  margin: 15% auto; /* center vertically & horizontally */
  padding: 20px;
  border-radius: 10px;
  width: 80%;
  max-width: 400px;
  text-align: center;
  font-family: 'Readex Pro', sans-serif;
}

/* Close button */
.close {
  color: #3C63AE;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover {
  color: #3C63AE;
}

.modal a {
  display: inline-block;
  margin-top: 10px;
  color: #3C63AE;
  text-decoration: none;
  font-weight: 500;
}

.modal a:hover {
  text-decoration: underline;
}

.modal-content h2 {
  font-family: 'Readex Pro', sans-serif;
  font-size: 18px;       /* adjust size */
  color: black;        /* change color */
  margin-bottom: 10px;
}

/* Modal paragraph */
.modal-content p {
  font-family: 'Readex Pro', sans-serif;
  font-size: 14px;       /* adjust size */
  color: black;           /* change color */
  margin-bottom: 15px;
}

/*main animations-------------------------------------------------------------------------------------------*/

/* Banner animation */
.bannercontent h1,
.bannercontent p {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeSlideUp 1s ease forwards;
}

.bannercontent h1 {
  animation-delay: 0.3s;
}

.bannercontent p {
  animation-delay: 0.6s;
}

@keyframes fadeSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*service box animation-----------------------------------------------------------------------------*/

.service-box {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.service-box.show {
  opacity: 1;
  transform: translateY(0);
}


/*scroll settings animation---------------------------------------------------------------------------------*/


/*our services page----------------------------------------------------------------------------*/

.topbanner {
 
  width: 100%;
  height: 30vh;
  background-image: url("images & icons/our services banner.jpg");
}

.topbannertxt { 
  padding-top: 60px;
  text-align: center;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.topbannertxt h1 {
  padding-top: 10px;
  font-family: 'Readex Pro', sans-serif;
  font-weight: 400; 
  font-size: 30px;
  margin-bottom: 15px;
}

.topbannertxt p {
  font-family: 'Readex Pro', sans-serif;
  font-weight: 300; 
  font-size: 18px;
}

.service-row {
  margin-top: 50px;
  margin-left: 100px;
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
}

.service-left {
  width: 200px; 
  text-align: center;
  margin-right: 30px;
}

.service-left img {
  width: 120px;
  height: auto;
  display: block;
  margin: 0 auto 10px;
}

.service-left h5 {
  font-family: 'Readex Pro', sans-serif;
  font-weight: 400; 
  font-size: 18px;
  margin: 0;
}

.service-right {
  flex: 1;
}

.service-right p {
  font-family: 'Readex Pro', sans-serif;
  font-weight: 300; 
  padding: 8px 0;
  margin: 10px;
}

.service-divider {
  width: 80%;
  height: 3px;
  background-color: #3C63AE;
  margin: 10px 0;
  border-radius: 2px;
  margin-left: auto;
}

.action-button-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.action-button-wrapper a {
	margin-bottom: 50px;
  display: inline-block;
  background-color: transparent;
  border: 3px solid #3C63AE;
  color: #3C63AE;
  font-family: 'Readex Pro', sans-serif;
  font-weight: 400;
  font-size: 16px;
  padding: 12px 40px;
  border-radius: 30px;
  cursor: pointer;
  text-decoration: none;
  transition: 0.3s ease;
}

.action-button-wrapper a:hover {
  background-color: #3C63AE;
  border-color: #3C63AE;
  color: white;
}
/*--------------------------------------resize settings----------------------------------------------------------------------------*/


/* ==============================
   ANIMATIONS
============================== */
.topbannertxt h1, 
.topbannertxt p {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideUp 1s ease forwards;
}

.topbannertxt h1 { animation-delay: 0.3s; }
.topbannertxt p { animation-delay: 0.6s; }

@keyframes fadeSlideUp {
  to { opacity: 1; transform: translateY(0); }
}

.service-row {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards;
}
.service-row:nth-of-type(1) { animation-delay: 1s; }

@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}

.service-divider {
  width: 0;
  height: 3px;
  background-color: #3C63AE;
  margin: 20px 0;
  border-radius: 2px;
  margin-left: auto;
  animation: growBar 1s ease forwards;
}
.service-divider:nth-of-type(1) { animation-delay: 2s; }
.service-divider:nth-of-type(2) { animation-delay: 2s; }

@keyframes growBar {
  to { width: 80%; }
}


/*mobile screen portrait-------------------------------------------------*/


@media screen and (max-width: 768px) and (orientation: portrait) {
  
	.topbanner {
    height: 10vh;
    background-size: cover;
  }

  .topbannertxt {
    padding-top: 20px;
  }

  .topbannertxt h1 {
    font-size: 12px;
  }

  .topbannertxt p {
    font-size: 8px;
    padding: 0 10px;
  }

  .service-row {
    flex-direction: column;
    margin-left: 20px;
    margin-right: 20px;
  }

  .service-left {
    width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
  }
	.service-left h5{
		font-size: 15px;
	}
	
  .service-left img {
    width: 60px;
  }

 .service-divider {
    width: 50px;
    height: 3px;
    background-color: #3C63AE;
    margin: 10px auto;   /* center horizontally */
    border-radius: 2px;
  }
	
  .service-right p {
  position: relative;
  padding-left: 15px;   /* space for bullet */
  text-align: left;     /* bullets usually look better left-aligned */
  font-size: 10px;
  margin: 5px 0;
}

.service-right p::before {
  content: "•";         /* bullet */
  position: absolute;
  left: 0;
  color: #3C63AE;       /* brand color for bullets */
  font-size: 12px;
  line-height: 1;
}

  .action-button-wrapper a {
    padding: 5px 30px;
    font-size: 14px;
	  margin-bottom: 20px;
  }
}


@media screen and (max-width: 1024px) and (orientation: landscape)  {

  .topbanner {
    height: 40vh;           /* slightly taller than portrait */
    background-size: cover;
  }

  .topbannertxt {
    padding-top: 45px;
  }

  .topbannertxt h1 {
    font-size: 26px;
  }

  .topbannertxt p {
    font-size: 15px;
    padding: 0 15px;
  }

.service-row {
    flex-direction: row;
    margin-left: 10px;
    margin-right: 20px;
  }
	
	.service-right{
		margin-left: 100px;
		
	}
	
	.service-right p {
    position: relative;
    padding-left: 20px;   /* space for bullet */
    margin: 5px 0;
    font-size: 12px;
    list-style: none;     /* remove default bullets if any */
}

/* Custom bullet */
.service-right p::before {
    content: "•";          /* bullet symbol */
    position: absolute;
    left: 0;               /* bullet on left */
    color: #3C63AE;        /* brand color */
    font-size: 14px;
    line-height: 1;
}
	
  .service-left {
    width: 120px;
    margin-left: 50px;
    margin-right: 20px;
    margin-bottom: 0;
    text-align: center;
  }
	.service-left h5{
		font-size: 13px;
	}
	
  .service-left img {
    width: 80px;
    height: auto;
  }

  /* Divider starting from the right */
  .service-divider {
    width: 60px;
    height: 3px;
    background-color: #3C63AE;
    margin: 10px 0;
    border-radius: 2px;
    margin-left: auto;   /* pushes it to the right */
    margin-right: 0;     /* ensure it's aligned to the right */
  }

 

 
  .action-button-wrapper a {
    padding: 8px 35px;
    font-size: 15px;
    margin-bottom: 20px;
  }

}

/* iPad Portrait CSS */
@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {

  .topbanner {
    height: 15vh; /* taller banner for iPad */
    background-size: cover;
  }

  .topbannertxt {
    padding-top: 60px;
  }

  .topbannertxt h1 {
    font-size: 24px; /* larger heading */
  }

  .topbannertxt p {
    font-size: 16px;
    padding: 0 20px;
  }

  .service-row {
    flex-direction: row;  /* left-right layout for iPad */
    margin-left: 40px;
    margin-right: 40px;
    align-items: flex-start;
  }

  .service-left {
    width: 150px;
    margin-right: 30px;
    margin-bottom: 0;
    text-align: center;
  }

  .service-left img {
    width: 100px; /* slightly bigger icons */
    height: auto;
  }

  .service-left h5 {
    font-size: 18px;
  }

  .service-right {
    flex: 1;
    margin-left: 20px;
  }

  .service-right p {
    position: relative;
    padding-left: 20px; /* space for bullet */
    font-size: 14px;
    margin: 8px 0;
    text-align: left;
  }

  .service-right p::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3C63AE;
    font-size: 16px;
    line-height: 1;
  }

 .service-divider {
    width: 60px;
    height: 3px;
    background-color: #3C63AE;
    margin: 15px 0 15px auto; /* top, right, bottom, left */
    border-radius: 2px;
}

  .action-button-wrapper a {
    padding: 10px 40px;
    font-size: 16px;
    margin-bottom: 20px;
  }
}


@media only screen and (min-width: 1023px) and (max-width: 1367px) and (orientation: landscape) {

  .topbanner {
    height: 30vh; /* taller banner for iPad */
    background-size: cover;
  }

  .topbannertxt {
    padding-top: 100px;
  }

  .topbannertxt h1 {
    font-size: 34px; /* larger heading */
  }

  .topbannertxt p {
    font-size: 20px;
    padding: 0 20px;
  }

  .service-row {
    flex-direction: row;  /* left-right layout for iPad */
    margin-left: 100px;
    margin-right: 40px;
    align-items: flex-start;
  }

  .service-left {
    width: 150px;
    margin-right: 30px;
    margin-bottom: 0;
    text-align: center;
  }

  .service-left img {
    width: 150px; /* slightly bigger icons */
    height: auto;
  }

  .service-left h5 {
    font-size: 18px;
  }

  .service-right {
    flex: 1;
    margin-left: 50px;
  }

  .service-right p {
    position: relative;
    padding-left: 20px; /* space for bullet */
    font-size: 20px;
    margin: 8px 0;
    text-align: left;
  }

  .service-right p::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3C63AE;
    font-size: 16px;
    line-height: 1;
  }

  .service-divider {
    width: 60px;
    height: 3px;
    background-color: #3C63AE;
    margin: 15px 0 15px auto; /* top, right, bottom, left */
    border-radius: 2px;
  }

  .action-button-wrapper a {
    padding: 10px 40px;
    font-size: 16px;
    margin-bottom: 20px;
  }
}
/*--------------------------------------------------------------------------*/

/* Default desktop style (unchanged) */
.topbanner {
  background-color: red;
  width: 100%;
  height: 30vh; /* desktop fixed */
  background-image: url("images & icons/our services banner.jpg");
  background-size: cover;
  background-position: center;
}

/* Scalable resize version */
@media screen and (max-width: 1600px) {
  .topbanner {
    height: 30vh !important; /* increase height when resizing */
  }
}

@media screen and (max-width: 1200px) {
  .topbanner {
    height: 15vh !important; /* grow more as browser shrinks */
  }
}

@media screen and (max-width: 992px) {
  .topbanner {
    height: 20vh !important; /* keep fitting smaller widths */
  }
}



/* When resizing smaller screens – increase text slightly for better fit */
@media screen and (max-width: 1400px) {
  .topbannertxt h1 {
    font-size: 36px;
  }
  .topbannertxt p {
    font-size: 21px;
  }
}

@media screen and (max-width: 1024px) {
  .topbannertxt h1 {
    font-size: 38px;
  }
  .topbannertxt p {
    font-size: 22px;
  }
}

@media screen and (max-width: 768px) {
  .topbannertxt h1 {
    font-size: 20px;
  }
  .topbannertxt p {
    font-size: 15px;
  }
}

@media screen and (max-width: 480px) {
  .topbannertxt h1 {
    font-size: 20px;
  }
  .topbannertxt p {
    font-size: 18px;
  }
}



/*-----------------------about page---------------------------------------------------------------------*/

/* About Page Styles */

.about-page1 {
    padding: 80px 20px 0px;
    font-family: 'Readex Pro', sans-serif;
    color: #000;
    background-color: #fff;
    text-align: center; /* center logo and text */
}



/* Section styling */
.about-section {
    margin-bottom: 60px;
    display: flex;
    justify-content: center; /* center the text */
    animation: fadeInUp 1s ease-out;
    animation-fill-mode: both;
}

/* Text container */
.about-text {
    max-width: 700px; /* limit text width for better readability */
    text-align: center; /* center the text */
}

.about-text h2 {
    font-size: 35px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #0f172a;
    animation: fadeInUp 1s ease-out 0.3s;
    animation-fill-mode: both;
}

.about-text p {
    font-size: 20px;
	font-weight: 300;
    line-height: 1.8;
    margin-bottom: 15px;
    animation: fadeInUp 1s ease-out 0.6s;
    animation-fill-mode: both;
}

.about-text h2::after {
    content: "";
    display: block;
    width: 450px;           /* bar length */
    height: 5px;           /* bar thickness */
    background: #3C63AE;   /* bar color */
    margin: 10px auto 0;   /* space from heading, centered */
    border-radius: 2px;    /* rounded edges */
}

/* Fade-in-up animation */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive: center text on small screens */
@media (max-width: 900px) {
    .about-text h2, .about-text p {
        text-align: center;
    }
}



/* Fade-up keyframes */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Countries section */
.countries-section {
    padding: 70px 20px;
    background-color: white;
    text-align: center;
}

/* Heading animation */
.countries-heading h2 { 
    font-family: 'Readex Pro', sans-serif;
    font-weight: 400;
    font-size: 40px;
    color: black;
    margin-bottom: 10px;

    opacity: 0;
    animation: fadeUp 1s ease-out forwards;
    animation-delay: 0.2s;
}

/* Decorative bar under heading and subtitle animation */
.countries-heading p {
    font-family: 'Readex Pro', sans-serif;
    font-weight: 100;
    font-size: 25px;
    color: black;
    margin-bottom: 40px;

    opacity: 0;
    animation: fadeUp 1s ease-out forwards;
    animation-delay: 0.4s;
}

.countries-heading p::after {
    content: "";
    display: block;
    width: 650px;
    height: 5px;
    background: #3C63AE;
    margin: 10px auto 0;
    border-radius: 2px;
}

/* Grid container */
.countries-slider {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

/* Country boxes fade-up animation with stagger */
.country-box {
    width: 300px;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;

    /* Start invisible and slightly down */
    opacity: 0;
    transform: translateY(30px);
}
/* Stagger each country box */
.country-item:nth-child(1) .country-box { animation-delay: 0.5s; }
.country-item:nth-child(2) .country-box { animation-delay: 0.6s; }
.country-item:nth-child(3) .country-box { animation-delay: 0.7s; }
.country-item:nth-child(4) .country-box { animation-delay: 0.8s; }
/* Add more nth-child delays if you have more boxes */

/* Fade-up active class applied via JS */
.country-box.active {
    opacity: 1;
    transform: translateY(0);
    transition: transform 0.8s ease, opacity 0.8s ease;
}

/* Hover effect remains */
.country-box:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Country images */
.country-box img {
    height: 300px;
    object-fit: contain;
}

/* Country name */
.country-name {
    margin-top: 20px;
    font-family: 'Readex Pro', sans-serif;
    font-weight: 400;
    font-size: 22px;
    color: #3C63AE;
    text-align: center;
	 opacity: 0;                    /* start invisible */
    animation: fadeUp 1s ease-out forwards; /* fadeUp animation */
    animation-play-state: paused;   /* pause by default */
    animation-delay: 0.5s; 
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .countries-slider {
        gap: 20px;
    }

    .country-box {
        width: 140px;
        height: 90px;
    }

    .country-box img {
        width: 100px;
    }

    .countries-heading {
        font-size: 26px;
    }
}



/* Responsive adjustments */
@media (max-width: 768px) {
    .country-box {
        width: 90px;
        height: 60px;
    }

    .country-box img {
        width: 60px;
    }
}

/* Heading animation */
.countries-heading h2 { 
    opacity: 0;
    animation: fadeUp 1s ease-out forwards;
    animation-delay: 0.2s;
    animation-play-state: paused; /* <-- pause by default */
}

/* Subtitle / bar */
.countries-heading p {
    opacity: 0;
    animation: fadeUp 1s ease-out forwards;
    animation-delay: 0.4s;
    animation-play-state: paused; /* <-- pause by default */
}






/* Fade-up keyframes */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Video Banner */
.video-banner {
    position: relative;
    width: 100%;
    height: 30vh; /* adjust height as needed */
    overflow: hidden;
}

.video-banner video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay */
.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.35); /* dark overlay */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    padding: 0 20px;
}

/* Overlay Heading */
.banner-overlay h1 {
    font-weight: 400;
    font-size: 40px;
    margin-bottom: 15px;
    font-family: 'Readex Pro', sans-serif;

    opacity: 0;
    animation: fadeUp 1s ease-out forwards;
    animation-delay: 0.2s; /* heading appears first */
}

/* Overlay Paragraph */
.banner-overlay p {
    font-size: 20px;
    font-weight: 300;
    font-family: 'Readex Pro', sans-serif;

    opacity: 0;
    animation: fadeUp 1s ease-out forwards;
    animation-delay: 0.4s; /* paragraph appears after heading */
}





.instagram-mobile-banner {
  width: 100%;
  background: white;
  margin: 80px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  
  overflow: hidden;
  padding: 40px;
  box-sizing: border-box;
}

.banner-mobile-content {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* align left */
  width: 100%;
  padding-left: 250px; /* adjust left margin as needed */
}

/* Fade-up keyframes */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile image */
.mobile-image {
  max-width: 400px;
  height: auto;
  border-radius: 20px;

  opacity: 0;
  animation: fadeUp 1s ease-out forwards;
  animation-delay: 0.2s; /* adjust delay */
}

/* Banner text container */
.banner-text {
  max-width: 700px;padding: 0px 50px;
	margin-right:50px;
  opacity: 0;
  animation: fadeUp 1s ease-out forwards;
  animation-delay: 0.4s; /* text appears after image */
}


/* Title and subtitle */
.banner-text h2 {
  font-family: 'Readex Pro', sans-serif;
  font-weight: 400;
  font-size: 80px;
  color: black;
  margin: 0 0 20px 0;
}

.banner-text p {
  font-family: 'Readex Pro', sans-serif;
  font-weight: 300;
  font-size: 25px;
  margin: 0 0 28px 0;
  color: black;
  line-height: 1.5;
}

/* Follow button */
.follow-btn {
  display: inline-block;
  font-family: 'Readex Pro', sans-serif;
  font-weight: 300;
  padding: 12px 40px;
  border: 2px solid #E1306C;   /* Instagram pink border */
  border-radius: 50px;
  color: #E1306C;              /* Instagram pink text */
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.follow-btn:hover {
  background-color: #E1306C;   /* Fill with Instagram pink */
  color: white;                /* White text on hover */
  border: 2px solid #E1306C;
}


@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}


.mobile-image,
.banner-text,
.follow-btn {
    opacity: 0;
    animation: fadeUp 1s ease-out forwards;
    animation-play-state: paused; /* pause until scroll */
}



/* iPad Pro Landscape only */
@media only screen and (min-width: 1024px) and (max-width: 1370px) and (min-aspect-ratio: 4/3) {
    .about-page1 { padding: 70px 20px 0 !important; }
    .about-section { margin-bottom: 50px !important; }
    .about-text h2 { font-size: 40px !important; }
    .about-text p { font-size: 25px !important; }
    .about-text h2::after { width: 400px !important; height: 5px !important; }

    .countries-section { padding: 60px 20px !important; }
    .countries-heading h2 { font-size: 40px !important; animation-delay: 0.2s !important; }
    .countries-heading p { font-size: 25px !important; animation-delay: 0.4s !important; }
    .countries-heading p::after { width: 550px !important; height: 5px !important; }

    .countries-slider { gap: 30px !important; }
    .country-box { width: 250px !important; height: 250px !important; }
    .country-box img { height: 250px !important; width: 100% !important; object-fit: cover !important; }
    .country-name { font-size: 20px !important; }

    .video-banner { height: 28vh !important; }
    .banner-overlay h1 { font-size: 40px !important; }
    .banner-overlay p { font-size: 25px !important; }

    .instagram-mobile-banner { margin: 70px auto !important; padding: 35px !important; }
    .banner-text h2 { font-size: 40px !important; }
    .banner-text p { font-size: 25px !important; }
    .follow-btn { font-size: 25px !important; padding: 10px 50px !important; }

    .mobile-image {
        width: 30% !important;
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
        margin: 0 auto 150px !important;
    }
    .banner-mobile-content {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        width: 100% !important;
        padding-left: 30px !important;
    }
    .banner-text h2 {
        font-size: 40px !important;
        margin: 0 !important;
    }
    .banner-text {
        margin-bottom: 150px !important;
        margin-right: 50px !important;
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 8px !important;
        word-wrap: break-word !important;
    }
}


/* ========== Tablet Portrait (768–1023px) ========== */
@media only screen and (min-width: 1024px) and (max-width: 1366px) and (orientation: portrait) {
    .about-page1 {
        padding: 60px 20px 0px;
    }
    .about-section {
        margin-bottom: 45px;
    }
    .about-text h2 { font-size: 40px; }
    .about-text p { font-size: 25px; line-height: 1.6; }
    .about-text h2::after {
        width: 350px;
        height: 5px;
    }
    .countries-section { padding: 50px 20px; }
    .countries-heading h2 { font-size: 40px; }
    .countries-heading p { font-size: 25px; }
    .countries-heading p::after {
        width: 450px;
        height: 5px;
    }
   .countries-slider {
    margin: 50px 50px;
    grid-template-columns: repeat(2, 1fr); /* two columns of equal width */
    gap: 35px;                               /* spacing between boxes */
    justify-items: center;                   /* optional: center the boxes horizontally */
      justify-content: center;                /* ensures the grid is centered */
  overflow: hidden;
	   width: 100%;                            /* ensure full container width */
  max-width: 900px;  
  }
       .country-box {
    width: 100%;    /* box will fill its grid cell */
    height: 100%;  /* as you specified */
    box-sizing: border-box;
  }
	
    .country-box img { height: 100%;width: 100%;  }
    .country-name { font-size: 25px; }
    .video-banner { height: 25vh; }
    .banner-overlay h1 { font-size: 40px; }
    .banner-overlay p { font-size: 25px; }
	
    .instagram-mobile-banner {
  display: flex;
  flex-direction: column;   /* stack image and text */
  align-items: center;      /* center horizontally */
  justify-content: flex-start;
  width: 100%;
  max-width: 430px;         /* optional max width */
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

/* Mobile image */
.mobile-image {
  width: 80%;
  max-width: 100%;          /* never overflow */
  height: auto;
  display: block;
  margin: 0 auto 150px;      /* space between image and text */
}

/* Text section below the image */
.banner-text {
                /* slightly smaller than container for padding */
  position: absolute;
	margin-top: 590px;/* optional */
  text-align: center;
	right: 120px;/* center headings and button */
  display: flex;
  flex-direction: column;
  align-items: center;      /* center button horizontally */
  gap: 8px;                 /* spacing between h2, p, button */
  word-wrap: break-word;    /* prevent text overflow */
}

	.banner-mobile-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
		padding-left: 30px;}
	
	.banner-text h2 {
  font-size: 40px;
  margin: 0;
}

/* Paragraph */
.banner-text p {
  font-size: 20px;
  margin: 0;
}

/* Button */
.follow-btn {
  font-size: 25px;
  padding: 6px 45px;
  display: inline-block;
}
}

/* ========== Mobile Landscape (481–767px) ========== */
@media only screen and (min-width: 430px) and (max-width: 932px) and (orientation: landscape) {
    .about-page1 {
        padding: 50px 15px 0px;
    }
    .about-section {
        margin-bottom: 40px;
    }
    .about-text h2 { font-size: 28px; }
    .about-text p { font-size: 16px; line-height: 1.5; }
    .about-text h2::after {
        width: 300px;
        height: 5px;
    }
    .countries-section { padding: 10px 15px; }
    .countries-heading h2 { font-size: 28px; }
    .countries-heading p { font-size: 17px; }
    .countries-heading p::after {
        width: 350px;
        height: 5px;
    }
      .countries-slider {
    display: grid;
    grid-template-columns: repeat(1, 1fr); /* two columns of equal width */
    gap: 15px;                               /* spacing between boxes */
    justify-items: center;                   /* optional: center the boxes horizontally */
    /* if you want only exactly two boxes to show, and hide the rest: */
    overflow: hidden;
  }
       .country-box {
    width: 100%;    /* box will fill its grid cell */
    height: 100%;  /* as you specified */
    box-sizing: border-box;
  }
	
    .country-box img { height: 100%;width: 100%;  }
    .country-name { font-size: 28px; }
    .video-banner { height: 30vh; }
    .banner-overlay h1 { font-size: 28px; }
    .banner-overlay p { font-size: 16px; }
    .instagram-mobile-banner {
        margin: 50px auto;
        padding: 25px;
    }
	
	.mobile-image {
  width: 30%;
  max-width: 100%;          /* never overflow */
  height: auto;
  display: block;
  margin: 0 auto 150px;      /* space between image and text */
}
	
.banner-text {
                /* slightly smaller than container for padding */
 margin-bottom: 155px;/* optional */
  text-align: center;       /* center headings and button */
  display: flex;
  flex-direction: column;
  align-items: center;      /* center button horizontally */
  gap: 8px;                 /* spacing between h2, p, button */
  word-wrap: break-word;    /* prevent text overflow */
}
		.clients-header1 h2 {
  font-size: 28px !important;
}
	
.clients-header1 p {
  font-size: 17px !important;
}
	
.clients-header1 p::after {
  width: 400px!important;
}

    .banner-text h2 { font-size: 28px;margin: 0px; }
    .banner-text p { font-size: 18px;margin: 5px; }
    .follow-btn { font-size: 14px; padding: 8px 50px;margin: 0px; }
}

/* ========== Mobile Portrait (up to 480px) ========== */
@media only screen and (max-width: 930px) and (orientation: portrait) {
    .about-page1 {
        padding: 40px 15px 0px;
    }
    .about-section {
        margin-bottom: 35px;
    }
    .about-text h2 { font-size: 18px; }
    .about-text p { font-size: 10px; line-height: 1.4; }
    .about-text h2::after {
        width: 250px;
        height: 5px;
    }
    .countries-section { padding: 10px 15px; }
    .countries-heading h2 { font-size: 18px; margin:0px; }
    .countries-heading p { font-size: 10px; }
    .countries-heading p::after {
        width: 300px;
        height: 5px;
    }
      .countries-slider {
    display: grid;
    grid-template-columns: repeat(1, 1fr); /* two columns of equal width */
    gap: 15px;                               /* spacing between boxes */
    justify-items: center;                   /* optional: center the boxes horizontally */
    /* if you want only exactly two boxes to show, and hide the rest: */
    overflow: hidden;
  }
     .country-box {
    width: 100%;    /* box will fill its grid cell */
    height: 100%;  /* as you specified */
    box-sizing: border-box;
  }
    .country-box img { height: 100%;width: 100%; }
    .country-name { font-size: 18px; }
    .video-banner { height: 15vh; }
    .banner-overlay h1 { font-size: 18px; }
    .banner-overlay p { font-size: 10px; }
	
		.clients-header1 h2 {
  font-size: 18px !important;
}
	
.clients-header1 p {
  font-size: 10px !important;
}
	
.clients-header1 p::after {
  width: 300px!important;
}

	
/* Container for mobile banner */
.instagram-mobile-banner {
  display: flex;
  flex-direction: column;   /* stack image and text */
  align-items: center;      /* center horizontally */
  justify-content: flex-start;
  width: 100%;
  max-width: 430px;         /* optional max width */
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

/* Mobile image */
.mobile-image {
  width: 80%;
  max-width: 100%;          /* never overflow */
  height: auto;
  display: block;
  margin: 0 auto 150px;      /* space between image and text */
}

/* Text section below the image */
.banner-text {
                /* slightly smaller than container for padding */
  position: absolute;
	margin-top: 590px;/* optional */
  text-align: center;       /* center headings and button */
  display: flex;
  flex-direction: column;
  align-items: center;      /* center button horizontally */
  gap: 8px;                 /* spacing between h2, p, button */
  word-wrap: break-word;    /* prevent text overflow */
}

	.banner-mobile-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
		padding-left: 30px;}
	
/* Headings */
.banner-text h2 {
  font-size: 20px;
  margin: 0;
}

/* Paragraph */
.banner-text p {
  font-size: 14px;
  margin: 0;
}

/* Button */
.follow-btn {
  font-size: 12px;
  padding: 6px 12px;
  display: inline-block;
}
	
}
/*--------------------------------------------------------------------------------------------------*/





/* About Page */
.about-page {
    text-align: center;
    padding: 80px 20px;
    font-family: 'Readex Pro', sans-serif;
    color: #000;
    background-color: #fff;
}


/* Fade-up keyframes */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Clients container */
.clients-container1 {
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
}

/* Header and subtitle fade-up animation */
.clients-header1 h2 {
    font-family: 'Readex Pro', sans-serif;
    font-weight: 400;
    font-size: 40px;
    color: black;
    margin-bottom: 10px;

    opacity: 0;
    animation: fadeUp 1s ease-out forwards;
    animation-delay: 0.2s;
}

.clients-header1 p {
    font-family: 'Readex Pro', sans-serif;
    font-weight: 100;
    font-size: 25px;
    color: black;
    margin-bottom: 40px;

    opacity: 0;
    animation: fadeUp 1s ease-out forwards;
    animation-delay: 0.4s;
}

/* Decorative bar under subtitle */
.clients-header1 p::after {
    content: "";
    display: block;
    width: 650px;
    height: 5px;
    background: #3C63AE;
    margin: 10px auto 0;
    border-radius: 2px;
}

/* Slider */
.clients-slider1 {
    overflow: hidden;
    width: 100%;
    margin-top: 20px;
}

/* Continuous horizontal scroll of logos */
.clients-track1 {
    display: flex;
    gap: 40px;
    animation: scrollClients1 30s linear infinite;
}

/* Individual logos fade-up animation */
.client-logo1 {
    flex: 0 0 auto;
    width: 150px;
    display: flex;
    justify-content: center;
    align-items: center;

    opacity: 0;
    animation: fadeUp 0.5s ease-out forwards;
}

/* Stagger each logo fade-up */

/* Continue for additional logos as needed */

.client-logo1 img {
    max-width: 100%;
    max-height: 150px;
    object-fit: contain;
}

/* Continuous scroll keyframes */
@keyframes scrollClients1 {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .clients-track1 {
        gap: 20px;
    }

    .client-logo1 {
        width: 100px;
    }

    .client-logo1 img {
        max-height: 60px;
    }
}
.clients-header1 h2,
.clients-header1 p,
.client-logo1 {
    opacity: 0;
    animation: fadeUp 1s ease-out forwards;
    animation-play-state: paused; /* pause until scroll */
}

/* Optional: stagger logos slightly */
.client-logo1:nth-child(1) { animation-delay: 0.2s; }
.client-logo1:nth-child(2) { animation-delay: 0.3s; }
.client-logo1:nth-child(3) { animation-delay: 0.4s; }
.client-logo1:nth-child(4) { animation-delay: 0.5s; }
/* Add more nth-child rules as needed */







/*-----------------------------------mobile /tablet scren setting---------------------------------------------------------*/

/* Mobile Portrait (max-width: 767px) */
@media (max-width: 767px) and (orientation: portrait) {
    .about-page {
        padding: 50px 15px;
    }

    .logo-center img {
        max-width: 180px;
        margin-bottom: 20px;
    }

    .about-text {
        font-size: 9px;
        line-height: 1.6;
        max-width: 95%;
    }

    .action-button-wrapper a {
        padding: 8px 30px;
        font-size: 14px;
    }
}

/* Mobile Landscape (max-width: 1024px) and landscape orientation */
@media (max-width: 1024px) and (orientation: landscape) {
    .about-page {
        padding: 60px 15px;
    }

    .logo-center img {
        max-width: 200px;
        margin-bottom: 25px;
    }

    .about-text {
        font-size: 14px;
        line-height: 1.65;
        max-width: 90%;
    }

    .action-button-wrapper a {
        padding: 9px 35px;
        font-size: 15px;
    }
}


/* iPad Portrait (768px to 1024px) */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
    .about-page {
        padding: 70px 20px;
    }

    .logo-center img {
        max-width: 320px;
        margin-bottom: 25px;
    }

    .about-text {
        font-size: 20px;
        line-height: 1.7;
        max-width: 90%;
    }

    .action-button-wrapper a {
		margin-top: 10px;
        padding: 10px 45px;
        font-size: 20px;
    }
}

/* iPad Landscape (768px to 1024px) */
@media only screen and (min-width: 1023px) and (max-width: 1367px) and (orientation: landscape) {
    .about-page {
        padding: 60px 20px;
    }

    .logo-center img {
        max-width: 350px;
        margin-bottom: 25px;
    }

    .about-text {
        font-size: 25px;
        line-height: 1.7;
        max-width: 85%;
    }

    .action-button-wrapper a {
		margin-top: 10px;
        padding: 20px 55px;
        font-size: 16px;
    }
}


/*--------------------------------------------------------------------------------------------*/




/* ========================= */
/* 📱 Mobile - Portrait Mode */
/* ========================= */
@media (max-width: 768px) and (orientation: portrait) {
 
	
  .header {
    display: flex;
    flex-direction: column;     /* stack logo + menu vertically */
    align-items: center;        /* center horizontally */
    justify-content: flex-start;
    height: auto;
    padding: 10px 15px;
                     /* space between logo and menu */
}

/* Logo styling */
.logoicon {
    width: 140px;   /* slightly smaller for very small screens */
        height: 65px;              /* maintain aspect ratio */
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    margin: 0;                  /* remove extra space */
}
#menusection ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;        /* allows wrapping only if needed */
    gap: 12px;
    padding: 0;
    margin: 0px 0 0;
  }

  /* Menu items inline */
  #menusection li {
    padding: 0;
    display: inline-flex;
    align-items: center;
  }

  /* Menu links */
  #menusection li a {
    font-size: 10px;
    text-decoration: none;
    white-space: nowrap;   /* keep text in one line */
  }

  /* Book Now button */
  #booknow {
    margin-left: 0;        /* remove extra gap */
  }

  #booknow a {
    font-size: 14px;
    padding: 5px 18px;
    border-radius: 30px;
    background: #3C63AE;
    color: #fff;
    border: 1px solid #3C63AE;
    text-decoration: none;
    display: inline-block;
  }

  #booknow a:hover {
    background: #fff;
    color: #3C63AE;
  }

  
.banner {
    height: 100vh; /* more space for text */
    background-size: cover;
    background-position: center center;
  }

  .bannercontent h1 {
	  margin-bottom: 150px;
    font-size: 12px;   /* smaller heading */
    padding-top: 0px; /* less gap from top */
    text-align: center; /* keep centered */
	  margin-bottom: 5px;
  }

	.bannercontent{ 
		position: relative;
    z-index: 2;
    padding-top: 100px;
    text-align: left;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    white-space: nowrap;
    max-width: none;
    margin-left: 40px;}
	
  .bannercontent p {
    font-size: 10px;   /* smaller subtitle */
    line-height: 1.4;  /* better readability */
    text-align: center;
	  margin-bottom: 0px;
     /* avoid touching edges */
  }

  .bannercontent .btn {
    font-size: 14px;
    padding: 8px 18px;
    margin-top: 0px;
  }
	
	.banner-buttons{
		margin-left: 10px;display: block;
    gap: 50px;
    margin-left: 50px;
    justify-content: flex-start;
    margin-top: 0px;
	}
	
.banner-buttons .btn-primary, .banner-buttons .btn-secondary {
    padding: 6px 25px;
	margin-left: 10px;
    font-family: 'Readex Pro', sans-serif;
    font-weight: 300;
    font-size: 6px;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s;
    border: 2px solid white;
    background: transparent;
    color: white;
}

  .service {
    padding: 10px 10px; /* some breathing space on small screens */
  }

  .service h2 { 
    margin-top: 20px;
    font-size: 15px; /* smaller heading for mobile */
  }

  .service p { 
    font-size: 12px; /* smaller paragraph text */
    padding-bottom: 8px;
  }

  .service p::after {
    width: 350px;  /* shrink bar for small screens */
    height: 3px;
    margin: 8px auto 0;
  }

  .boxstrategic { 
    width: 140px;   /* smaller width for mobile */
    height: 120px;  /* reduce height */
    margin: 10px auto;
  }

  .strategictext h5 {
    font-size: 14px; /* smaller heading */
  }

  .strategictext p {
    font-size: 10px; /* smaller paragraph */
  }

  /* Features container */
  .features {
	  margin: 0px;
    gap: 20px;   /* less spacing */
    padding: 10px;
  }

  /* Service box */
  .service-box {
    width: 90%;       /* make them fluid, fit screen */
    max-width: 260px; /* don’t stretch too wide */
    height: auto;     /* let height grow naturally */
    padding: 15px;
  }

  .service-box img {
  
    margin-bottom: 8px;
  }

  .service-box h5 {
    font-size: 14px;
  }

  .service-box p {
    font-size: 11px;
  }
 
.feature-button {
    margin-top: 8px;   /* a little less spacing */
  }

  .feature-button button {
    font-size: 13px;   /* smaller text */
    padding: 8px 20px; /* smaller button size */
    border-width: 2px; /* slimmer border */
    border-radius: 25px;
  }


/*our mission work area */

  .mission {
    padding: 20px 15px;         /* tighter spacing */
  }

  .mission h2 {
    font-size: 18px;            /* smaller heading */
    margin-top: 15px;
    padding-top: 10px;
    padding-bottom: 5px;
    text-align: center;           /* align left */
    width: 100%;
  }

  .mission p {
    font-size: 12px;            /* smaller subheading */
    padding-bottom: 15px;
    text-align: center;           /* align left */
    width: 100%;
  }

    .mission p::after {
    content: "";
    display: block;
    width: 300px;                /* shorter underline bar */
    height: 3px;
    background: #3C63AE;
    margin: 8px auto 0;         /* ✅ keeps bar centered */
    border-radius: 2px;
  }
 


  .missionbanner {
    height: 20vh;               /* fixed height */
    padding: 10px 15px;
    display: flex;
    justify-content: flex-start; /* keep text left */
    align-items: center;
  }

  .mission-container {
    display: flex;              
    flex-direction: column;     /* stack vertically */
    align-items: flex-start;    /* text aligned left */
    gap: 10px;
    width: 100%;
  }
.mission-left{
	margin-left: 0px;
	
}
  .mission-left,
  .mission-right {
    margin-top: 0;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
  }

  .text-box h6 {
    font-size: 10px;           /* scaled down heading */
    margin-bottom: 2px;
  }

  .text-box p {
    font-size: 8px;            /* scaled down paragraph */
    line-height: 1.3;
  }

  .mission-bar {
    width: 60%;                /* shorter bar */
    height: 2px;               /* thin line */
    background-color: #3C63AE;
    margin: 5px 0;             /* tighter spacing */
  }

/*why choose us*/

.choosepage {
    padding: 20px 10px;         /* reduce side padding */
  }

  .choosepage h2 {
    font-size: 20px;            /* smaller heading */
    margin-top: 20px;
    padding-bottom: 5px;
  }

  .choosepage p {
    font-size: 12px;            /* smaller subtitle */
    padding-bottom: 5px;
  }

  .choosepage p::after {
    width: 250px;               /* shorter underline bar */
    height: 3px;                /* thinner bar */
    margin: 6px auto 0;         /* keep centered */
  }

.circle-section {
    display: grid;
    grid-template-columns: repeat(1, 1fr); /* 2 circles per row */
    gap: 10px; /* reduce gap between circles */
    margin-top: 30px;
  }

  .circle {
    width: 120px;   /* adjust size smaller */
    height: 120px;
    margin: 0 auto; /* center inside grid cell */
  }

  .circle .count {
    font-size: 20px;
    top: -3px;
  }

  .circle .plus {
    font-size: 14px;
    margin-left: 2px;
  }

  .circle p {
    font-size: 12px;
    margin-top: 5px;
  }

/*about area work*/

.aboutarea h2 {
    font-size: 20px;     /* smaller heading */
    margin-top: 20px;
    padding-top: 20px;
  }

  .aboutarea p {
    font-size: 12px;     /* smaller paragraph */
    padding-bottom: 20px;
  }

  .aboutarea p::after {
    width: 350px;        /* shorter underline bar */
    height: 3px;         /* thinner */
  }

.aboutbanner {
    height: 20vh;           /* shorter banner */
    padding: 10px 15px;     /* tighter padding */
    background-size: cover;
    background-position: center;
  }

  .banner-content {
    max-width: 100%;        /* fit smaller screens */
    text-align: center;
  }

  .banner-content h2 {
    font-size: 16px;        /* smaller heading */
    margin-bottom: 8px;
  }

  .banner-content p {
    font-size: 10px;        /* smaller paragraph */
    margin-bottom: 12px;
    line-height: 1.3;
  }

  .explore-btn {
    font-size: 10px;        /* smaller button text */
    padding: 6px 20px;      /* smaller button size */
  }
	

/*reviw area work*/

.reviewarea h2 {
    font-size: 16px;        /* smaller heading */
    margin-top: 20px;
    padding-bottom: 5px;
    text-align: center;     /* center on mobile */
  }

  .reviewarea p {
    font-size: 10px;        /* smaller paragraph */
    padding-bottom: 8px;
    text-align: center;
  }

  .reviewarea p::after {
    width: 300px;           /* shorter underline bar */
    height: 3px;            /* thinner bar */
    margin: 5px auto 0;
  }

/*reviw box work*/

  .reviews {
    flex-direction: column;   /* stack vertically */
    gap: 20px;                /* smaller spacing */
    height: auto;             /* allow dynamic height */
    margin: 30px auto 20px;
    align-items: center;      /* center all review boxes */
  }

  .review-box {
    width:60%;               /* almost full width on mobile */
    padding: 25px;
  }

  .profile-pic {
    width: 80px;              /* smaller profile */
    height: 80px;
  }

  .review-box h4 {
    font-size: 14px;          /* smaller heading */
  }

  .review-box h5 {
    font-size: 10px;          /* smaller subheading */
  }

  .review-box p {
    font-size: 11px;          /* smaller paragraph */
    line-height: 1.3;
  }


/*contact us area work*/

.contact-area {
    padding: 40px 15px;
    text-align: center;
  }

  .contact-area h2 {
    font-size: 20px;
    margin-bottom: 8px;
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.2;
  }

  .contact-area p {
    font-size: 12px;
    margin-bottom: 20px;
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.3;
    position: relative;   /* needed for the bar positioning */
  }

  /* Centered bar below paragraph */
  .contact-area p::after {
    content: "";
    display: block;
    width: 300px;             /* your desired width */
    max-width: 100%;          /* do not exceed paragraph width */
    height: 3px;
    background: #3C63AE;
    margin: 10px auto 0;      /* auto left/right centers it */
    border-radius: 2px;
    position: relative;       /* relative to paragraph */
  }

.contact-form {
    max-width: 100%;
    padding: 20px;
    margin: 0 10px;
  }

  .form-row {
    flex-direction: column;  /* stack inputs vertically */
    gap: 15px;
    margin-bottom: 15px;
  }

  .form-row input,
  .phone-input input,
  .phone-input select {
    font-size: 12px;
    padding: 10px 12px;
  }

  .phone-input select {
    padding: 10px 12px;
  }

  textarea {
    padding: 12px 15px;border-radius: 30px;
    font-size: 12px;
    min-height: 100px;
    margin-bottom: 20px;
  }

  .send-btn {
    padding: 10px 50px;
    font-size: 14px;
  }


/*footer area work*/


 .site-footer {
    padding: 30px 15px;
    background-size:cover;background-repeat: no-repeat;
   
  }
  
  .footer-container {
    flex-direction: column;  /* stack sections vertically */
    align-items: center;     /* center the logo */
    gap: 20px;
  }

  /* Center section: Logo + Social Icons */
  .footer-center {
    text-align: center;
    margin: 0 auto;
  }

  .footer-logo {
    width: 150px;
    margin: 0 auto 10px auto; /* center logo */
  }

  .social-icons {
    justify-content: center;
    gap: 15px;
    margin: 0 auto 15px auto;
  }

  .social-icons img {
    width: 25px;
    height: 25px;
  }

  /* Left section: Contact aligned left */
  .footer-left {
    width: 100%;
    text-align: left;
    padding-left: 15px;
  }

  .footer-left h4 {
    font-size: 16px;
    margin-bottom: 6px;
  }

  .contact-list li {
    font-size: 12px;
    margin: 3px 0;
  }

  /* Right section: Location aligned right */
  .footer-right {
    width: 100%;
    text-align: right;
    padding-right: 15px;
  }

  .footer-right h4 {
    font-size: 16px;
    margin-bottom: 6px;
  }

  .footer-right p {
    font-size: 12px;
    margin: 2px 0;
  }
	
	
	
}

/* Mobile Landscape CSS */
@media (min-width: 641px) and (max-width: 1024px) {

  .header {
    flex-direction: row;        /* logo + menu side by side */
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    height: auto;
  }

  .logoicon {
    width: 180px;   /* slightly larger logo */
    height: 80px;
    margin: 0;
  }

  #menusection ul {
    flex-wrap: nowrap;           /* keep menu in one line */
    gap: 10px;padding-left: 85px;
  }

  #menusection li a {
    font-size: 12px;
  }

  #booknow a {
    font-size: 14px;
    padding: 6px 20px;
  }

  .banner {
    height: 100vh;                /* slightly taller */
  }
	.bannercontent{
		padding: 0px;margin: 0px;
		
	}
  .bannercontent h1 {
	  margin-top: 50px;
	  margin-left: 150px;
    font-size: 20px;
    margin-bottom: 5px;
  }

  .bannercontent p {
    font-size: 12px;
  }

  .bannercontent .btn {
    font-size: 14px;
    padding: 8px 20px;
  }
	.banner-buttons{margin-left: 180px;}
.banner-buttons .btn-primary, .banner-buttons .btn-secondary {
    padding: 9px 30px;
    font-family: 'Readex Pro', sans-serif;
    font-weight: 300;
    font-size: 10px;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s;
    border: 2px solid white;
    background: transparent;
    color: white;
}
	
  /* Services */
  .service h2 {
    font-size: 18px;
  }

  .service p {
    font-size: 14px;
  }

  .service p::after {
    width: 450px;height: 3px;
  }

  .boxstrategic {
    width: 160px;
    height: 130px;
  }

  .strategictext h5 {
    font-size: 15px;
  }

  .strategictext p {
    font-size: 12px;
  }

  /* Features */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);  /* 3 equal columns */
  gap: 25px;
  padding: 15px 40px;      /* safe spacing on left/right */
  margin: 20px auto;
  max-width: 1100px;       /* keeps everything inside screen */
  justify-items: center;   /* center boxes inside each grid cell */
}

.service-box {
  width: 100%; 
	height: auto;/* take full grid cell width */
  max-width: 320px;        /* but don’t grow too big */
  padding: 15px;
  text-align: center;
}

.service-box img {
  width: 100%;
  height: auto;
  display: block;
}
  .service-box h5 {
    font-size: 15px;
	  top: 50%;
  }

  .service-box p {
    font-size: 12px;
  }

  .feature-button button {
    font-size: 14px;
    padding: 10px 25px;
  }

  /* Mission */
 .missionbanner {
    height: 80vh;             /* smaller height for landscape */
    padding: 20px 15px;       /* reduce side padding */
    display: flex;
    justify-content: flex-start; /* left-align content */
    align-items: center;
  }

  .mission-container {
  display: grid;
  grid-template-columns: 1fr 2px 1fr; /* left | bar | right */
  gap: 40px;
  max-width: 600px;
  width: 100%;
}

.mission-left,
.mission-right {
	margin-top: 120px;
 	display: flex;
  	flex-direction: column;
  	justify-content: flex-start; /* stack from top */
  	align-items: flex-start;     /* align all to left */
  	gap: 40px;
}

.text-box h6 {
	
  font-size: 15px;
  font-family: 'Readex Pro', sans-serif;
    font-weight: 400; 
  color: #3C63AE;
  margin-bottom: 8px; 
}

.text-box p {
	font-family: 'Readex Pro', sans-serif;
    font-weight: 300; 
  font-size: 10px;
  color: #3C63AE;
  line-height: 1.5;
}

.mission-bar {
  	background-color: #3C63AE; /* center vertical line */
  	width: 3px;
	top: 25px;
  	height: 250px;
	margin: 50px auto 0 auto;
}

  /* Mission section main texts */
  .mission h2 {
    font-size: 20px;         /* smaller heading */
    margin-top: 20px;
    padding-top: 20px;
    padding-bottom: 10px;
    text-align: center;
  }

  .mission p {
    font-size: 12px;         /* smaller subheading */
    padding-bottom: 20px;
    text-align: center;
  }

  .mission p::after {
    width: 350px;            /* shorter bar */
    height: 3px;
    margin: 8px auto 0;      /* keep bar centered */
  }
  /* Choose Page / Circles */
  .choosepage h2 {
    font-size: 22px;
  }

  .choosepage p {
    font-size: 14px;
  }

  .choosepage p::after {
    width: 300px;height: 3px;
  }

  .circle-section {
    grid-template-columns: repeat(1, 1fr); /* two circles per row */
    gap: 15px;margin-left: 0;
  }

  .circle {
    width: 140px;
    height: 140px;
  }

  .circle .count {
    font-size: 24px;
  }

  .circle .plus {
    font-size: 16px;
  }

  .circle p {
    font-size: 14px;
  }

  /* About area */
  .aboutarea h2 {
    font-size: 22px;
  }

  .aboutarea p {
    font-size: 14px;
  }

  .aboutarea p::after {
    width: 400px;height: 3px;
  }

  .aboutbanner {
    height: 80vh;
  }

  .banner-content h2 {
    font-size: 18px;
  }

  .banner-content p {
    font-size: 15px;
  }

  .explore-btn {
    font-size: 12px;
    padding: 8px 30px;
  }

  /* Review area */
  .reviewarea h2 {
    font-size: 20px;
  }

  .reviewarea p {
    font-size: 14px;height: 4px;
  }

  .reviewarea p::after {
    width: 350px;height: 3px;
  }

  .reviews {
    flex-direction: column;margin: 50px 20px 50px 20px;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .review-box {
    width: 30%;
  }

  .profile-pic {
    width: 90px;
    height: 90px;
  }

  .review-box h4 {
    font-size: 16px;
  }

  .review-box h5 {
    font-size: 12px;
  }

  .review-box p {
    font-size: 12px;
  }

  /* Contact Area */
  
	
	.contact-area h2 {
    font-size: 22px; white-space: nowrap;  
  }

  .contact-area p {
    font-size: 14px;
  }

  .contact-area p::after {
    white-space: nowrap;height: 3px;
  }

  .contact-form {
    max-width: 90%;
    padding: 20px;
  }

  .form-row input,
  .phone-input input,
  .phone-input select,
  textarea {
    font-size: 14px;
    padding: 12px 30px;border-radius: 30px;
  }


  .send-btn {
    font-size: 16px;
    padding: 10px 60px;
  }

  /* Footer */
  .site-footer {
    padding: 40px 20px;
  }

  .footer-container {
    flex-direction: row;   /* left + center + right side by side */
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .footer-left {
    text-align: left;
    width: 30%;
    padding-left: 0;
  }

  .footer-center {
    text-align: center;
    width: 30%;
  }

  .footer-right {
    text-align: right;
    width: 30%;
    padding-right: 0;
  }

  .footer-logo {margin-left: 0px;
    width: 160px;
  }
	.social-icons{
		margin-left: 0px;
		
	}
	
  .social-icons img {
	  
    width: 28px;
    height: 28px;
  }
}
/* iPad Portrait (768px to 1024px, portrait) */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .header {
    flex-direction: row;       /* Logo + Menu side by side */
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
  }

  .logoicon {
    width: 160px;
    height: 75px;
  }

  #menusection ul {
    gap: 18px;
    flex-wrap: nowrap;
  }

  #menusection li a {
    font-size: 14px;
  }

  #booknow a {
    font-size: 16px;
    padding: 8px 25px;
  }

  .banner {
    height: 30vh;
  }
	.bannercontent{
		padding-top: 100px;
		
	}
  .bannercontent h1 {
	  padding-top: 70px;
    font-size: 25px;margin-top: 0px;
  }

  .bannercontent p {
    font-size: 14px;
  }
	.banner-buttons{margin-left: 200px;}
	.banner-buttons .btn-primary, .banner-buttons .btn-secondary {
        padding: 8px 25px;
        font-family: 'Readex Pro', sans-serif;
        font-weight: 300;
        font-size: 10px;
        border-radius: 50px;
        cursor: pointer;
        transition: 0.3s;
        border: 2px solid white;
        background: transparent;
		color: white;}
	
  .service h2 {
    font-size: 20px;
  }

  .service p {
    font-size: 16px;
  }
    .service p::after {
        width: 450px;
    }
  .missionbanner {
    height: 30vh;
    padding: 20px;
  }

  .mission-container {margin-top: 50px;
    flex-direction: row;
    gap: 20px;
    align-items: flex-start;
  }

  .mission-left,
  .mission-right {margin-top: 90px;
    width: 100%;
  }

  .text-box h6 {
    font-size: 16px;
  }

  .text-box p {
    font-size: 14px;
  }

  .mission-bar {
	  
    width: 3px;
    height: 250px;
  }

  .circle-section {
    display:inline-grid;
    grid-template-columns: repeat(2, 1fr); /* two circles per row */
    gap: 30px;                            /* spacing between circles */
    justify-content: center;               /* center the grid items horizontally */
    align-items: center;                   /* optional: vertically center items */
    margin: 0 350px;                        /* center the grid container itself */
}

.circle {
    width: 140px;   /* adjust circle size */
    height: 140px;
    display: flex;
    justify-content: center;  /* center content inside circle */
    align-items: center;
}

.circle .count {
    font-size: 24px;
}

.circle .plus {
    font-size: 16px;
    margin-left: 2px;
}

.circle p {
    font-size: 14px;
    margin-top: 5px;
    text-align: center;
}

  .contact-area h2, .contact-area p {
    font-size: 18px;
    white-space: nowrap;
  }

  .contact-area p::after {
    width: 400px;
  }

  textarea {
    font-size: 16px;
    padding: 15px 12px;
  }

/* About area */
  .aboutarea h2 {
    font-size: 28px;  /* slightly larger for tablet */
  }

  .aboutarea p {
    font-size: 16px;
  }

  .aboutarea p::after {
    width: 500px; /* increase underline width */
  }

  .aboutbanner {
    height: 30vh; /* slightly smaller than desktop */
  }

  .banner-content h2 {
    font-size: 22px;
  }

  .banner-content p {
    font-size: 15px;
  }

  .explore-btn {
    font-size: 14px;
    padding: 10px 35px;
  }

  /* Review area */
  .reviewarea h2 {
      font-size: 24px;         /* main heading */
      text-align: center;      /* center title */
      margin-bottom: 10px;
  }

  .reviewarea p {
      font-size: 16px;         /* subtitle/description */
      text-align: center;      /* center text */
      margin-bottom: 15px;
  }

  /* Centered underline below paragraph */
  .reviewarea p::after {
      content: "";
      display: block;
      width: 400px;            /* underline width */
      max-width: 100%;         /* do not exceed container */
      height: 3px;             /* thickness */
      background: #3C63AE;     /* color */
      margin: 8px auto 0;      /* center below paragraph */
      border-radius: 2px;
  }

  /* Reviews Container: stacked vertically */
  .reviews {
      display: flex;
      flex-direction: row;   /* stack boxes vertically */
     
      justify-content:center;
      align-items: center;      /* center boxes horizontally */
      gap: 20px;                /* spacing between boxes */
      width: 100%;
      padding: 0 30px;          /* side padding to avoid overflow */
      box-sizing: border-box;   /* include padding in width calculation */
  }

  /* Individual review box */
  .review-box {
      width: 300px;             /* fill container width */;        /* optional: limit width */
      padding: 20px 25px;      /* top/bottom + left/right padding */
      box-sizing: border-box;  /* include padding in width */
      text-align: center;      /* center content inside box */
      position: relative;
	  
  }

  /* Optional: profile picture inside review box */
  .profile-pic {
      width: 90px;
      height: 90px;
      border-radius: 50%;
      object-fit: cover;
      margin: 0 auto 10px;    /* center + spacing */
  }

  /* Text inside review box */
  .review-box h4 {
      font-size: 18px;
      margin-bottom: 5px;
  }

  .review-box h5 {
      font-size: 14px;
      margin-bottom: 10px;
  }

  .review-box p {
      font-size: 16px;
      line-height: 1.5;
      margin: 0;
  }

  /* Contact Area */
	  .contact-area {
    width: 100%;
    display: flex;             
    flex-direction: column;    
    justify-content: center;   
    align-items: center;       
    text-align: center;        
    margin: 0 auto;
    padding: 20px;
  }

  .contact-area h2 {
    font-size: 24px;
    white-space: nowrap;       /* keep heading in one line */
    margin: 0 35px 15px 0;
  }

 .contact-area p {
    font-size: 18px;
    white-space: normal;       /* allow text to wrap */
    text-align: center;        /* center multi-line text */
    margin: 0 auto;
    max-width: 400px;          /* optional: limit width to control line breaks */
  }

  .contact-area p::after {
    content: "";
    display: block;
    width: 400px;
    max-width: 100%;
    height: 3px;
    background: #3C63AE;
    margin: 8px auto 0 auto;   
    border-radius: 2px;
  }

  .contact-form {
    max-width: 100%;
    padding: 25px;
  }

  .form-row input,
  .phone-input input,
  .phone-input select,
  textarea {
    font-size: 16px;
    padding: 14px 30px;
    border-radius: 30px;
  }

  .send-btn {
    font-size: 18px;
    padding: 12px 70px;
  }

  /* Footer */
  .site-footer {
    padding: 50px 25px;
  }

  .footer-container {
    flex-direction: row;   /* keep sections side by side */
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .footer-left,
  .footer-center,
  .footer-right {
    width: 30%;
  }

  .footer-left {
    text-align: left;
    padding-left: 0;
  }

  .footer-center {
    text-align: center;
  }

  .footer-right {
    text-align: right;
    padding-right: 0;
  }

  .footer-logo {
    width: 180px;
  }

  .social-icons img {
    width: 32px;
    height: 32px;
	}
}

/* iPad Landscape CSS - Placed AFTER desktop CSS */
@media only screen and (min-width: 1023px) and (max-width: 1367px) and (orientation: landscape) {
 
  /* --- HEADER --- */
  .header {
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 20px 30px !important;
  }

  .logoicon {
    width: 180px !important;
    height: 85px !important;
  }

  /* --- MENU --- */
  #menusection ul {
    gap: 22px !important;
    flex-wrap: nowrap !important;
  }

  #menusection li a {
    font-size: 16px !important;
  }

  #booknow a {
    font-size: 18px !important;
    padding: 10px 30px !important;
  }

  /* --- BANNER --- */
  .banner {
    height: 50vh !important;
  }

.bannercontent{
	
	padding-top: 100px;
}
  .bannercontent h1 {
    padding-top: 80px !important;
    font-size: 36px !important;
  }

  .bannercontent p {
    font-size: 26px !important;
  }
	.banner-buttons {margin-left: 200px;}
  .banner-buttons .btn-primary, 
  .banner-buttons .btn-secondary {
    padding: 15px 50px !important;
	  width: 300px;
    font-family: 'Readex Pro', sans-serif !important;
    font-weight: 300 !important;
    font-size: 15px !important;
    border-radius: 50px !important;
    cursor: pointer !important;
    transition: 0.3s !important;
    border: 2px solid white !important;
    background: transparent !important;
    color: white !important;
  }

  /* --- SERVICE SECTION --- */
  .service h2 {
    font-size: 32px !important;
  }

  .service p {
	  
    font-size: 20px !important;
  }

  .service p::after {
    width: 550px !important;
  }

  /* --- MISSION --- */
  .missionbanner {
    height: 50vh !important;
    padding: 25px !important;
  }

  .mission-container {
    margin-top: 60px !important;
    flex-direction: row !important;
    gap: 25px !important;
    align-items: flex-start !important;
  }

  .mission-left,
  .mission-right {
    margin-top: 100px !important;
    width: 100% !important;
  }
.mission h2{font-size: 32px;}

.mission p{font-size: 20px;}

  .text-box h6 {
    font-size: 18px !important;
  }

  .text-box p {
    font-size: 16px !important;
  }

  .mission-bar {
    width: 4px !important;
    height: 280px !important;
  }

  /* --- CIRCLE SECTION --- */
  .circle-section {
    display: flex!important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 35px !important;
    justify-content: center !important;
    align-items: center !important;
    
  }

  .circle {
    width: 160px !important;
    height: 160px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .circle .count {
    font-size: 28px !important;
  }

  .circle .plus {
    font-size: 18px !important;
    margin-left: 2px !important;
  }

  .circle p {
    font-size: 16px !important;
    margin-top: 5px !important;
    text-align: center !important;
  }

  /* --- CONTACT AREA --- */
  .contact-area h2, .contact-area p {
    font-size: 20px !important;
    white-space: nowrap !important;
  }

  .contact-area p::after {
    width: 450px !important;
  }

  textarea {
    font-size: 18px !important;
    padding: 18px 15px !important;
  }

  /* --- ABOUT AREA --- */
  .aboutarea h2 {
    font-size: 32px !important;
  }

  .aboutarea p {
    font-size: 20px !important;
  }

  .aboutarea p::after {
    width: 550px !important;
  }

  .aboutbanner {
    height: 50vh !important;
  }

  .banner-content h2 {
    font-size: 24px !important;
  }

  .banner-content p {
    font-size: 20px !important;
  }

  .explore-btn {
    font-size: 16px !important;
    padding: 15px 60px !important;
  }

  /* --- REVIEW AREA --- */
  .reviewarea h2 {
    font-size: 32px !important;
    text-align: center !important;
    margin-bottom: 12px !important;
  }

  .reviewarea p {
    font-size: 20px !important;
    text-align: center !important;
    margin-bottom: 15px !important;
  }

  .reviewarea p::after {
    width: 500px !important;
  }

  .reviews {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 25px !important;
    width: 100% !important;
    padding: 0 40px !important;
    box-sizing: border-box !important;
  }

  .review-box {
    width: 350px !important;
	  height: 380px;
    padding: 22px 22px auto !important;
    box-sizing: border-box !important;
    text-align: center !important;
    position: relative !important;
  }

  .profile-pic {
    width: 100px !important;
    height: 100px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    margin: 0 auto 12px !important;
  }

  .review-box h4 {
    font-size: 20px !important;
    margin-bottom: 6px !important;
  }

  .review-box h5 {
    font-size: 16px !important;
    margin-bottom: 12px !important;
  }

  .review-box p {
    font-size: 18px !important;
    line-height: 1.5 !important;
    margin: 0 !important;
  }

  /* --- CONTACT AREA --- */
  .contact-area {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    margin: 0 auto !important;
    padding: 25px !important;
  }

  .contact-area h2 {
    font-size: 32px !important;
    white-space: nowrap !important;
    margin: 0 35px 15px 0 !important;
  }

  .contact-area p {
    font-size: 20px !important;
    white-space: normal !important;
    text-align: center !important;
    margin: 0 auto !important;
   /* max-width: 450px !important;*/
  }

  .contact-area p::after {
    width: 800px !important;
  }

  .contact-form {
    max-width: 100% !important;
    padding: 30px !important;
  }


.phone-input select {
	
	width: 200px;
}

.form-row input{
	
	width: 400px;
}

  .form-row input,
  .phone-input input,
  .phone-input select,
  textarea {
    font-size: 18px !important;
    padding: 16px 32px !important;
    border-radius: 35px !important;
  }

  .send-btn {
    font-size: 20px !important;
    padding: 14px 80px !important;
  }

  /* --- FOOTER --- */
  .site-footer {
    padding: 55px 30px !important;
  }

  .footer-container {
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    flex-wrap: wrap !important;
  }

  .footer-left,
  .footer-center,
  .footer-right {
    width: 30% !important;
  }

  .footer-left {
    text-align: left !important;
    padding-left: 0 !important;
  }

  .footer-center {
    text-align: center !important;
  }

  .footer-right {
    text-align: right !important;
    padding-right: 0 !important;
  }

  .footer-logo {
	  margin-left: 0px;
    width: 200px !important;
  }

.social-icons{
	margin-left: 0px;
}

  .social-icons img {
    width: 36px !important;
    height: 36px !important;
  }

}

/*-----------------------------------------------------------------------------------------------*/

/*/* ---------------- DESKTOP MENU ---------------- */

/* ---------------- HAMBURGER ICON ---------------- */
.menu-toggle {
  display: none;
	color: white;
  font-size: 28px;
  cursor: pointer;margin-top: 35px;
  z-index: 1001;
  transition: opacity 0.3s ease;
}

.menu-toggle.hidden {
  opacity: 0;
  pointer-events: none;
}

/* Sidebar */
.sidebar {
  position: fixed;
  top: 0;
  right: -100%;                /* hide completely off-screen */
  width: clamp(240px, 80%, 320px); /* responsive width: min 240px, max 320px */
  height: 100%;
  background: #f8f8f8;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  transition: right 0.4s ease;
  z-index: 1000;
  box-shadow: -2px 0 8px rgba(0,0,0,0.2);
}

.sidebar.active {
  right: 0;  /* slides in fully */
}

/* Close button */
.sidebar .close-btn {
  font-size: 30px;
  cursor: pointer;
  margin-bottom: 40px;
  align-self: flex-end;
  transition: opacity 0.3s ease;
  opacity: 0;
  pointer-events: none;
}

.sidebar.active .close-btn {
  opacity: 1;
  pointer-events: auto;
}

/* Sidebar menu items */
.sidebar ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0;
  margin: 0;
}

.sidebar ul li a {
  width: 100%;
  padding: 12px 20px;
  border-radius: 10px;
  background-color: #3C63AE;
  color: white;text-decoration: none;
  text-align: left;
  font-family: 'Readex Pro', sans-serif;
  font-weight: 400;
  transition: all 0.3s ease;
  display: block;
}

.sidebar ul li a:hover {
  background-color: #2a4a8f;
  color: white;
  border: none;
}

/* Responsive */
@media (max-width: 1024px) {
  .menu-toggle {
    display: block;margin-right: 20px;margin-top: 15px;
    margin-left: auto;
  }
  #menusection {
    display: none; /* hide desktop menu */
  }
}

@media (max-width: 480px) {
  .sidebar {
    
  }
  .sidebar ul li a {
    font-size: clamp(12px, 3vw, 16px);
    padding: 10px 15px;
  }
}


/* -------- SCALABLE BANNERS ONLY -------- */

/* Intermediate resize for desktop scaling */
@media (max-width: 1440px) and (min-width: 1025px) {
  .banner,
  .missionbanner,
  .aboutbanner {
    height: clamp(20vh,  90vh) !important; 
  }
}


/* Small mobile screens */
@media (max-width: 480px) {
  .banner,
  .missionbanner,
  .aboutbanner {
    height: clamp(10vh, 20vh, 80vh) !important;
  }
}

/* Tablet scaling ONLY (768px–1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
  .banner,
  .missionbanner,
  .aboutbanner {
    height: clamp( 45vh, 60vh) !important; /* adjust values as you like */
  }
}

/* Mobile scaling ONLY (up to 767px) */
@media (max-width: 767px) {
  .banner,
  .missionbanner,
  .aboutbanner {
    height: clamp(15vh, 30vh, 40vh) !important;
  }
}

@media screen and (max-width: 768px) and (orientation: portrait) {
  .header {
    height: 100px;              /* fixed smaller height */
    padding: 0 15px;overflow: hidden;
            /* allows absolute centering */
  }

  .logoicon {
    width: 100px;               /* bigger logo size */
    height: 80px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;

    position: absolute;         /* take it out of the normal flow */
    top: 30%;                   /* move down 50% of header */
    left: 15%;                  /* move right 50% of header */
    transform: translate(-50%, -50%); /* perfectly center */
  }
}









/* ===== Portfolio Section ===== */
.portfolio1 {
  text-align: center;
  padding: 60px 20px;
  background: #white;
}

.portfolio1 h2 {
  color: black;
  padding-bottom: 10px;
  text-align: center;
  font-family: 'Readex Pro', sans-serif;
  font-weight: 400;
  font-size: 40px;   /* same as .mission */
}

.portfolio1 p {
  color: black;
  text-align: center;
  font-family: 'Readex Pro', sans-serif;
  font-weight: 100;  padding-bottom: 50px;
  font-size: 25px;   /* same as .mission */
  border-bottom: 3px solid transparent;

}

/* Blue underline bar */
.portfolio1 p::after {
  content: "";
  display: block;
  width: 650px;        /* bar length */
  max-width: 90%;      /* responsive */
  height: 5px;         /* bar thickness */
  background: #3C63AE; /* bar color */
  margin: 10px auto 0; /* spacing and center */
  border-radius: 2px;
}

/* Grid system for responsiveness */
.portfolio-grid1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 30px;
}

.portfolio-item1 {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-item1:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

/* Correct image handling for large 8000px / 6000px images */
.portfolio-item1 img {
  width: 100%;             /* responsive width */
  height: 240px;           /* uniform preview size */
  object-fit: cover;       /* crop proportionally */
  border-radius: 8px;      /* smooth corners */
  display: block;
}

.portfolio-item1 h4 {
	  font-family: 'Readex Pro', sans-serif;
  font-weight: 400;
  margin: 15px 0;
  font-size: 1.1rem;
  color: #333;
}

/* Feature button container */
.feature-button1 {
  display: flex;
  justify-content: center;
  gap: 200px;          /* space between buttons */
  margin-top: 20px;
  flex-wrap: wrap;    /* stack on small screens */
}

/* Style for both buttons */
.feature-button1 button {
  flex: 1;            /* take equal width */
  max-width: 550px;   /* prevent overly wide on desktop */
  background-color: #3C63AE;
  border: 3px solid #3C63AE;;
  color: white;
  font-family: 'Readex Pro', sans-serif;
  font-weight: 400;
  font-size: 16px;
  padding: 12px 40px;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s ease;
}

/* Hover effect */
.feature-button1 button:hover {
  background-color: white;
  border-color: #3C63AE;
  color: #3C63AE;
}

/* ===== Responsive Breakpoints ===== */

/* Small phones (portrait <480px) */
@media (max-width: 480px) {
  .portfolio1 {
    padding: 40px 15px;
  }
  .portfolio1 h2 {
    font-size: 20px;
  }
  .portfolio1 p {
    font-size: 13px;
  }
	
	.portfolio1 p::after {width: 600px;height: 3px;}
	
	.portfolio-grid1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 30px;
  justify-items: center;   /* centers items in their grid cell */
}
	
	.portfolio-item1 {
  width: 250px;           /* fixed box width */
  height: 160px;          /* fixed box height */
  overflow: hidden;       /* crop any overflow */
  display: flex;
  align-items: center;
  justify-content: center;
}
	
 .portfolio-item1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;      /* keeps aspect ratio, fills box */
  display: block;
}
  .feature-button1 {
    flex-direction: column;
    gap: 15px;
  }
  .feature-button1 button {
  width: auto;            /* let it size by content or max-width */
  min-width: 180px;       /* optional: set a nice fixed width */
  font-size: 15px;
  padding: 12px 24px;     /* balanced padding */
  display: block;         /* so margin works */
  margin: 0 auto;         /* centers horizontally */
}
}

/* Phones (landscape 481px–767px) */
@media (min-width: 481px) and (max-width: 932px) {
  .portfolio1 h2 {
    font-size: 18px;
  }
  .portfolio1 p {
    font-size: 14px;
  }
	.portfolio1 p::after {width: 400px;height: 3px;}
	
  .portfolio-grid1 {
    grid-template-columns: 1fr 1fr;
  }
  .portfolio-item1 img {
    height: 180px;
  }
	
   .feature-button1 {
    flex-direction: row;         /* side by side */
    justify-content: center;     /* center the row */
    gap: 15px;                   /* space between */
  }

  .feature-button1 button {
    flex: 1;                     /* equal width */
    min-width: 180px;
    max-width: 550px;            /* keep them reasonable */
  }
}

@media (min-width: 1024px) and (max-width: 1366px) and (orientation: portrait) {
  .portfolio1 h2 {
    font-size: 20px; /* bigger heading for iPad Pro portrait */
  }
  .portfolio1 p {
    font-size: 14px;
  }
  .portfolio-grid1 {
    grid-template-columns: repeat(2, 1fr);
  }
  .portfolio-item1 img {
    height: 260px;
  }
	
	.portfolio1 p::after {max-width: 390px;}
	
  .feature-button1 {
    gap: 150px;
  }
  .feature-button1 button {
    min-width: 320px;
    font-size: 15px;
    padding: 12px 22px;
  }
}

@media only screen and (min-width: 1023px) and (max-width: 1367px) and (orientation: landscape) {
 .portfolio1 h2 {
  font-size: 32px !important;  /* test with !important if needed */
}
.portfolio1 p {
  font-size: 20px !important;
}
  .portfolio-grid1 {
    grid-template-columns: repeat(3, 1fr); /* 3 columns in wide view */
  }
  .portfolio-item1 img {
    height: 280px;
  }
  .portfolio1 p::after {
    max-width: 650px;
  }
  .feature-button1 {
    gap: 40px;
  }
  .feature-button1 button {
    max-width: 590px;
    font-size: 16px;
    padding: 14px 24px;
  }
}
/* Large desktops (1280px and up) */
@media (min-width: 1280px) {
  .portfolio1 h2 {
    font-size: 40px;
  }
  .portfolio1 p {
    font-size: 25px;
  }
  .portfolio-grid1 {
    grid-template-columns: repeat(2, 1fr);
  }
  .portfolio-item1 img {
    height: 400px;
  }
}

/*--------------------------animation of second portfolio section------------------------*/

/* ====== Scroll Animation Base ====== */
.portfolio1 h2,
.portfolio1 p,
.portfolio1 p::after,
.portfolio-item1,
.portfolio-item1 h4,
.feature-button1 button {
  opacity: 0;
  transform: translateY(20px);  /* start slightly below */
  transition: all 0.8s ease-out;
}

/* When visible */
.portfolio1 h2.visible,
.portfolio1 p.visible,
.portfolio1 p.visible::after,
.portfolio-item1.visible,
.portfolio-item1 h4.visible,
.feature-button1 button.visible {
  opacity: 1;
  transform: translateY(0);
}
html {
  scroll-behavior: smooth;
}





/*--------------------------------------------------portfolio real page work-------------------------
*/
/* ===== Portfolio Header ===== */
.portfolio-header {
  text-align: center;
  padding: 0px 20px;
}

/* Heading same as .mission h2 */
.portfolio-header h2 {
  margin-top: 40px;
  color: black;
  align-content: center;
  font-family: 'Readex Pro', sans-serif;
  font-weight: 400;
  font-size: 40px;
}

/* Paragraph same as .mission p */
.portfolio-header p {
  color: black;
  text-align: center;
  font-family: 'Readex Pro', sans-serif;
  font-weight: 100;
  font-size: 25px;
  padding-bottom: 50px;
  border-bottom: 3px solid transparent; /* so bar can be added */
  position: relative;
}

/* Bottom bar below paragraph */
.portfolio-header p::after {
  content: "";
  display: block;
  width: 650px;           /* bar length */
  max-width: 90%;         /* responsive */
  height: 5px;            /* bar thickness */
  background: #3C63AE;    /* bar color */
  margin: 10px auto 0;    /* spacing and center */
  border-radius: 2px;
}
/* ===== Portfolio Grid ===== */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* exactly 3 boxes per row on desktop */
  gap: 15px; /* space between boxes */
  padding: 0 20px;
  justify-items: center;
}

/* ===== Portfolio Item - Fixed size ===== */
.portfolio-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 450px;       /* fixed width */
  height: 350px;      /* fixed height */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin: 0 auto;
  position: relative;
}

.portfolio-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

/* ===== Image inside the box ===== */
.portfolio-image {
  flex: 1;                 /* fill the top of the box */
  overflow: hidden;
  border-radius: 12px 12px 0 0;
  position: relative;
}

.portfolio-image img {
  width: 100%;
  height: 100%;            /* fill the container */
  object-fit: cover;       /* crop proportionally */
  display: block;
  transition: transform 0.4s ease;
}

.portfolio-item:hover .portfolio-image img {
  transform: scale(1.05);
}

/* ===== Texts below image inside box ===== */
.portfolio-item h4 {
  font-family: 'Readex Pro', sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  color: #222;
  margin: 5px 0 5px;
}

.portfolio-item p {
  font-family: 'Readex Pro', sans-serif;
  font-weight: 300;
  font-size: 0.95rem;
  color: #555;
  margin: 0 10px 10px;
  text-align: center;
}

/* ===== Responsive ===== */

/* Tablet - 2 boxes per row */
@media (max-width: 1023px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .portfolio-item {
    width: 90%;           /* adjust width to fit smaller screens */
    height: 320px;
  }
}

/* Mobile - 1 box per row */
@media (max-width: 767px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .portfolio-item {
    width: 95%;           /* full width on mobile */
    height: 300px;
  }
}



/* ===== Portfolio Header Animation ===== */
.portfolio-header h2,
.portfolio-header p,
.portfolio-header p::after {
  opacity: 0;
  transform: translateY(20px); /* start slightly below */
  animation: fadeSlideUp 1s ease forwards;
}

/* Stagger animations */
.portfolio-header h2 {
  animation-delay: 0.2s;
}

.portfolio-header p {
  animation-delay: 0.5s;
}

.portfolio-header p::after {
  animation-delay: 0.8s;
}

/* Keyframes for fade + slide-up */
@keyframes fadeSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Buttons Wrapper ===== */
.portfolio-buttons-wrapper {
  display: flex;
   /* left/right alignment */
  max-width: 900px;               /* total container width */
  margin: 40px auto 60px;         /* vertical spacing */
  gap: 20px;                       /* space between buttons */
}

/* Buttons - normal state */
.portfolio-buttons-wrapper .btn {
  display: inline-block;
  width: 440px;                /* fixed width */
  padding: 15px 0;
  font-family: 'Readex Pro', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  background-color: #3C63AE;
  border: 2px solid transparent;  /* reserve space for border */
  border-radius: 30px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;           
  transition: all 0.3s ease;
  box-sizing: border-box;
}

/* Hover effect */
.portfolio-buttons-wrapper .btn:hover {
  background-color: #fff;      
  color: #3C63AE;              
  border-color: #3C63AE;       /* just change color, no size change */
}

/* Base style for both buttons */
.social-button {
  position: fixed;
  right: 20px;
  z-index: 1000;
  width: 60px;       /* fixed size container */
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  cursor: pointer;
}



* ===== Responsive ===== */

/* Tablet landscape (1024px - 1279px) */
@media (max-width: 1279px) {
  .portfolio-buttons-wrapper {
    justify-content: space-around;
    gap: 15px;
  }
  .portfolio-buttons-wrapper .btn {
    width: 200px;
    font-size: 16px;
    padding: 14px 0;
  }
}

/* Tablet portrait (768px - 1023px) */
@media (max-width: 1023px) {
  .portfolio-buttons-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  .portfolio-buttons-wrapper .btn {
    width: 80%;                   /* full width on smaller screens */
    max-width: 300px;
    font-size: 16px;
    padding: 14px 0;
  }
}

/* Mobile (up to 767px) */
@media (max-width: 767px) {
  .portfolio-buttons-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .portfolio-buttons-wrapper .btn {
    width: 90%;                    /* almost full width */
    max-width: 280px;
    font-size: 16px;
    padding: 12px 0;
  }
}


/* ===== Scroll Animation for Portfolio Items ===== */
.portfolio-item {
  opacity: 0;              /* start hidden */
  transform: translateY(30px);  /* slightly below */
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* When item is visible */
.portfolio-item.animate {
  opacity: 1;
  transform: translateY(0);
}



/* Sidebar container (optional, but helps) */
.floating-social-sidebar {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 15px; /* space between buttons */
}

/* Each button base style */
.floating-social-sidebar a {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  overflow: hidden;
}

/* Icon images */
.floating-social-sidebar a img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
  pointer-events: none;
}

/* WhatsApp Button (top-right, above Instagram) */
.whatsapp-button {
  position: fixed;
  right: 20px;
  bottom: 90px;               /* sits above Instagram */
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #25D366;  /* WhatsApp green */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  z-index: 1000;
}

.whatsapp-button img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  pointer-events: none;
}

.whatsapp-button:hover {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 10px 28px rgba(0,0,0,0.22);
  background: #fff;
}

/* Instagram Button (bottom-right corner) */
.instagram-button {
  position: fixed;
  right: 20px;
  bottom: 20px;               /* sticks at bottom */
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(45deg,
    #f09433 0%, #e6683c 25%,
    #dc2743 50%, #cc2366 75%, #bc1888 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  z-index: 1000;
}

.instagram-button img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  pointer-events: none;
}

.instagram-button:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 0 18px rgba(225, 48, 108, 0.6), 0 10px 28px rgba(0,0,0,0.22);
}


/* Hover effect */
.floating-social-sidebar a:hover {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 10px 28px rgba(0,0,0,0.22);
  background: #fff;
}

/* WhatsApp hover: icon turns green */

/* Responsive smaller size on mobiles */
@media (max-width: 767px) {
  .floating-social-sidebar a {
    width: 50px;
    height: 50px;
  }
  .floating-social-sidebar a img {
    width: 22px;
    height: 22px;
  }
}




.portfolio-header3 {
  text-align: center;
  padding: 0px 20px;
	opacity: 0;                 /* hidden initially */
  transform: translateY(50px); /* start below */
  transition: all 1s ease;    /* smooth animation */

}
.portfolio-header3.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Heading same as .mission h2 */
.portfolio-header3 h2 {
  margin-top: 40px;
  color: black;
  align-content: center;
  font-family: 'Readex Pro', sans-serif;
  font-weight: 400;
  font-size: 40px;
}



/* Bottom bar below paragraph */
.portfolio-header3 h2::after {
  content: "";
  display: block;
  width: 650px;           /* bar length */
  max-width: 90%;         /* responsive */
  height: 5px;            /* bar thickness */
  background: #3C63AE;    /* bar color */
  margin: 10px auto 0;    /* spacing and center */
  border-radius: 2px;
}





/* ===== Social Media Section ===== */
.social-media-section {
  max-width: 1400px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

.social-media-heading h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.heading-bar {
  width: 80px;              /* length of the bar */
  height: 4px;              /* thickness */
  background-color: #0073e6; /* color of the bar */
  margin: 0 auto 40px auto;  /* centered under heading with spacing */
  border-radius: 2px;
}

/* ===== Poster Grid (keeps previous styling) ===== */
.portfolio-social3 {
  display: grid;
  grid-template-columns: repeat(3, 400px); /* 3 fixed columns */
  justify-content: center;
  gap: 40px;
  margin: 50px auto;
}

.portfolio-social3 .portfolio-social-item3 {
  width: 400px;
  height: 500px;margin-top:10px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease; opacity: 0;               /* initially hidden */
  transform: translateY(50px);
}
/* When visible */
.portfolio-social3 .portfolio-social-item3.visible {
  opacity: 1;
  transform: translateY(0);
}
.portfolio-social3 .portfolio-social-item3 img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.4s ease;
}

.portfolio-social3 .portfolio-social-item3:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.18);
}

.portfolio-social3 .portfolio-social-item3:hover img {
  transform: scale(1.05);
}

.portfolio-header3.visible {
  opacity: 1;
  transform: translateY(0);
}






/*-------------


/* Heading same as .mission h2 */
.portfolio-header4 h2 {
  margin-top: 40px;
  color: black;
  text-align: center; /* ✅ centers the heading text */
  font-family: 'Readex Pro', sans-serif;
  font-weight: 400;
  font-size: 40px;
}



/* Bottom bar below paragraph */
.portfolio-header4 h2::after {
  content: "";
  display: block;
  width: 650px;           /* bar length */
  max-width: 90%;         /* responsive */
  height: 5px;            /* bar thickness */
  background: #3C63AE;    /* bar color */
  margin: 10px auto 0;    /* spacing and center */
  border-radius: 2px;
}

/* Grid Layout */
.photo-grid2 {
  display: grid;
  grid-template-columns: repeat(3, 300px); /* always 3 fixed-width boxes */
  gap: 20px;
  justify-content: center; /* centers the grid in parent */
  padding: 50px 0;
}

/* Image boxes */
.portfolio-social-item4 {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: #f0f0f0;
  width: 300px;   /* fixed width */
  height: 300px;  /* fixed height */
}

/* Make images fit nicely */
.portfolio-social-item4 img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* crops extra but keeps proportions */
  border-radius: 12px;
  transition: transform 0.3s ease;
}

/* Hover zoom effect */
.portfolio-social-item4:hover img {
  transform: scale(1.05);
}
/*-----------------------------------------------animation work area------------------------*/

/* Header fade-up animation */
.portfolio-header4 {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.portfolio-header4.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Image box fade-up animation */
.portfolio-social-item4 {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.portfolio-social-item4.visible {
  opacity: 1;
  transform: translateY(0);
}







/*video work area*/

.portfolio-header5 h2 {
  margin-top: 40px;
  color: black;
  text-align: center; /* ✅ centers the heading text */
  font-family: 'Readex Pro', sans-serif;
  font-weight: 400;
  font-size: 40px;
}



/* Bottom bar below paragraph */
.portfolio-header5 h2::after {
  content: "";
  display: block;
  width: 650px;           /* bar length */
  max-width: 90%;         /* responsive */
  height: 5px;            /* bar thickness */
  background: #3C63AE;    /* bar color */
  margin: 10px auto 0;    /* spacing and center */
  border-radius: 2px;
}


.portfolio-social-reel {
  position: relative;
  width: 400px;
  height: 720px;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  margin: 0 auto;
}

/* Container for all reels */
.reel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* ✅ 3 videos per row */
  gap: 30px; /* spacing between videos */
  max-width: 1300px; /* keeps videos centered */
  margin: 0 auto; /* centers grid on page */
  padding: 50px;
}

.reel-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-left: 60px solid #fff;
  border-top: 35px solid transparent;
  border-bottom: 35px solid transparent;
  cursor: pointer;
  z-index: 10;
}

.mute-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  cursor: pointer;filter: invert(100%) brightness(200%);
  z-index: 10;
}


/* Grid wrapper for horizontal videos */
.youtube-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 per row */
  gap: 20px;
  justify-content: center;
  margin: 0px auto;
  max-width: 1400px; /* keeps alignment neat */
}

/* Each video box */
.youtube-reel {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9; /* keeps YouTube proportion */
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}

/* Make video fit */
.youtube-reel video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}
/*--------------------------------------animation work area-----------------------------------*/

/* Header fade-up */
.portfolio-header5 {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.portfolio-header5.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Video box fade-up */
.portfolio-social-reel,
.youtube-reel {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.portfolio-social-reel.visible,
.youtube-reel.visible {
  opacity: 1;
  transform: translateY(0);
}







/*--------------------------------------instagram market work area--------------------*/


/* ===== Section Heading ===== */
.portfolio-header6 h2 {
  margin-top: 40px;
  color: black;
  text-align: center;
  font-family: 'Readex Pro', sans-serif;
  font-weight: 400;
  font-size: 40px;
}

/* Bottom bar below heading */
.portfolio-header6 h2::after {
  content: "";
  display: block;
  width: 650px;          
  max-width: 90%;         
  height: 5px;            
  background: #3C63AE;    
  margin: 10px auto 0;    
  border-radius: 2px;
}

/* ===== Portfolio Grid ===== */
.photo-grid6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 equal columns */
  gap: 30px;
  max-width: 1300px;
  margin: 50px auto;
  padding: 0 20px;
}

/* Poster Box */
.portfolio-social-item6 {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: #f0f0f0;
  aspect-ratio: 4 / 5; /* Instagram poster size (vertical) */
}

/* Image fit */
.portfolio-social-item6 img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  border-radius: 12px;
  transition: transform 0.3s ease;
}

/* Hover zoom effect */
.portfolio-social-item6:hover img {
  transform: scale(1.05);
}


/*-------------------------------------animation 5 work area-----------------------------------------------*/
/* --- Header Animation --- */
.portfolio-header6 {
  opacity: 0;             
  transform: translateY(50px); 
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.portfolio-header6.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Poster Boxes Animation --- */
.portfolio-social-item6 {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.portfolio-social-item6.visible {
  opacity: 1;
  transform: translateY(0);
}




/* ==========================================
   MOBILE PORTRAIT (up to 768px)
   ========================================== */
@media (max-width: 768px) and (orientation: portrait) {

  /* Heading */
  .portfolio-header h2 {
    margin-top: 30px;       /* slightly smaller top margin */
    font-size: 24px;        /* smaller font for mobile */
    line-height: 1.3;
    text-align: center;
  }

  /* Paragraph */
  .portfolio-header p {
    font-size: 14px;        /* smaller text for portrait */
    line-height: 1.4;
    padding-bottom: 30px;   /* less space */
    text-align: center;
  }

  /* Bottom bar under paragraph */
  .portfolio-header p::after {
    width: 80%;             /* shorter bar on mobile */
    height: 3px;            /* thinner bar */
    margin: 8px auto 0;
  }
	
	
	/* Grid layout */
  .photo-grid2,
  .photo-grid6,
  .portfolio-social3 {
    display: grid;
    grid-template-columns: 1fr;   /* 1 column */
    justify-items: center;
    gap: 15px;
    padding: 10px;
    margin: 20px auto;
    width: 100%;
  }
.photo-grid6 {
    display: grid;
    grid-template-columns: 1fr;  /* single column */
    justify-items: center;
    gap: 15px;
    padding: 10px;
    margin: 20px auto;
    width: 100%;
  }

  /* Poster boxes */
  .photo-grid6 .portfolio-social-item6 {
    width: 90%;           /* responsive width */
    max-width: 250px;     /* max size for portrait mobile */
    aspect-ratio: 4 / 5;  /* vertical Instagram poster ratio */
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f0f0f0;
  }

  /* Image fills the box perfectly */
  .photo-grid6 .portfolio-social-item6 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
  }
	
	.portfolio-social3 .portfolio-social-item3 img{object-fit: fill;}
	
  /* Uniform image boxes */
  .portfolio-social-item3,
  .portfolio-social-item4,
  .portfolio-social-item6 {
    width: 80%; 
	  
	  max-height: 300px;        /* responsive width */
    max-width: 250px;    /* maximum size for mobile */
    aspect-ratio: 1 / 1; /* square box */
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  /* Image fills box perfectly */
  .portfolio-social-item3 img,
  .portfolio-social-item4 img,
  .portfolio-social-item6 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
/* Reel grid: 1 column, centered */
  .reel-grid {
    display: grid;
    grid-template-columns: 1fr; /* 1 video per row */
    gap: 12px;                  /* spacing between videos */
    padding: 10px;
    margin: 0 auto;
    width: 100%;
    justify-items: center;       /* center videos */
  }

  /* Each video box */
  .reel-video {
               /* cap size */
    aspect-ratio: 9 / 16;        /* vertical reel */
    height: auto;                /* auto height to fit ratio */
    border-radius: 12px;
    object-fit: cover;
    position: relative;
    overflow: hidden;
  }

  /* Play button overlay */
    .play-icon {
    border-left: 40px solid #fff;  /* smaller triangle */
    border-top: 25px solid transparent;
    border-bottom: 25px solid transparent;
  }

  /* Mute button overlay */
  .mute-btn {
    width: 24px;
    height: 24px;
    top: 10px;
    right: 10px;
  }
  /* Video grids */
  .reel-grid,
  .youtube-grid {
    display: grid;
    grid-template-columns: 1fr;  /* 1 per row */
    gap: 15px;
    margin: 20px auto;
    width: 100%;
  }

  .portfolio-social-reel {
    width: 90%;              /* fit screen width with margin */
    max-width: 280px;        /* cap size */
    aspect-ratio: 9 / 16;    /* vertical reel proportion */
    height: auto;            /* height adjusts automatically */
    border-radius: 12px;
    overflow: hidden;
    margin: 0 auto 15px auto; /* center and add bottom spacing */
    display: block;
    object-fit: cover;       /* image/video fills box */
  }
  .youtube-reel {
    width: 90%;
    max-width: 320px;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    margin: 0 auto;
  }

  /* Headings & bottom bars */
  .portfolio-header3 h2,
  .portfolio-header4 h2,
  .portfolio-header5 h2,
  .portfolio-header6 h2 {
    font-size: 20px;
    line-height: 1.3;
    margin-top: 20px;
  }

  .portfolio-header3 h2::after,
  .portfolio-header4 h2::after,
  .portfolio-header5 h2::after,
  .portfolio-header6 h2::after {
    width: 60%;
    height: 3px;
  }
}

/* ==========================================
   MOBILE LANDSCAPE (up to 1024px)
   ========================================== */
@media (max-width: 1024px) and (orientation: landscape) {

  /* Heading */
  .portfolio-header h2 {
    margin-top: 25px;
    font-size: 26px;        /* a bit larger than portrait */
    line-height: 1.3;
    text-align: center;
  }

  /* Paragraph */
  .portfolio-header p {
    font-size: 16px;
    line-height: 1.4;
    padding-bottom: 25px;
    text-align: center;
  }

  /* Bottom bar under paragraph */
  .portfolio-header p::after {
    width: 70%; 
    height: 3px;
    margin: 8px auto 0;
  }

	.portfolio-header3 h2{font-size: 26px;}
	.portfolio-header3 h2::after {width: 500px;}
	.portfolio-header6 h2 {font-size: 26px;}
	.portfolio-header6 h2::after {width: 500px;}
	.portfolio-header4 h2{font-size: 26px;}
	.portfolio-header4 h2::after{width: 500px;}
	.portfolio-header5 h2{font-size: 26px;}
	.portfolio-header5 h2::after{width: 500px;}
	
	
  /* Grid layout - 2 columns for more width */
   .photo-grid2,
  .photo-grid6,
  .portfolio-social3 {
    display: grid;
    grid-template-columns: repeat(1, 1fr); /* ✅ Always 2 per row */
    justify-items: center;
    align-items: center;
    gap: 20px;   /* spacing */
    padding: 15px;
    margin: 20px auto;
    width: 100%;
  }

	.photo-grid2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* ✅ 2 equal columns */
  gap: 20px;
  padding: 10px;
  max-width: 600px;   /* ✅ keeps grid centered */
  margin: 30px auto;     /* ✅ centers inside page */
  width: 100%;
  box-sizing: border-box;
}

/* Boxes inside grid */
.photo-grid2 .portfolio-social-item2 {
  width: 100%;           /* fills grid cell */
  aspect-ratio: 4 / 5;   /* poster ratio */
  border-radius: 12px;
  overflow: hidden;
  background: #f0f0f0;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Image fits box perfectly */
.photo-grid2 .portfolio-social-item2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
	}

/* Desktop first */
.photo-grid2 {
  grid-template-columns: repeat(2, 1fr);
}
.photo-grid6 {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important; /* 2 boxes per row */
    gap: 12px !important;                              /* reduced spacing */
    padding: 10px !important;
    margin: 30px auto !important;                      /* center grid */
    max-width: 640px !important;                       /* fits screen nicely */
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Each poster box */
  .photo-grid6 .portfolio-social-item6 {
    width: 100% !important;       /* fills its column */
    max-width: 300px !important;  /* smaller max-width */
    aspect-ratio: 4 / 5 !important; /* vertical poster ratio */
    border-radius: 12px !important;
    overflow: hidden !important;
    background: #f0f0f0 !important;
    margin: 0 auto !important;    /* center box in column */
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }

  /* Images inside boxes */
  .photo-grid6 .portfolio-social-item6 img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    border-radius: 12px !important;
  }
	
	 /* 🔹 Reel Grid - 2 per row */
  .reel-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important; 
    justify-items: center !important;
    align-items: start !important;
    gap: 12px !important;  /* slightly larger spacing for readability */
    padding: 10px !important;
    margin: 20px auto !important;
    max-width: 640px !important;  /* fits nicely on mobile landscape */
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Each Reel Video Box */
  .reel-video,
  .portfolio-social-reel {
    width: 100% !important;
	  height: auto;
    max-width: 300px !important;       /* smaller width for mobile */
    aspect-ratio: 9 / 16 !important;   /* vertical reel proportion */
    border-radius: 12px !important;
    overflow: hidden !important;
    background: #000 !important;
    margin: 0 auto !important;
    position: relative !important;
    object-fit: cover !important;      /* ensures content fits the box */
  }

  /* Play Button */
  .play-icon {
    border-left: 24px solid #fff !important;
    border-top: 14px solid transparent !important;
    border-bottom: 14px solid transparent !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    z-index: 10 !important;
  }

  /* Mute Button */
  .mute-btn {
    width: 20px !important;
    height: 20px !important;
    top: 6px !important;
    right: 6px !important;
    position: absolute !important;
    z-index: 10 !important;
    cursor: pointer !important;
    filter: invert(100%) brightness(200%) !important;
  }

  /* 🔹 YouTube Grid - 1 per row, slightly bigger */
  .youtube-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    justify-items: center !important;
    gap: 15px !important;
    margin: 20px auto !important;
    max-width: 480px !important;   /* slightly bigger for visibility */
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .youtube-reel {
    width: 100% !important;
    max-width: 480px !important;
    aspect-ratio: 16 / 9 !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    background: #000 !important;
    margin: 0 auto !important;
    display: block !important;
    object-fit: cover !important;
  }

  /* Buttons wrapper - 2 in one line */
.portfolio-buttons-wrapper {
    display: flex !important;
    flex-direction: row !important; /* side by side */
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: wrap !important;    /* wraps if screen too small */
   !important;   /* adjust container width */
    margin: 20px auto 30px !important;
    gap: 12px !important;          /* space between buttons */
    padding: 0 10px !important;
    box-sizing: border-box !important;
}

/* Buttons size - slightly larger */
.portfolio-buttons-wrapper .btn {
    width: 48% !important;         /* almost half of container */
    max-width: 250px !important;   /* larger than before */
    padding: 12px 0 !important;    /* a little taller */
    font-size: 16px !important;    /* slightly bigger font */
    border-radius: 20px !important;
    text-align: center !important;
}

/* Hover effect */
.portfolio-buttons-wrapper .btn:hover {
    background-color: #fff !important;
    color: #3C63AE !important;
    border-color: #3C63AE !important;
}

  /* Social fixed buttons */
  .social-button {
    right: 10px !important;
    width: 40px !important;
    height: 40px !important;
    padding: 6px !important;
    box-sizing: border-box !important;
  }
	
}
/* ==========================================
   TABLET PORTRAIT (768px – 1024px)
   ========================================== */
@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {

 /* 🔹 Portfolio Headings & Paragraphs */
  .portfolio-header,
  .portfolio-header3,
  .portfolio-header4,
  .portfolio-header5,
  .portfolio-header6 {
    text-align: center !important;
    margin: 0 auto !important;
    width: 100% !important;
  }
	
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
	}
	
  .portfolio-header h2,
  .portfolio-header3 h2,
  .portfolio-header4 h2,
  .portfolio-header5 h2,
  .portfolio-header6 h2 {
    margin-top: 30px !important;
    font-size: 28px !important;
    line-height: 1.3 !important;
    text-align: center !important;
  }

  .portfolio-header p {
    font-size: 16px !important;
    line-height: 1.4 !important;
    text-align: center !important;
    padding-bottom: 25px !important;
    margin: 0 auto !important;
  }

  /* Bottom bars centered */
  .portfolio-header p::after,
  .portfolio-header3 h2::after,
  .portfolio-header4 h2::after,
  .portfolio-header5 h2::after,
  .portfolio-header6 h2::after {
    width: 70% !important;
    height: 3px !important;
    margin: 8px auto 0 !important;
    display: block !important;
  }

  /* 🔹 Image Grids (2 per row on tablet) */
  .photo-grid2,
  .photo-grid6,
  .portfolio-social3 {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important; /* 2 per row */
    justify-items: center !important;
    align-items: center !important;
    gap: 15px !important;
    padding: 15px !important;
    margin: 20px auto !important;
    max-width: 900px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
/* Grid container */
  .portfolio-social3 {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important; /* 2 boxes per row */
    justify-items: center !important;                 /* center each box horizontally */
    align-items: start !important;                    /* align top edges */
    gap: 12px !important;                             /* slightly smaller spacing */
    padding: 10px !important;
    margin: 40px auto !important;                        /* center grid */
    max-width: 840px !important;                      /* a bit wider for bigger images */
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Each box */
  .portfolio-social3 .portfolio-social-item3 {
    width: 100% !important;
	  height: 100%;/* fills its column */
    max-width: 500px !important;      /* slightly larger box */
    aspect-ratio: 1 / 1 !important;   /* square box */
    border-radius: 12px !important;
    overflow: hidden !important;
    background: #f0f0f0 !important;
    margin: 0 auto !important;        /* center box in column */
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }

  /* Images inside boxes */
  .portfolio-social3 .portfolio-social-item3 img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    border-radius: 12px !important;
  }
	
  /* 🔹 Poster Boxes */
  .photo-grid2 .portfolio-social-item2,
  .photo-grid6 .portfolio-social-item6,
  .portfolio-social3 .portfolio-social-item3 {
    width: 100% !important;
    max-width: 280px !important;
    aspect-ratio: 4 / 5 !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    background: #f0f0f0 !important;
    margin: 0 auto !important; /* centers each box */
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }

  /* 🔹 Images inside boxes */
  .photo-grid2 .portfolio-social-item2 img,
  .photo-grid6 .portfolio-social-item6 img,
  .portfolio-social3 .portfolio-social-item3 img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    border-radius: 12px !important;
  }

	
	 /* Grid container */
  .photo-grid6 {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important; /* 2 boxes per row */
    justify-items: center !important;                 /* center boxes */
    align-items: start !important;                    /* align top edges */
    gap: 12px !important;                             /* reduced spacing */
    padding: 10px !important;
    margin: 40px auto !important;                        /* center grid */
    max-width: 640px !important;                      /* fits 2 boxes nicely */
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Each poster box */
  .photo-grid6 .portfolio-social-item6 {
    width: 100% !important;           /* fills its column */
    max-width: 300px !important;      /* slightly bigger box */
    aspect-ratio: 4 / 5 !important;   /* vertical poster ratio */
    border-radius: 12px !important;
    overflow: hidden !important;
    background: #f0f0f0 !important;
    margin: 0 auto !important;        /* center box in column */
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }

  /* Images inside boxes */
  .photo-grid6 .portfolio-social-item6 img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    border-radius: 12px !important;
  }
	
	
	/* Grid container */
  .photo-grid2 {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important; /* 2 boxes per row */
    justify-items: center !important;                 /* center boxes */
    align-items: start !important;                    /* align top edges */
    gap: 12px !important;                             /* reduced spacing */
    padding: 10px !important;
    margin: 40px auto !important;                        /* center grid */
    max-width: 640px !important;                      /* fits 2 boxes nicely */
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Each poster box */
  .photo-grid2 .portfolio-social-item2 {
    width: 100% !important;           /* fills its column */
    max-width: 300px !important;      /* slightly bigger box */
    aspect-ratio: 4 / 5 !important;   /* vertical poster ratio */
    border-radius: 12px !important;
    overflow: hidden !important;
    background: #f0f0f0 !important;
    margin: 0 auto !important;        /* center box in column */
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }

  /* Images inside boxes */
  .photo-grid2 .portfolio-social-item2 img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    border-radius: 12px !important;
  }
	
  /* Grid container - 2 per row */
  .reel-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important; /* 2 reels per row */
    justify-items: center !important;
    align-items: start !important;
    gap: 10px !important;                             /* slightly smaller gap */
    padding: 10px !important;
    margin: 40px auto !important;
    max-width: 600px !important;                      /* fits two videos nicely */
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Each Reel Video Box */
  .reel-video,
  .portfolio-social-reel {
    width: 100% !important;
	  height: auto;
    max-width: 540px !important;       /* smaller width */
    aspect-ratio: 3 / 5 !important;    /* reduces height (was 9/16) */
    border-radius: 12px !important;
    object-fit: cover !important;
    overflow: hidden !important;
    background: #000 !important;
    margin: 0 auto !important;         /* center within column */
    position: relative !important;
  }

  /* Play Button */
  .play-icon {
    border-left: 28px solid #fff !important;
    border-top: 18px solid transparent !important;
    border-bottom: 18px solid transparent !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    z-index: 10 !important;
  }

  /* Mute Button */
  .mute-btn {
    width: 20px !important;
    height: 20px !important;
    top: 6px !important;
    right: 6px !important;
    position: absolute !important;
    z-index: 10 !important;
    cursor: pointer !important;
    filter: invert(100%) brightness(200%) !important;
  }

/* 🔹 YouTube Grid (1 per row, centered) */
.youtube-grid {
  display: grid !important;
  grid-template-columns: 1fr !important;
  justify-items: center !important;
  gap: 20px !important;
  margin: 20px auto !important;
  max-width: 800px !important;   /* slightly wider for bigger videos */
  width: 100% !important;
  box-sizing: border-box !important;
}

.youtube-reel {
  width: 100% !important;
  max-width: 550px !important;    /* slightly bigger video */
  aspect-ratio: 16 / 9 !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  background: #000 !important;
  margin: 0 auto !important;      /* center horizontally */
  display: block !important;
}

.portfolio-buttons-wrapper {
    display: flex !important;
          /* stack buttons vertically on smaller screens */
    justify-content: center !important;
    align-items: center !important;
    !important;  /* container width for tablet */
    margin: 30px auto 50px !important; /* vertical spacing */
    gap: 15px !important;         /* spacing between buttons */
    padding: 0 10px !important;   /* small padding */
    box-sizing: border-box !important;
  }

  /* Buttons - responsive width */
  .portfolio-buttons-wrapper .btn {
    width: 80% !important;         /* responsive width */
    /* cap width */
    padding: 12px 200px !important;    /* slightly smaller padding */
    font-size: 16px !important;    /* adjust font size */
    border-radius: 25px !important;
    text-align: center !important;
  }

  /* Hover effect remains the same */
  .portfolio-buttons-wrapper .btn:hover {
    background-color: #fff !important;
    color: #3C63AE !important;
    border-color: #3C63AE !important;
  }

  /* Social fixed buttons */
  .social-button {
    right: 15px !important;        /* slightly closer to edge */
    width: 50px !important;        /* smaller for tablet */
    height: 50px !important;
    padding: 8px !important;
    box-sizing: border-box !important;
  }
}


/* ==========================================
   iPad Pro LANDSCAPE ONLY (11" & 12.9")
   ========================================== */
@media only screen 
  and (min-device-width: 1194px) 
  and (max-device-width: 1366px) 
  and (orientation: landscape) {

  /* Portfolio Header */
  .portfolio-header,
  .portfolio-header3,
  .portfolio-header4,
  .portfolio-header5,
  .portfolio-header6 {
    text-align: center !important;
    margin: 0 auto !important;
    width: 100% !important;
  }


	  
  .portfolio-header h2,
  .portfolio-header3 h2,
  .portfolio-header4 h2,
  .portfolio-header5 h2,
  .portfolio-header6 h2 {
    margin-top: 30px !important;
    font-size: 32px !important;
    line-height: 1.3 !important;
    text-align: center !important;
  }

  .portfolio-header p {
    font-size: 18px !important;
    line-height: 1.5 !important;
    text-align: center !important;
    padding-bottom: 30px !important;
    margin: 0 auto !important;
  }

  /* Bottom bars under headings */
  .portfolio-header p::after,
  .portfolio-header3 h2::after,
  .portfolio-header4 h2::after,
  .portfolio-header5 h2::after,
  .portfolio-header6 h2::after {
    width: 70% !important;
    height: 3px !important;
    margin: 8px auto 0 !important;
    display: block !important;
  }

  /* ==========================================
     Grids: Photo, Social, Reels
     ========================================== */

  /* 3-column grids for iPad Pro landscape */
  .photo-grid2,
  .photo-grid6,
  .portfolio-social3 {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    justify-items: center !important;
    align-items: start !important;
    gap: 20px !important;
    padding: 15px !important;
    margin: 30px auto !important;
    max-width: 1200px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Portfolio Social Boxes */
  .portfolio-social3 .portfolio-social-item3,
  .photo-grid2 .portfolio-social-item2,
  .photo-grid6 .portfolio-social-item6 {
    width: 100% !important;
    max-width: 350px !important;
    aspect-ratio: 4 / 5 !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    background: #f0f0f0 !important;
    margin: 0 auto !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }

  /* Images inside boxes */
  .portfolio-social3 .portfolio-social-item3 img,
  .photo-grid2 .portfolio-social-item2 img,
  .photo-grid6 .portfolio-social-item6 img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    border-radius: 12px !important;
  }

  /* Reel Grid */
.reel-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important; /* 3 columns */
    gap: 15px !important;
    padding: 15px !important;
    margin: 40px auto !important;
    max-width: 1200px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    justify-items: center !important;
    align-items: start !important;
}

/* Reel Video Box */
.reel-video,
.portfolio-social-reel {
    width: 100% !important;
    max-width: 400px !important;
    height: auto !important;
    aspect-ratio: 9 / 16 !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    background: #000 !important;
    margin: 0 auto !important;
    position: relative !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

/* Make video fill the box */
.reel-video video,
.portfolio-social-reel video {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important; /* fills entire box without distortion */
    border-radius: 12px !important;
    display: block !important;
}

/* Play Button */
.play-icon {
    border-left: 28px solid #fff !important;
    border-top: 18px solid transparent !important;
    border-bottom: 18px solid transparent !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    z-index: 10 !important;
}

/* Mute Button */
.mute-btn {
    width: 24px !important;
    height: 24px !important;
    top: 6px !important;
    right: 6px !important;
    position: absolute !important;
    z-index: 10 !important;
    cursor: pointer !important;
    filter: invert(100%) brightness(200%) !important;
}


  /* YouTube Grid - 1 video per row, centered */
.youtube-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;  /* 1 column only */
    gap: 25px !important;                    /* space between videos */
    margin: 20px auto !important;
    max-width: 900px !important;             /* slightly bigger than before */
    width: 100% !important;
    justify-items: center !important;
    align-items: start !important;
    box-sizing: border-box !important;
}

/* Each YouTube Video Box */
.youtube-reel {
    width: 100% !important;
    max-width: 700px !important;            /* bigger video size */
    aspect-ratio: 16 / 9 !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    background: #000 !important;
    margin: 0 auto !important;              /* center horizontally */
    display: block !important;
    object-fit: cover !important;           /* fill the box nicely */
}

  /* Portfolio Buttons */
  .portfolio-buttons-wrapper {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 20px !important;
    margin: 30px auto 50px !important;
    max-width: 1200px !important;
    padding: 0 15px !important;
  }

  .portfolio-buttons-wrapper .btn {
    width: 100% !important;
    padding: 12px 25px !important;
    font-size: 18px !important;
    border-radius: 25px !important;
    text-align: center !important;
  }

  .portfolio-buttons-wrapper .btn:hover {
    background-color: #fff !important;
    color: #3C63AE !important;
    border-color: #3C63AE !important;
  }

  /* Social fixed buttons */
  .social-button {
    right: 20px !important;
    width: 50px !important;
    height: 50px !important;
    padding: 8px !important;
    box-sizing: border-box !important;
  }

}


/*insta banner--------------------------*/


.instagram-mobile-banner-1 {
  background: #fff;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  align-items: center;

  /* scroll animation initial state */
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.instagram-mobile-banner-1.active {
  opacity: 1;
  transform: translateY(0);
}

.banner-mobile-content-1 {
  display: flex;
  flex-direction: row; /* side by side */
  align-items: center;
  justify-content: center;
  max-width: 1000px;
  width: 100%;
  gap: 40px;
}

.mobile-image-1 {
  width: 500px;
  max-width: 100%;
  border-radius: 12px;
}

.banner-text-1 {
  flex: 1;
  text-align: left;
}

.banner-text-1 h2 {
	 font-family: 'Readex Pro', sans-serif;
  font-weight: 400;
  font-size: 60px;
  font-weight: 700;
  color: black;
  margin-bottom: 12px;
}

.banner-text-1 p {
	 font-family: 'Readex Pro', sans-serif;
  font-weight: 300;
  font-size: 25px;
  color: black;
  margin-bottom: 20px;
  line-height: 1.6;
}

.follow-btn-1 {
  display: inline-block;
  font-family: 'Readex Pro', sans-serif;
  font-weight: 300;
  padding: 12px 40px;
  border: 2px solid #E1306C;   /* Instagram pink border */
  border-radius: 50px;
  color: #E1306C;              /* Instagram pink text */
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.follow-btn-1:hover {
  background-color: #E1306C;   /* Fill with Instagram pink */
  color: white;                /* White text on hover */
  border: 2px solid #E1306C;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================= */
/* 📱 Mobile Portrait (up to 768px) */
/* ============================= */
@media (max-width: 768px) and (orientation: portrait) {
  .banner-mobile-content-1 {
    flex-direction: column;   /* stack image + text */
    text-align: center;
    gap: 20px;
  }

  .mobile-image-1 {
    width: 100%;
    max-width: 320px;         /* smaller fit */
    margin: 0 auto;
  }

  .banner-text-1 {
    flex: unset;
    text-align: center;       /* center text */
    max-width: 90%;
  }

  .banner-text-1 h2 {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .banner-text-1 p {
    font-size: 12px;
    margin-bottom: 12px;
    line-height: 1.4;
  }

  .follow-btn-1 {
    font-size: 12px;
    padding: 8px 18px;
  }
}

/* ============================= */
/* 📱 Mobile Landscape (up to 768px) */
/* ============================= */
@media (max-width: 768px) and (orientation: landscape) {
  .banner-mobile-content-1 {
    flex-direction: row;      /* keep side by side */
    gap: 20px;
    padding: 10px;
  }

  .mobile-image-1 {
    width: 45%;               /* half screen */
    max-width: 280px;
  }

  .banner-text-1 {
    flex: 1;
    text-align: left;
  }

  .banner-text-1 h2 {
    font-size: 18px;
  }

  .banner-text-1 p {
    font-size: 11px;
    line-height: 1.3;
  }

  .follow-btn-1 {
    font-size: 12px;
    padding: 6px 16px;
  }
}

/* ============================= */
/* 💻 Tablet Portrait (769px–1024px) */
/* ============================= */
@media (min-width: 769px) and (max-width: 1024px) and (orientation: portrait) {
  .banner-mobile-content-1 {
    flex-direction: column;   /* stack for portrait tablet */
    gap: 25px;
  }

  .mobile-image-1 {
    width: 70%;
    max-width: 400px;
  }

  .banner-text-1 h2 {text-align: center;
    font-size: 28px;
  }

  .banner-text-1 p {text-align: center;
    font-size: 16px;
  }

  .follow-btn-1 {
    font-size: 14px;text-align: center;margin-left: 180px;
    padding: 10px 24px;
  }
}

/* ============================= */
/* 💻 Tablet Landscape (769px–1024px) */
/* ============================= */
@media (min-width: 769px) and (max-width: 1024px) and (orientation: landscape) {
  .banner-mobile-content-1 {
    flex-direction: row; text-align: center;justify-content: center;/* side by side */
    gap: 30px;
  }

  .mobile-image-1 {
    width: 50%;
    max-width: 380px;
  }
	
  .banner-text-1 h2 {
    font-size: 30px;
  }

  .banner-text-1 p {
    font-size: 18px;
  }

  .follow-btn-1 {
    font-size: 16px;
    padding: 12px 28px;
  }
}



