


/* start of */
#software-engineer-title {
  text-align: center;
  margin: 0 auto;
  font-size: 4em;
  color: #b42121;
  padding: 10px 0;
}

.title-content{
  text-align: center;
  font-size: 2.5em;
  color: #333;
  margin: 0;
  padding: 0;
  /* Optional styling */
  font-weight: 600;
  letter-spacing: 1px;
}

#gemini-symbol {
  text-align: center;
  margin: 0 auto;
  font-size: 1.2em;
  color: #421a1a;
  padding: 5px 0;
}

/*end of */
.card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto;
    width: 80%;
  }
  
  .box.style2 {
    background-color: var(--card-bg, #fff); 
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
  }
  
  .box.style2:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  }
  
  .box.style2 img {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    margin-bottom: 10px;
  }
  
  .box.style2 h3 {
    margin-bottom: 5px;
    font-size: 18px;
  }
  
  /* Remove paragraph styling from card */
  .box.style2 p {
    display: none; 
  }
  
  .button-group {
    display: flex;
    justify-content: space-between;
  }
  
  .button-group a {
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 3px;
    text-decoration: none;
    font-size: 14px;
  }
  
  .button-group a:hover {
    background-color: #222;
  }
  
  /* Modal Styles */
  .modal-overlay {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(160, 58, 58, 0.5);
    z-index: 1000;
  }
  
  .modal-content {
    background-color: var(--modal-bg, #fff); 
    padding: 30px;
    border-radius: 15px;
    max-width: 450px;
    width: 90%;
    position: relative;
    color: var(--text-color, #fff); 
  }
  
  .modal-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
  }
  
  .modal-header h2 {
    margin-left: 10px; 
  }
  
  .modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 14px;
    background: none;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
  }
  /*  start of css*/
  .Orogare-Technical {
    font-size: 1.2rem; /* Adjust font size as needed */
    color: #fff; /* Adjust text color as needed */
    margin-bottom: 5px; /* Add some space below the heading */
  }
  .box.style2 {
    background-color: #f13a3a; /* Light Gray background */
  }
  
  .fa-graduation-cap {
    color: #fff; /* Primary color (orange) */
   /* background-color: #FFF0E0;*/ /* Light orange background */
   /* border-radius: 50%; */
    padding: 5px;
    font-size: 50px;
  }
  

/*-----*/
/*Styling below helps hide the link button*/
  a {
    text-decoration: none;
    color: inherit;
  }
/*style to accordion questions*/

.question-style {
    font-size: 1.2rem; /* Adjust font size as needed */
    color: white; 
    
  }
 /* cs */
 .fa-solid.fa-bag-shopping {
    color: #000000; /* Blue color */
    font-size: 50px; /* Adjust size as needed */
    margin-right: 5px;
    margin-bottom: 15px; /* Add some spacing if needed */
  }

  .fa-solid.fa-children {
    color: #800000; /* Green color */
    font-size: 50px; /* Adjust size as needed */
    margin-right: 5px;
    margin-bottom: 15px; /* Add some spacing if needed */
  }
  /* end of css*/

 /* Container styles */

/* Accordion styles */
/* Container for the accordion */


/* Accordion styling */
.accordion {
    width: 90%; /* Better default width */
    max-width: 800px; /* Maximum width for very large screens */
    background-color: #c6c67f;
    padding: 30px;
    border-radius: 30px;
    margin: 50px auto;
    transition: all 1s ease-out;
    
}

/* Media Queries for different screen sizes */
@media screen and (max-width: 1200px) {
    .accordion {
        width: 95%;
    }
}

@media screen and (max-width: 768px) {
    .accordion {
        width: 100%;
        padding: 20px;
        border-radius: 20px;
    }
}

@media screen and (max-width: 480px) {
    .container {
        padding: 10px;
    }
    
    .accordion {
        margin: 20px auto;
    }
}





/* Title styles */
.accordion-title h2 {
    margin-bottom: 30px;
    text-align: center;
    color: #800000;
    font-size: 32px;
    font-weight: bold;
}

/* Item styles */
.accordion-item {
    border-bottom: 1.05px solid #7f1616;
    margin-bottom: 10px; /* Space between items */
}

/* Question styles */
.question {
    padding: 18px 40px 18px 30px;
    cursor: pointer;
    position: relative;
}

.question h3 {
    color: white;
    font-size: 22px;
    margin: 0; /* Remove default margin */
    padding-right: 30px; /* Space for plus sign */
}

.question::after {
    content: '+';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    font-weight: bold;
    color: #333;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    border-radius: 50%;
    background-color: white; /* Add background to make plus sign more visible */
}

.accordion-item.active .question::after {
    content: '−';
}

/* Answer styles */
.answer {
    padding: 0 40px 0 30px;
    height: 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    box-sizing: border-box;
}

.answer p {
    font-size: 20px;
    line-height: 1.5;
    color: #140606;
    margin: 0;
    padding: 15px 0;
}

.accordion-item.active .answer {
    height: auto;
    padding-bottom: 15px;
}

/* Media Queries */
@media screen and (max-width: 600px) {
    .container {
        padding: 10px;
    }

    .accordion {
        width: 100%;
        padding: 20px;
        border-radius: 20px;
    }

    .accordion-title h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .question {
        padding: 15px 35px 15px 15px;
    }

    .question h3 {
        font-size: 18px;
    }

    .question::after {
        right: 5px;
        font-size: 18px;
        width: 20px;
        height: 20px;
        line-height: 20px;
    }

    .answer {
        padding: 0 35px 0 15px;
    }

    .answer p {
        font-size: 16px;
        padding: 10px 0;
    }
}

/*Styling for button below*?

/* Container for the button */
/*.cv-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    margin: 20px 0;
}

.button-cv {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background: linear-gradient(135deg, #e66013, #ebff32);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
    position: relative;
    overflow: hidden;
}

.button-cv::before {
    content: "⭳";  
    
    font-size: 20px;
    transition: transform 0.3s ease;
}


.button-cv:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.4);
    background: linear-gradient(135deg, #e5421e, #c01540);
}

.button-cv:hover::before {
    transform: scale(1.1);
}


.button-cv:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(33, 150, 243, 0.3);
}


@keyframes buttonFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cv-container {
    animation: buttonFadeIn 0.8s ease forwards;
}


@media (max-width: 768px) {
    .button-cv {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* css to size image *?
/* Main wrapper styles */
/*
.wrapper.style1 {
    padding: 40px 0 80px;  
    background: #f5f5f5;
    min-height: 90vh;  
    display: flex;
    align-items: flex-start;  
    margin-top: 20px; 
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;  
}
*

/* Row layout---------------- */
.row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;  
    gap: 60px;  
    margin-top: 20px;
}

/* Image column */
.image-column {
    flex: 0 0 300px;  
    margin-left: 40px;  
}

/* Image styling */
.image.fit {
    width: 300px;
    height: 300px;
    overflow: hidden;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 0;  /
}

.image.fit img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.image.fit:hover img {
    transform: scale(1.05);
}

/* Content column */
.content-column {
    flex: 1;  /* Take remaining space */
    max-width: 700px;  /* Limit content width for readability */
}

/* Text content styling */
h1 {
    font-size: 3.5em;
    margin-bottom: 0.5em;
    opacity: 0;
    transform: translateY(20px);
    line-height: 1.2;
}

h1 strong {
    color: #800000;
}

#software-engineer-title {
    font-size: 2em;
    margin-bottom: 0.3em;
    color: #333;
}

#gemini-symbol {
    font-size: 1.2em;
    margin-bottom: 1em;
    color: #a32121;
}

/*  Start of Social media footer icons*/
/* Center the .col-12 element horizontally */
.col-12 {
  margin: 0 auto;
  text-align: center;
}

/* Footer styles for responsiveness */
footer {
  text-align: center; /* Center footer content horizontally */
}

/* Responsive adjustments for social links (optional) */
ul.social li {
  display: inline-block; /* Allow social links to wrap on smaller screens */
  margin: 0.5rem; /* Adjust spacing between links as needed */
}

ul.social li a:before {
  -moz-transition: background-color 0.2s ease-in-out;
  -webkit-transition: background-color 0.2s ease-in-out;
  -ms-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out;
  display: block;
  font-size: 26px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  outline: 0;
  overflow: hidden;
  width: 48px;
}
  
  /* Specific styling for WhatsApp icon */
  ul.social li a.fa-whatsapp {
    background-color: #25D366; 
  }
  
  /* Specific styling for LinkedIn icon */
  ul.social li a.fa-linkedin-in {
    background-color: #0077B5; 
  }
  ul.social li a.fa-reddit{
  }
  ul.social li a.fa-brands fa-x-twitter{
    background-color: #ffff; 
  }



  
  ul.social li a:hover {
    top: -5px;
  }
  
  ul.social li a:hover:before {
    background-color: transparent;
  }
/*End Social ooter Icons */




  