@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600;700&display=swap");

/* Global variables */
:root {
  --primary: #12bdff;
  --primary-hover: #0c8ec2;
  --dark-primary: #1b1f24;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
}
/* ==================================================================================== */
/* Header */
header {
  position: flex;
  top: 0;
  left: 0;
  right: 0;
  background-color: #032030;
  padding: 25px;
  color: #fff;
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1;
}

header .logo {
  color: var(--primary);
  margin-right: 130px;
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 30px;
}

header ul {
  display: flex;
  list-style: none;
}

header ul li {
  margin-right: 30px;
}

header ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 20px;
  transition: all 0.3s ease 0s;
}

header ul li a:hover {
  color: var(--primary);
  transition: all 0.3s ease 0s;
}

/* Responsive Design */
@media (max-width: 1024px) {
  header {
    padding: 20px;
    justify-content: space-between;
  }

  header .logo {
    margin-right: 50px;
    font-size: 26px;
  }

  header ul li {
    margin-right: 20px;
  }

  header ul li a {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 20px;
  }

  header .logo {
    margin-right: 0;
    margin-bottom: 10px;
    font-size: 24px;
  }

  header ul {
    flex-direction: column;
    width: 100%;
  }

  header ul li {
    margin: 10px 0;
  }

  header ul li a {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: center;
    padding: 15px 20px;
  }

  header .logo {
    margin-bottom: 10px;
    
  }

  header ul {
    display: flex;
    align-items: center; /* keep menu items centered */
    width: auto;
  }

  header ul li {
    margin: 5px ;
  }
}

@media (max-width: 480px) {
  header {
    padding: 10px 15px;
  }

  header .logo {
    font-size: 20px;
  }

  header ul li a {
    font-size: 16px;
  }
}

/*=====================================================================================*/
/* Hero Section */

section.hero-section {
  background-color: #091522;
  background-size: cover;
  background-position: center;
  color: #fff;
  display: flex;
  align-items: center;
  padding: 100px 120px 50px 200px;
  height: 100vh;
}

.hero-img {
  display: block; /* Ensures the image covers the area without distortion */
  transition: all 0.3s ease; /* Smooth transition for hover effect */
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3); /* Light shadow for the image */
  background: rgba(121, 110, 175, 0.5); /* Semi-transparent black background */
}

.hero-img:hover {
  transform: scale(1.05); 
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.5);
}

.hero-buttons .btn a {
  color: #fff;
  text-decoration: none;
}

.hero-section__title {
  font-size: 48px;
}

.hero-section__title span {
  color: var(--primary);
}

.hero-section__desc {
  color: #c4c4c4;
}

.hero-img img {
  margin-left: 30px;

}

.social-icons {
  margin: 18px 0;
}

ul.social-icons {
  list-style: none;
  display: flex;
}

.social-icons li {
  margin-right: 15px;
  border-radius: 50%;
  border: 1px solid var(--primary);
  padding: 8px 12px;
}

.social-icons li:hover {
  background-color: var(--primary);
  transition: all 0.3s ease 0s;
}

.social-icons li a {
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  transition: all 0.3s ease 0s;
}

.hero-buttons button {
  padding: 10px;
  padding-top: 10px;
  margin-right: 10px;
}

.hero-buttons button > a {
  text-decoration: none;
  color: #fff;
}

.image-box {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-box img {
  width: 450px;
  height: 500px;
  border-radius: 50px;
  object-fit: cover;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s ease;
  border: 3px solid #19589b;
}

/* buttons */
.btn {
  padding: 10px 20px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease 0s;
}

.btn.btn-primary {
  background-color: var(--primary);
  color: var(--dark-primary);
  font-weight: 600;
}

.btn.btn-primary:hover {
  background-color: var(--primary-hover);
  transition: all 0.3s ease 0s;
}

.btn-dark-outlined {
  background-color: #091d36;
  border: 5px solid var(--primary);
  color: var(--primary);
  border-radius: 5px;
  font-weight: 600;
}

.btn-dark-outlined:hover {
  cursor: pointer;
  background-color: var(--primary);
  color: #fff !important;
  transition: all 0.3s ease 0s;
}

@media (max-width: 1024px) {
  section.hero-section {
    flex-direction: column;
    padding: 80px 60px;
    text-align: center;
    height: auto;
  }

  .hero-section__title {
    font-size: 40px;
  }

  .hero-img img,
  .image-box img {
    width: 350px;
    height: 400px;
    margin-left: 0;
  }

  .social-icons {
    justify-content: center;
  }

  .hero-buttons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  section.hero-section {
    flex-direction: column;
    padding: 60px 30px;
    text-align: center;
    height: auto;
  }

  .hero-section__title {
    font-size: 32px;
  }

  .hero-section__desc {
    font-size: 16px;
  }

  .hero-img img,
  .image-box img {
    width: 250px;
    height: 300px;
  }

  .hero-buttons button {
    margin: 10px 5px;
    width: 100%;
  }

  .social-icons {
    justify-content: center;
  }

  .social-icons li {
    margin: 10px 8px;
    padding: 6px 10px;
  }
}

@media (max-width: 480px) {
  section.hero-section {
    padding: 40px 15px;
  }

  .hero-section__title {
    font-size: 24px;
  }

  .hero-section__desc {
    font-size: 14px;
  }

  .hero-img img,
  .image-box img {
    width: 200px;
    height: 250px;
  }

  .btn {
    padding: 8px 15px;
  }

  .social-icons li {
    margin: 8px 5px;
    padding: 5px 8px;
  }
}


/* About Section */
/*======================================================================= */
.about-section {
  background-color: #091527;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  min-height: 100vh;
  
  box-sizing: border-box;
}

.about-section .content {
  display: flex;
  gap: 40px;
  max-width: 1200px;
  width: 100%;
  align-items: center;
  text-align: left;
}

.about-section__box__img {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-section__box__img img {
  width: 350px;
  height: 500px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s ease;
  border: 3px solid #00bcd4;
}

.about-section__box__img img:hover {
  transform: scale(1.05);
}

.about-section-box {
  flex: 1;
  padding: 20px;
  border-radius: 20px;
  background: rgba(13, 27, 42, 0.7);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
  position: relative;
  backdrop-filter: blur(5px);
}

.about-section-box h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #1a6ae2;
  text-align: center;
  border-bottom: 3px solid #00bcd4;
  display: inline-block;
  padding-bottom: 10px;
}

.about-section-box blockquote {
  font-size: 1.3rem;
  font-style: italic;
  margin-bottom: 30px;
  border-left: 5px solid #00bcd4;
  padding-left: 20px;
  color: #dee2e6;
}

.about-section-box p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-top: 20px;
  color: #dee2e6;
}

.about-section-box a {
  color: #ff6b6b;
  text-decoration: none;
  transition: color 0.3s ease;
}

.about-section-box a:hover {
  color: #fca311;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .about-section .content {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .about-section__box__img img {
    width: 300px;
    height: 400px;
  }

  .about-section-box h2 {
    font-size: 2rem;
  }

  .about-section-box blockquote {
    font-size: 1.2rem;
  }

  .about-section-box p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 40px 15px;
  }

  .about-section .content {
    flex-direction: column;
    gap: 25px;
    text-align: center;
  }

  .about-section__box__img img {
    width: 250px;
    height: 250px;
  }

  .about-section-box {
    padding: 15px;
  }

  .about-section-box h2 {
    font-size: 1.8rem;
  }

  .about-section-box blockquote {
    font-size: 1.1rem;
    padding-left: 15px;
  }

  .about-section-box p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 30px 10px;
  }

  .about-section__box__img img {
    width: 200px;
    height: 200px;
  }

  .about-section-box h2 {
    font-size: 1.5rem;
  }

  .about-section-box blockquote {
    font-size: 1rem;
    padding-left: 10px;
  }

  .about-section-box p {
    font-size: 0.95rem;
  }
}


/* Projects Section */
.projects-section {
  background-color: #011128;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  text-align: center;
  height: 100vh;

}

.projects-section h2 {
  text-align: center;
  color: #1a6ae2;
  font-size: 3rem;
  text-indent: 0.3cm;
}


.projects {
  display: grid;
  grid-template-columns: repeat(3, 5fr);
  gap: 20px;
  margin-top: 30px;
}

h3 {
  text-align: center;
  color: #0a3f95;
  font-size: 2rem;
  text-indent: 0.3cm;
}

.projects-section h2 > span {
  color: #66a3ff;
}

.projects-section h3 > spn {
  color: var;
}

/* .projects-box {
  background: #091d36;
  border: 3px solid #4a90e2;
  border-radius: 15px;
  padding: 20px;
  background-image: url(https://i.pinimg.com/736x/35/b2/42/35b242854cac65e9637985ed7b5afba8.jpg) ;
  background-size: cover; 
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s;
} */

.projects-box-1 {
  background: #091d36;
  border: 3px solid #4a90e2;
  border-radius: 15px;
  padding: 20px;
  height: 40vh;
  width: 65vh;
  background-size: cover; 
  background-image: url(images/StudentTaskManager.png);
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s;
}

.projects-box-1 p {
  display: none;
} 
.projects-box-1:hover {
  transform: scale(1.05);
  background: #336dc4;
}

.projects-box-1:hover p {
  color: #ffffff;
  background-color: #336dc4;
  padding: 6px;
  border-radius: 6px;
  transition: 0.3s;
  display: block;
}

.projects-box-1 h3 {
  display: none;
}

.projects-box-1:hover h3 {
  color: #031846;
  background-color: #336dc4;
  padding: 6px;
  border-radius: 6px;
  transition: 0.3s;
  display: block;
}

.projects-box-1 h4 {
  display: none;
}

.projects-box-1:hover h4 {
  color: #234e92;
  background-color: #336dc4;
  padding: 6px;
  border-radius: 6px;
  transition: 0.3s;
  display: block;
}

.projects-box:hover {
  transform: scale(1.05);
  background: #336dc4;
}

/*projectbox2*/
.projects-box-2 {
  background: #091d36;
  border: 3px solid #4a90e2;
  border-radius: 15px;
  padding: 20px;
  height: 40vh;
  width: 65vh;
  background-size: cover; 
  background-image: url(images/SmartExpiryTracker_cover.png);
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s;
}

.projects-box-2 p {
  display: none;
} 
.projects-box-2:hover {
  transform: scale(1.05);
  background: #336dc4;
}

.projects-box-2:hover p {
  color: #ffffff;
  background-color: #336dc4;
  padding: 6px;
  border-radius: 6px;
  transition: 0.3s;
  display: block;
}

.projects-box-2 h3 {
  display: none;
}

.projects-box-2:hover h3 {
  color: #ffffff;
  background-color: #336dc4;
  padding: 6px;
  border-radius: 6px;
  transition: 0.3s;
  display: block;
}

.projects-box-2 h4 {
  display: none;
}

.projects-box-2:hover h4 {
  color: #234e92;
  background-color: #336dc4;
  padding: 6px;
  border-radius: 6px;
  transition: 0.3s;
  display: block;
}

/* projectsbox3 */

.projects-box-3 {
  background: #f8eade;
  border: 3px solid #4a90e2;
  border-radius: 15px;
  padding: 20px;
  height: 40vh;
  width: 65vh;
  background-size: 105%;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(images/CoffeeShop.png);
  align-items: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s;
}

.projects-box-3 p {
  display: none;
} 
.projects-box-3:hover {
  transform: scale(1.05);
  background: #336dc4;
}

.projects-box-3:hover p {
  color: #ffffff;
  background-color: #336dc4;
  padding: 6px;
  border-radius: 6px;
  transition: 0.3s;
  display: block;
}

.projects-box-3 h3 {
  display: none;
}

.projects-box-3:hover h3 {
  color: #ffffff;
  background-color: #336dc4;
  padding: 6px;
  border-radius: 6px;
  transition: 0.3s;
  display: block;
}

.projects-box-3 h4 {
  display: none;
}

.projects-box-3:hover h4 {
  color: #234e92;
  background-color: #336dc4;
  padding: 6px;
  border-radius: 6px;
  transition: 0.3s;
  display: block;
}

.projects-box h4 {
  margin-bottom: 15px;
  color: #333;
  font-size: 1.2rem;
}

.projects-box p {
  margin: 5px 0;
  line-height: 1.5;
  font-family: 'Cursive' ;
  font-size: large;
}

.projects-box a {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 12px;
  background: #4a90e2;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.projects-box a:hover {
  background: #3456d6;
}

/*Projects-box4*/
.projects-box-4 {
  background: #091d36;
  border: 3px solid #4a90e2;
  border-radius: 15px;
  padding: 20px;
  height: 40vh;
  width: 65vh;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(images/AmaraPortfoliolandingPage.png);
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s;
}

.projects-box-4 p {
  display: none;
} 
.projects-box-4:hover {
  transform: scale(1.05);
  background: #336dc4;
}

.projects-box-4:hover p {
  color: #ffffff;
  background-color: #336dc4;
  padding: 6px;
  border-radius: 6px;
  transition: 0.3s;
  display: block;
}

.projects-box-4 h3 {
  display: none;
}

.projects-box-4:hover h3 {
  color: #ffffff;
  background-color: #336dc4;
  padding: 6px;
  border-radius: 6px;
  transition: 0.3s;
  display: block;
}

.projects-box-4 h4 {
  display: none;
}

.projects-box-4:hover h4 {
  color: #234e92;
  background-color: #336dc4;
  padding: 6px;
  border-radius: 6px;
  transition: 0.3s;
  display: block;
}

/* Contact Section
.contact {
  background-color: #22282f;
  color: #fff;
  text-align: center;

}

.contact h2 {
  font-size: 28px;
  margin: 18px 0;
}

.contact h2 > span {
  color: var(--primary);
}

.contact form div > input, textarea {
  background-color: #c4c4c4;
  width: 300px;
  padding: 5px 8px;
  margin-bottom: 10px;
  border-radius: 5px;
  border: none;
  outline: none;
  resize: none;
  font-family: "Poppins", sans-serif;
}

.contact form div > input:focus,
textarea:focus {
  border: 1px solid var(--primary);
}

.contact form div > button {
  font-size: 14px;
}

.contact__github {
  margin-top: 15px;
}

.contact__github button {
  padding: 10px 44px;
  background-color: #171515;
  font-size: 14px;
}

.contact__github button > a {
  text-decoration: none;
  color: #fff;
}

.contact__github button > a > i {
  font-size: 16px;
}

.contact__github button:hover {
  background-color: #030303;
} */

.social-links img {
  width: 40px;
  height: 40px;
}

.btn-dark-outlined {
    border: 2px solid #17181c;
    color: #d8dee3;
    background: none;
    padding: 10px 20px;
    border-radius: 5px;
    /* cursor: pointer; */
    transition: background 0.3s;
}

.btn-dark-outlined:hover {
    background: #e7e8f4;
    color: #091522;
    border: 2px solid #1c51bb;
    color: #1967b5;
    background: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.projects-card-box__buttons {
  display: none;
}

/* Show on hover of the entire project card */
.projects-box-1:hover .projects-card-box__buttons {
  display: block; /* or flex, depending on layout */
}

.projects-box-2:hover .projects-card-box__buttons {
  display: block; /* or flex, depending on layout */
}

.projects-box-3:hover .projects-card-box__buttons {
  display: block; /* or flex, depending on layout */
}

.projects-box-4:hover .projects-card-box__buttons {
  display: block; /* or flex, depending on layout */
}

.services-box-:hover .projects-card-box__buttons {
  display: block; /* or flex, depending on layout */
}


.btn-dark-outlined a {
    color: inherit;
    text-decoration: none;
    font-weight: bold;
    color: #252c46;
}

.fa-external-link {
    margin-left: 5px;
}

/* Skills Section Styles */
.skills-container {
    background-color: #02152a;
    display: flex;
  
    flex-wrap: wrap;

    text-align: center;
    justify-content: space-between;
    height: 40vh;  
}
  
.skills-container h2 {
    width: 100%;
    text-align: center;
    font-size: 3rem;
    /* letter-spacing: 2px; */
    text-transform: uppercase;
    color: #1a6ae2;
    /* /* border-bottom: 3px solid #1a6ae2; */
    padding-bottom: 5px; 
    margin-top: 30px;

    /* box-sizing: content-box; */
}
  
.skills-box {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
}
  
.skills-card-box {
    width: 100%;
    background: #021c38;
    backface-visibility: visible;
    /* border: 1px solid #5b88dd; */
    border-radius: 15px;

    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 2px 4px 6px rgba(21, 146, 228, 0.6);
}
  
.skills-card-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.6);
}
  
.skills-card-box__desc h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: #ff6b6b;
}
  
.skills-card-box__desc img {
    border-radius: 10px;
    width: 65px;
    height: 65px;
    margin: 10px 0;
    background-position: center; 

}
  
.skills-section__img {
    display: flex-box;
    justify-content: spafice-around;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 10px;
}
  
.hero-section__img {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 10px;
}
  
.hero-section__img img {
    border-radius: 10px;
    margin: 5px;
    transition: transform 0.3s ease;
}
  
.hero-section__img img:hover {
    transform: scale(1.1);
}
  
.hero-section__img p {
    margin-top: 15px;
    font-size: 1rem;
    color: #dee2e6;
}
  
.skills-card-box__desc ul {
    list-style: none;
    padding: 0;
    text-align: left;
}
  
.skills-card-box__desc ul li {
    margin: 10px 0;
    padding-left: 15px;
    position: relative;
    font-size: 1rem;
    color: #dee2e6;
}
  
.skills-card-box__desc p {
    color: #dee2e6;
    margin: 10px 0;
}
  
/* Contact Section Styling */
.contact {
  background-color: #091522; /* Dark navy blue */
  color: #fff;
  text-align: center;
  padding: 50px 20px;
  max-width: 1600px;
  margin: 0 auto;
}

.contact h2 {
  font-size: 48px;
  margin-bottom: 20px;
  color: #1a6ae2; /* Light blue */
  text-transform: uppercase;
  font-weight: bold;
}

.contact-info p {
  font-size: 16px;
  margin: 10px 0;
  color: #ccc;
}

.contact a {
  color: #66a3ff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact a:hover {
  color: #fff;
}

.social-links {
  margin-top: 20px;
}

.social-links a {
  display: inline-block;
  margin: 8px 12px;
  padding: 10px 20px;
  border: 1px solid #66a3ff;
  border-radius: 5px;
  color: #66a3ff;
  transition: all 0.3s ease;
  font-size: 16px;
}

.social-links a:hover {
  background-color: #66a3ff;
  color: #091522;
  transform: scale(1.05);
}

.service {
  background-color: #031126;
  max-width: 1560px;
  height: 100vh; 
}
/* Service Section Styles */
.services{
  display: grid;
  grid-template-columns: repeat(3, 3fr);
  gap: 20px;
  padding: 10px;
  background-color: #010e23;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);

}

.service h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #1a6ae2;
  font-size: 3rem;
}

.services-box-1 {
  background: #091d36;
  border: 3px solid #4a90e2;
  border-radius: 15px;
  padding: 20px;
  height: 40vh;
  width: 65vh;
  background-size: cover; 
  background-image: url(images/WebApplicationDevelopment.jpg);
  align-items: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s;
}

.services-box-1 p {
  display: none;
} 
.services-box-1:hover {
  transform: scale(1.05);
  background: #336dc4;

}

.services-box-1:hover p {
  color: #ffffff;
  background-color: #336dc4;
  padding: 6px;
  border-radius: 6px;
  transition: 0.3s;
  display: block;
  text-align: center;
}

.services-box-1 h3 {
  display: none;
}

.services-box-1:hover h3 {
  color: #ffffff;
  background-color: #336dc4;
  padding: 6px;
  border-radius: 6px;
  transition: 0.3s;
  display: block;
}

.services-box-1 h4 {
  display: none;
}

.services-box-1:hover h4 {
  color: #234e92;
  background-color: #336dc4;
  padding: 6px;
  border-radius: 6px;
  transition: 0.3s;
  display: block;
}

.services-box-2 {
  background: #091d36;
  border: 3px solid #4a90e2;
  border-radius: 15px;
  padding: 20px;
  height: 40vh;
  width: 65vh;
  background-size: cover; 
  background-image: url(images/ICTCodingTutor.png);
  align-items: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s;
}

.services-box-2 p {
  display: none;
} 
.services-box-2:hover {
  transform: scale(1.05);
  background: #336dc4;

}

.services-box-2:hover p {
  color: #ffffff;
  background-color: #336dc4;
  padding: 6px;
  border-radius: 6px;
  transition: 0.3s;
  display: block;
  text-align: center;
}

.services-box-2 h3 {
  display: none;
}

.services-box-2:hover h3 {
  color: #ffffff;
  background-color: #336dc4;
  padding: 6px;
  border-radius: 6px;
  transition: 0.3s;
  display: block;
}

.services-box-2 h4 {
  display: none;
}

.services-box-2:hover h4 {
  color: #234e92;
  background-color: #336dc4;
  padding: 6px;
  border-radius: 6px;
  transition: 0.3s;
  display: block;
}

/* services-box-3 */
.services-box-3 {
  background: #091d36;
  border: 3px solid #4a90e2;
  border-radius: 15px;
  padding: 20px;
  height: 40vh;
  width: 65vh;
  background-size: cover; 
  background-image: url(images/StrongUI\ &\ UX\ Design.jpg);
  align-items: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s;
}

.services-box-3 p {
  display: none;
} 
.services-box-3:hover {
  transform: scale(1.05);
  background: #336dc4;

}

.services-box-3:hover p {
  color: #ffffff;
  background-color: #336dc4;
  padding: 6px;
  border-radius: 6px;
  transition: 0.3s;
  display: block;
  text-align: center;
}

.services-box-3 h3 {
  display: none;
}

.services-box-3:hover h3 {
  color: #ffffff;
  background-color: #336dc4;
  padding: 6px;
  border-radius: 6px;
  transition: 0.3s;
  display: block;
}

.services-box-3 h4 {
  display: none;
}

.services-box-3:hover h4 {
  color: #234e92;
  background-color: #336dc4;
  padding: 6px;
  border-radius: 6px;
  transition: 0.3s;
  display: block;
}

.services-box-4 {
  background: #091d36;
  border: 3px solid #4a90e2;
  border-radius: 15px;
  padding: 20px;
  height: 40vh;
  width: 65vh;
  background-size: cover; 
  background-image: url(images/ContentWriting.jpg);
  align-items: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s;
}

.services-box-4 p {
  display: none;
} 
.services-box-4:hover {
  transform: scale(1.05);
  background: #336dc4;

}

.services-box-4:hover p {
  color: #ffffff;
  background-color: #336dc4;
  padding: 6px;
  border-radius: 6px;
  transition: 0.3s;
  display: block;
  text-align: center;
}

.services-box-4 h3 {
  display: none;
}

.services-box-4:hover h3 {
  color: #ffffff;
  background-color: #336dc4;
  padding: 6px;
  border-radius: 6px;
  transition: 0.3s;
  display: block;
}

.services-box-4 h4 {
  display: none;
}

.services-box-4:hover h4 {
  color: #234e92;
  background-color: #336dc4;
  padding: 6px;
  border-radius: 6px;
  transition: 0.3s;
  display: block;
}

.services-box-5 {
  background: #091d36;
  border: 3px solid #4a90e2;
  border-radius: 15px;
  padding: 20px;
  height: 40vh;
  width: 65vh;
  background-size: cover; 
  background-image: url(images/StrongUI\ &\ UX\ Design.jpg);
  align-items: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s;
}

.services-box-5 p {
  display: none;
} 
.services-box-5:hover {
  transform: scale(1.05);
  background: #336dc4;

}

.services-box-5:hover p {
  color: #ffffff;
  background-color: #336dc4;
  padding: 6px;
  border-radius: 6px;
  transition: 0.3s;
  display: block;
  text-align: center;
}

.services-box-5 h3 {
  display: none;
}

.services-box-5:hover h3 {
  color: #ffffff;
  background-color: #336dc4;
  padding: 6px;
  border-radius: 6px;
  transition: 0.3s;
  display: block;
}

.services-box-5 h4 {
  display: none;
}

.services-box-5:hover h4 {
  color: #234e92;
  background-color: #336dc4;
  padding: 6px;
  border-radius: 6px;
  transition: 0.3s;
  display: block;
}

/* Tablets */
@media (max-width: 1024px) {
  .service h2 {
    font-size: 2.5rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .service h2 {
    font-size: 2rem;
  }
  .services {
    grid-template-columns: 1fr;
  }
  .services-box-1,
  .services-box-2,
  .services-box-3,
  .services-box-4,
  .services-box-5 {
    height: 30vh;
    width: 50vh;
  }
}

/* Footer Styling */
.footer {
  background-color: #182a3e; /* Navy blue background */
  color: #fff; /* White text */
  text-align: center;
}

/* Paragraph Styling */
.footer p {
  font-size: 18px;
  color: #ccc; /* Lighter gray text for contact info */
 
}

/* Social Links Container */
.social-links {
  margin: 20px 0;
}

/* Social Links Styling */
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin: 10px;
  color: #66a3ff;
  text-decoration: none;
}

/* Social Media Icons */
.social-icon {
  width: 30px;
  height: 30px;
  margin-left: 10px;
  transition: transform 0.3s ease;
}

/* Icon Hover Effect */
.social-links a:hover .social-icon {
  transform: scale(1.2); /* Slight zoom effect on icon hover */
}

/* Footer Text Styling */

/* Responsive Design */
@media (max-width: 768px) {
  footer {
      padding: 20px;
  }

  footer p {
      font-size: 16px;
  }
} 


/* Apply to body for fade effect when navigating */
body {
  animation: fadeIn 1s ease-in;
}

/* Fade-out effect when leaving the page */
body.fade-out {
  animation: fadeOut 1s ease-out;
}

/* Define animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}

@keyframes slideIn {
  from { transform: translateX(-100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

body {
  animation: slideIn 1s ease-out;
}
