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

body { font-family: 'Open Sans', sans-serif; }

/* HEADER */
.header {
  width: 100%;
  height: 70px;
  background: #fff;
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: fixed;
  top: 0;
  z-index: 1000;
}

.container {
  width: 90%;
  margin: auto;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.menu ul {
  display: flex;
  gap: 20px;
  list-style: none;
}

.menu ul li a {
  text-decoration: none;
  font-size: 16px;
  color: #404040;
  padding: 10px 12px;
}

.menu ul li a.active,
.menu ul li a:hover {
  background: #1a426b;
  color: #fff;
}
.menu li .sub-menu {
    display: none; /* hide submenu */
    position: absolute; /* so it floats over content */
    background-color: #1a426b; /* submenu background */
    list-style: none;
    margin: 0;
    min-width: 180px; /* optional */
    z-index: 1000;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
#menu-item-12 a {
	background-color:#1a426b;
	color:#fff;
}
.menu li:hover > .sub-menu {
    display: block; /* show submenu when parent is hovered */
}
.menu li .sub-menu li {
    width: 100%;
    border-bottom: 1px dotted #fff;
}

.menu li .sub-menu li a {
    display: block;
    padding: 12px 8px;
    color: #fff; /* text color */
    text-decoration: none;
}

.menu li .sub-menu li a:hover {
    background-color: #1a426b; /* hover effect */
}
/* ===== HAMBURGER BUTTON ===== */
.menu-toggle {
  display: none;
  font-size: 30px;
  cursor: pointer;
  color: #000;
}
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .menu {
    display: none;
  }

  .menu.active {
    display: block;
  }
	  .menu ul li {
    width: 100%;
    margin: 5px 15px;
    position: relative;
  }
.menu li .sub-menu li {
	border-bottom: 1px dotted #fff;align-content
	}
  .menu li .sub-menu {
    position: absolute;
    top: 0;
    min-width: 180px;
    background: #1a426b;
  }

  .menu li.open > .sub-menu {
    display: block;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {

  .menu ul {
    flex-direction: column;
    gap: 0;
  }

  .menu {
    display: none; /* hide menu by default on mobile */
    width: 35%;
    background-color: #1a426b;
    position: absolute;
    top: 70px;
    right:0;
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }

  .menu ul li {
    width: 100%;
	 margin: 5px 15px;
	  
    position: relative;
  }
	.menu ul li a{
	margin-right: 103px;	
		color:white;
	}

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

  /* SUBMENU inside mobile */
  .menu li .sub-menu {
    position: relative;
    background: #1a426b;
    box-shadow: none;
    padding-right: 15px;
  }

  /* Keep submenu visible only when parent is clicked */
  .menu li:hover > .sub-menu {
    display: block; /* disable hover on mobile */
  }

  /* Add an arrow (optional) */
  .menu ul li.has-sub > a::after {
    content: " ▼";
    float: right;
    font-size: 12px;
  }
}

/* ===== EXTRA SMALL PHONES ===== */
@media (max-width: 576px) {
  .header {
    height: auto;
    padding: 10px 0;
  }
	.menu{
		width:52%;
	}
  .container {
    width: 95%;
  }
	
}
@media (max-width: 330px) {
 
	.menu{
		width:59%;
	}
}
/* HERO SLIDER */
.hero-slider {
  position: relative;
  height: 550px;
  overflow: hidden;
}

.slides {
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: 0.6s ease-in-out;
}

.slide.active {
  opacity: 1;
}
   
.content {
  position: absolute;
  top: 61%;
  left: 52%;
  transform: translate(-50%, -50%); /* center text */
  color: #fff;
  text-align: left;
  max-width: 700px;
  height: 160px;
  z-index: 2;
}


.content .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
   border-radius: 5px;
  background: rgba(0, 0, 0, 0.32); /* dark overlay behind text */
  z-index: -1; /* behind the text */
}



.content p {
  font-size: 12px;
    margin:15px;
    font-weight: bold;
    line-height: 1.2em;

}

/* DOTS */
.dots {
  position: absolute;
  bottom: 85px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.dots div {
  width: 12px;
  height: 12px;
  background: #ddd;
  border-radius: 50%;
  cursor: pointer;
}

.dots .active {
  background: #222;
}
.primary-btn {
margin: 0px 15px;
    color: #fff;
    padding: 7px 22px;
    font-weight: 600;
    font-size: 14px;
    background: #00bcd0 !important;
    text-decoration: none;
}

.primary-btn:hover {
    background: #3f5a84; /* Slightly darker shade */
}
@media (max-width: 576px){
	.content {
		height:180px;
	}
	.content p {
		margin:5px;
	}
	.primary-btn {
    margin: 0px 9px;
		padding:4px 12px;
	}
}
@media (max-width: 320px) {
  .primary-btn { font-size:12px; } 
	
	.dots { 
    bottom: 35px;
    left: 48%;
}
}
/* welcome */

.welcome-section {
  padding: 80px 0;
  text-align: center;
  width: 90%;
  margin: auto;
}

.welcome-small {
    font-size: 32px;
    color: #333333;
    text-transform: uppercase;
    font-weight: 400;
}

.welcome-small .welcome-title {
  color: #00bcd0 !important;
    font-weight: 400;
}


.welcome-line img {
  width: 120px; 
  margin: 0px auto;
  display: block;
}

.welcome-text {
 font-size: 14px;
    color: #7b7b7b;
   max-width: 750px;
    margin: 20px auto;
  
}

.welcome-btn {
 display: block;
    padding: 10px;
    font-weight: bold;
    color: #7b7b7b;
    border: 1px solid #ddd;
    width: 135px;
    margin: 0 auto;
    box-shadow: 5px 5px 5px #ddd;
    text-decoration: none;
    text-transform: uppercase;
  transition: 0.3s;
}

.welcome-btn:hover {
 color:#00bcd0;
}
@media (max-width: 992px) {
  .welcome-section {
    padding: 60px 0;
    width: 95%;
  }

  .welcome-small {
    font-size: 28px;
  }

  .welcome-line img {
    width: 100px;
  }

  .welcome-text {
    font-size: 13px;
    max-width: 100%;
    margin: 15px auto;
  }

  .welcome-btn {
    width: 120px;
    padding: 8px;
    font-size: 13px;
  }
}

/* ===== Mobile (max-width: 576px) ===== */
@media (max-width: 576px) {
  .welcome-section {
    padding: 40px 15px;
    width: 100%;
  }

  .welcome-small {
    font-size: 16px;
  }

  .welcome-line img {
    width: 80px;
  }

  .welcome-text {
    font-size: 12px;
    margin: 10px auto;
  }

  .welcome-btn {
    width: 100px;
    padding: 6px;
    font-size: 12px;
  }
}
/* 3rd section */

.card-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.service-card {
  width: 350px;
  background: #ffffff;
	visibility: visible;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
   cursor: pointer;
  transform-style: preserve-3d;

  /* Animation */
  animation: rotateCard 1s ease forwards;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-footer {
 background: #1a426b;
    color: #fff;
    font-size: 18px;
    padding: 0px 20px;
    display: flex;
    line-height: 45px;
    justify-content: space-between;
    align-items: center;
}
.card-footer:hover {
    background-color: #00bcd0;
}

.service-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.arrow {
  font-size: 26px;
  font-weight: bold;
  line-height: 0;
}
.service-card:hover .arrow {
  transform: rotate(90deg);
}
@media (max-width: 992px) {
  .service-card {
    width: 300px;
  }

  .service-card img {
    height: 180px;
  }

  .card-footer {
    font-size: 16px;
    line-height: 40px;
  }

  .arrow {
    font-size: 22px;
  }
}

/* ===== Mobile (max-width: 576px) ===== */
@media (max-width: 576px) {
  .card-container {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .service-card {
    width: 90%; /* Full width on mobile */
  }

  .service-card img {
    height: 150px;
  }

  .card-footer {
    font-size: 14px;
    line-height: 35px;
    padding: 0 15px;
  }

  .arrow {
    font-size: 20px;
  }
}


/* ===== Desktop (Default) ===== */
.arak-footer {
  background: #34373c;
  color: #ffffff;
  padding: 60px 0 0;
}

.arak-footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding-bottom: 50px;
}

/* Columns */
.arak-footer-col {
  flex: 1;
  min-width: 230px;
}

.footer-logo {
  width: 160px;
  margin-bottom: 20px;
}

.footer-text {
  color: #ffffff;
  line-height: 1.7;
  font-size: 14px;
}

/* Headings */
.footer-heading {
  color: #00caeb;
  font-size: 17px;
  margin-bottom: 18px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #fff;
}

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

.footer-links li a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  transition: color 0.3s;
}

.footer-links li a span {
  color: #00caeb;
  font-size: 20px;
  margin-right: 8px;
}

.footer-links li a:hover {
  color: #00caeb;
}

/* Social Icons */
.footer-socials {
  margin-top: 15px;
  display: flex;
  gap: 10px;
}
.footer-socials .social-icon i {
  font-size: 20px;
  color: #fff;
}

.social-icon {
  width: 35px;
  height: 35px;
  background: #00caeb;
  color: #fff;
  border-radius: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 17px;
  border-bottom: 2px solid #fff;
  text-decoration: none;
  transition: background 0.3s;
}

.social-icon:hover {
  background: #159bad;
}

/* Bottom Bar */
.footer-bottom {
  background: #1e2228;
  padding: 10px 55px;
  color: #fff;
}
@media (max-width: 1024px){
.arak-footer-container {
    max-width: 1200px;
    margin: 0px auto;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 50px;
    padding-left: 32px;
}
}
/* ===== Tablet ===== */
@media (max-width: 992px) {
  .arak-footer-container {
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }

  .arak-footer-col {
    min-width: 45%; /* 2 columns per row */
    margin-bottom: 20px;
  }

  .footer-logo {
    width: 140px;
  }

  .footer-heading {
    font-size: 16px;
  }

  .footer-text,
  .footer-links li a {
    font-size: 13px;
  }

  .social-icon {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }

  .footer-bottom {
    padding: 10px 30px;
    text-align: center;
  }
}

/* ===== Mobile ===== */
@media (max-width: 576px) {
  .arak-footer-container {
    flex-direction: column;
    gap: 20px;
    align-items: center;
    padding: 0 15px;
  }

  .arak-footer-col {
    text-align: center;
  }

  .footer-logo {
    width: 120px;
    margin-bottom: 15px;
  }

  .footer-heading {
    font-size: 15px;
  }
	.footer-links{
		margin-left:32px;
	}
  .footer-text,
  .footer-links li a {
    font-size: 12px;
  }

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

  .footer-links li a span {
    font-size: 18px;
    margin-right: 5px;
  }

  .footer-socials {
    justify-content: center;
    gap: 8px;
  }

  .social-icon {
    width: 30px;
    height: 30px;
    font-size: 15px;
  }

  .footer-bottom {
    padding: 10px 15px;
    font-size: 12px;
  }
}
@media (max-width: 350px) {
	.footer-links{
		margin-left:15px;
	}
}